-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathML.NET.Classification.Metrics.csproj
More file actions
40 lines (33 loc) · 1.32 KB
/
ML.NET.Classification.Metrics.csproj
File metadata and controls
40 lines (33 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- NuGet package identity -->
<PackageId>ML.NET.Classification.Metrics</PackageId>
<Title>ML.NET Classification Metrics (ROC/AUC)</Title>
<PackageTags>mlnet;metrics;roc;auc;classification</PackageTags>
<Version>0.1.1</Version>
<Authors>Bgajski</Authors>
<Description>Unofficial ROC curve generation and AUC calculation extension for ML.NET.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Bgajski/ML.NET.Classifier</RepositoryUrl>
<!-- Produce .nupkg on build -->
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<!-- Recommended -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<!-- Pack the native DLL into the NuGet -->
<ItemGroup>
<None Include="runtimes\win-x64\native\coremetrics.dll"
Pack="true"
PackagePath="runtimes/win-x64/native/" />
</ItemGroup>
<!-- Pack README + LICENSE into the NuGet -->
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE.txt" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>