Skip to content

Commit e032394

Browse files
committed
Adding nuget spec.
1 parent 02324da commit e032394

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

build.bat

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
dotnet clean
12
dotnet restore
2-
dotnet build
3+
dotnet build -c Release
4+
nuget pack philter-sdk-net.csproj -Prop Configuration=Release

icon.png images/icon.png

File renamed without changes.

philter-sdk-net.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
<RootNamespace>Philter</RootNamespace>
66
</PropertyGroup>
77

philter-sdk-net.nuspec

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package >
3+
<metadata>
4+
<id>philter-sdk-net</id>
5+
<version>1.0.0</version>
6+
<title>Philter .NET SDK</title>
7+
<authors>Mountain Fog, Inc.</authors>
8+
<owners>Mountain Fog, Inc.</owners>
9+
<projectUrl>https://github.com/mtnfog/philter-sdk-net</projectUrl>
10+
<iconUrl>https://github.com/mtnfog/philter-sdk-net/raw/master/images/icon.png</iconUrl>
11+
<icon>images\icon.png</icon>
12+
<description>The Philter SDK for .NET enables .NET developers to easily work with Philter. Philter identifies and manipulates sensitive information like Protected Health Information (PHI) and personally identifiable information (PII) from natural language text.</description>
13+
<releaseNotes>Initial release.</releaseNotes>
14+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
15+
<license type="expression">Apache-2.0</license>
16+
<copyright>Copyright 2020 Mountain Fog, Inc.</copyright>
17+
<tags>philter pii phi filtering</tags>
18+
<dependencies>
19+
<group targetFramework="netstandard2.1">
20+
<dependency id="Newtonsoft.Json" version="12.0.3" />
21+
<dependency id="RestSharp" version="106.10.1" />
22+
</group>
23+
</dependencies>
24+
</metadata>
25+
<files>
26+
<file src="images\icon.png" target="images\" />
27+
</files>
28+
</package>

0 commit comments

Comments
 (0)