Dynamicloadsimulationdevice.csproj 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  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. <AvaloniaUseCompiledBindingsByDefault>false</AvaloniaUseCompiledBindingsByDefault>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)'=='Debug'">
  11. <DefineConstants>$(DefineConstants);ENABLE_XAML_HOT_RELOAD;NO_DEVICE</DefineConstants>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Condition="'$(Configuration)'=='Debug'" Include="HotAvalonia" Version="2.1.0" />
  15. <PackageReference Condition="'$(Configuration)'=='Debug'" Include="HotAvalonia.Extensions" Version="2.1.0" />
  16. <PackageReference Include="Avalonia" Version="11.2.5" />
  17. <PackageReference Include="Avalonia.Desktop" Version="11.2.5" />
  18. <PackageReference Include="Avalonia.Markup.Xaml.Loader" Version="11.2.5" />
  19. <PackageReference Include="Avalonia.Themes.Simple" Version="11.2.5" />
  20. <PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.5" />
  21. <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
  22. <PackageReference Condition="'$(Configuration)'=='Debug'" Include="Avalonia.Diagnostics" Version="11.2.5" />
  23. <PackageReference Include="System.Xml.XDocument" Version="4.3.0" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\..\Avalonia\IconResource\IconResource.csproj" />
  27. <ProjectReference Include="..\..\Calc\SIMDFxpConvert\SIMDFxpConvert.csproj" />
  28. <ProjectReference Include="..\IViewModel\IViewModel.csproj" />
  29. <ProjectReference Include="..\OilSourceControl\IOilSourceControl\IOilSourceControl.csproj" />
  30. <ProjectReference Include="..\OxyPlot\OxyPlot.Avalonia\OxyPlot.Avalonia.csproj" />
  31. </ItemGroup>
  32. </Project>