AvaloniaApplication1.Desktop.csproj 760 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
  5. One for Windows with net7.0-windows TFM, one for MacOS with net7.0-macos and one with net7.0 TFM for Linux.-->
  6. <TargetFramework>net7.0</TargetFramework>
  7. <Nullable>enable</Nullable>
  8. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  9. <ApplicationManifest>app.manifest</ApplicationManifest>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Avalonia.Desktop" Version="$(AvaloniaVersion)" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\AvaloniaApplication1\AvaloniaApplication1.csproj" />
  16. </ItemGroup>
  17. </Project>