mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
27 lines
563 B
XML
27 lines
563 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Fuzzy\FuzzyRule.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Processing\" />
|
|
<Folder Include="Signals\Modulation\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Fuzzy\FuzzyRule.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Esiur\Esiur.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|