19 lines
520 B
XML
19 lines
520 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>WinExe</OutputType>
|
|||
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
|
<PlatformTarget>x64</PlatformTarget>
|
|||
|
|
<Platforms>x64</Platforms>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<UseWPF>true</UseWPF>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
|
|||
|
|
<PackageReference Include="ScottPlot.WPF" Version="5.1.58" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|