2026-08-08 10:46:25 +00:00
|
|
|
<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>
|
2026-08-09 12:04:30 +00:00
|
|
|
<Version>0.3.0</Version>
|
|
|
|
|
<AssemblyVersion>0.3.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>0.3.0</FileVersion>
|
2026-08-08 10:46:25 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="NAudio" Version="2.2.1" />
|
|
|
|
|
<PackageReference Include="FftSharp" Version="2.1.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|