ShakerApp.csproj 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
  8. <ApplicationManifest>app.manifest</ApplicationManifest>
  9. <AvaloniaUseCompiledBindingsByDefault>False</AvaloniaUseCompiledBindingsByDefault>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <DefineConstants>$(DefineConstants);ENABLE_XAML_HOT_RELOAD</DefineConstants>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <AvaloniaResource Include="Assets\**" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <AvaloniaXaml Include="Styles\ResourceDictionary.axaml">
  19. <SubType>Designer</SubType>
  20. </AvaloniaXaml>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="Avalonia.Desktop" Version="11.2.3" />
  24. <PackageReference Include="Avalonia.Markup.Xaml.Loader" Version="11.2.3" />
  25. <PackageReference Include="Avalonia.Themes.Simple" Version="11.2.3" />
  26. <PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
  27. <PackageReference Include="Avalonia.Diagnostics" Version="11.2.3">
  28. <IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
  29. <PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
  30. </PackageReference>
  31. <PackageReference Condition="'$(Configuration)'=='Debug'" Include="HotAvalonia" Version="2.1.0" />
  32. <PackageReference Condition="'$(Configuration)'=='Debug'" Include="HotAvalonia.Extensions" Version="2.1.0" />
  33. <PackageReference Include="MessagePack" Version="3.1.3" />
  34. <PackageReference Include="System.ServiceModel.Primitives" Version="8.1.1" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <ProjectReference Include="..\..\Calc\SIMDFxpConvert\SIMDFxpConvert.csproj" />
  38. <ProjectReference Include="..\..\Communication\ICommunication\ICommunication.csproj" />
  39. <ProjectReference Include="..\..\EventBroker\EventBroker\EventBroker.csproj" />
  40. <ProjectReference Include="..\..\Language\ILanguage\ILanguage.csproj" />
  41. <ProjectReference Include="..\..\OxyPlot\OxyPlot.Avalonia\OxyPlot.Avalonia.csproj" />
  42. <ProjectReference Include="..\..\Shaker.Model\Shaker.Models.csproj" />
  43. <ProjectReference Include="..\Avalonia.Xaml.Behaviors\Avalonia.Xaml.Behaviors.csproj" />
  44. <ProjectReference Include="..\SukiUI\SukiUI.csproj" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Update="Views\DataReview\LoadTestDataView.axaml.cs">
  48. <DependentUpon>LoadTestDataView.axaml</DependentUpon>
  49. </Compile>
  50. <Compile Update="Views\DataReview\RandomDataReviewView.axaml.cs">
  51. <DependentUpon>RandomDataReviewView.axaml</DependentUpon>
  52. </Compile>
  53. </ItemGroup>
  54. <Import Project="..\..\TDMS\TDMS.projitems" Label="Shared" />
  55. </Project>