1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <Nullable>enable</Nullable>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <AvaloniaUseCompiledBindingsByDefault>False</AvaloniaUseCompiledBindingsByDefault>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>$(DefineConstants);ENABLE_XAML_HOT_RELOAD</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <AvaloniaResource Include="Assets\**" />
- </ItemGroup>
- <ItemGroup>
- <AvaloniaXaml Include="Styles\ResourceDictionary.axaml">
- <SubType>Designer</SubType>
- </AvaloniaXaml>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Avalonia.Desktop" Version="11.2.3" />
- <PackageReference Include="Avalonia.Markup.Xaml.Loader" Version="11.2.3" />
- <PackageReference Include="Avalonia.Themes.Simple" Version="11.2.3" />
- <PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
- <PackageReference Include="Avalonia.Diagnostics" Version="11.2.3">
- <IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
- <PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
- </PackageReference>
- <PackageReference Condition="'$(Configuration)'=='Debug'" Include="HotAvalonia" Version="2.1.0" />
- <PackageReference Condition="'$(Configuration)'=='Debug'" Include="HotAvalonia.Extensions" Version="2.1.0" />
- <PackageReference Include="MessagePack" Version="3.1.3" />
- <PackageReference Include="System.ServiceModel.Primitives" Version="8.1.1" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Calc\SIMDFxpConvert\SIMDFxpConvert.csproj" />
- <ProjectReference Include="..\..\Communication\ICommunication\ICommunication.csproj" />
- <ProjectReference Include="..\..\EventBroker\EventBroker\EventBroker.csproj" />
- <ProjectReference Include="..\..\Language\ILanguage\ILanguage.csproj" />
- <ProjectReference Include="..\..\OxyPlot\OxyPlot.Avalonia\OxyPlot.Avalonia.csproj" />
- <ProjectReference Include="..\..\Shaker.Model\Shaker.Models.csproj" />
- <ProjectReference Include="..\Avalonia.Xaml.Behaviors\Avalonia.Xaml.Behaviors.csproj" />
- <ProjectReference Include="..\SukiUI\SukiUI.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="Views\DataReview\LoadTestDataView.axaml.cs">
- <DependentUpon>LoadTestDataView.axaml</DependentUpon>
- </Compile>
- <Compile Update="Views\DataReview\RandomDataReviewView.axaml.cs">
- <DependentUpon>RandomDataReviewView.axaml</DependentUpon>
- </Compile>
- </ItemGroup>
- <Import Project="..\..\TDMS\TDMS.projitems" Label="Shared" />
- </Project>
|