VoiDPlugins/ExperimentalASFilter/ExperimentalASFilter.csproj
X9VoiD ec881bd0c5
Add ExpASFilter
It uses ML techniques to process tablet input and achieve three objectives depending on configuration: smoothing, latency compensation, and noise reduction.
2020-07-23 06:27:17 +08:00

18 lines
555 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1; net5.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MathNet.Numerics" Version="4.11.0" />
<PackageReference Include="TabletDriverPlugin" Version="0.3.0" />
</ItemGroup>
</Project>