12345678910111213141516171819 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <Configurations>Debug;Release;Electron;Minimal</Configurations>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Minimal|AnyCPU'">
- <DefineConstants>TRACE;MACOSX</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Accord.Statistics" Version="3.8.0" />
- <PackageReference Include="Microsoft.ML" Version="0.10.0" />
- <PackageReference Include="NLog" Version="4.5.11" />
- <PackageReference Include="System.Data.SQLite" Version="1.0.109.2" />
- </ItemGroup>
- </Project>
|