SafeAreaDemo.Desktop.csproj 1.1 KB

123456789101112131415161718192021222324
  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. </PropertyGroup>
  10. <PropertyGroup>
  11. <ApplicationManifest>app.manifest</ApplicationManifest>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
  15. <ProjectReference Include="..\..\src\Avalonia.Headless.Vnc\Avalonia.Headless.Vnc.csproj" />
  16. <ProjectReference Include="..\..\src\Linux\Avalonia.LinuxFramebuffer\Avalonia.LinuxFramebuffer.csproj" />
  17. <ProjectReference Include="..\..\src\Avalonia.X11\Avalonia.X11.csproj" />
  18. <ProjectReference Include="..\SafeAreaDemo\SafeAreaDemo.csproj" />
  19. </ItemGroup>
  20. <Import Project="..\..\build\SampleApp.props" />
  21. <Import Project="..\..\build\ReferenceCoreLibraries.props" />
  22. </Project>