AML.APP.csproj 394 B

123456789101112131415
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <InvariantGlobalization>true</InvariantGlobalization>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Microsoft.ML" Version="3.0.1" />
  11. </ItemGroup>
  12. </Project>