22 lines
712 B
XML
22 lines
712 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
|
||
|
|
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<UseWindowsForms>true</UseWindowsForms>
|
||
|
|
<LangVersion>latest</LangVersion>
|
||
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||
|
|
<AssemblyName>Substation</AssemblyName>
|
||
|
|
<RootNamespace>Substation</RootNamespace>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="NAudio" Version="2.2.1" />
|
||
|
|
<PackageReference Include="FftSharp" Version="2.1.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|