-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWpfTest.csproj
More file actions
29 lines (24 loc) · 938 Bytes
/
WpfTest.csproj
File metadata and controls
29 lines (24 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FontAwesome5" Version="2.1.11" />
<PackageReference Include="MathCore.Hosting.WPF" Version="1.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.1" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="OxyPlot.Contrib.Wpf" Version="2.1.2" />
<PackageReference Include="OxyPlot.Wpf" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MathCore.DSP\MathCore.DSP.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>