Dynamicloadsimulationdevice.csproj 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  7. <ApplicationManifest>app.manifest</ApplicationManifest>
  8. <HotAvaloniaAutoEnable>true</HotAvaloniaAutoEnable>
  9. <AvaloniaUseCompiledBindingsByDefault>false</AvaloniaUseCompiledBindingsByDefault>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)'=='Debug'">
  12. <DefineConstants>$(DefineConstants);ENABLE_XAML_HOT_RELOAD;NO_DEVICE</DefineConstants>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Avalonia.Desktop" Version="11.2.7" />
  16. <PackageReference Include="Avalonia.Markup.Xaml.Loader" Version="11.2.7" />
  17. <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.7" />
  18. <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
  19. <PackageReference Condition="'$(Configuration)'=='Debug'" Include="Avalonia.Diagnostics" Version="11.2.7" />
  20. <PackageReference Include="System.Xml.XDocument" Version="4.3.0" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\..\Avalonia\IconResource\IconResource.csproj" />
  24. <ProjectReference Include="..\..\Calc\SIMDFxpConvert\SIMDFxpConvert.csproj" />
  25. <ProjectReference Include="..\IViewModel\IViewModel.csproj" />
  26. <ProjectReference Include="..\OilSourceControl\IOilSourceControl\IOilSourceControl.csproj" />
  27. <ProjectReference Include="..\OxyPlot\OxyPlot.Avalonia\OxyPlot.Avalonia.csproj" />
  28. </ItemGroup>
  29. </Project>