-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathntfy.nuspec
51 lines (50 loc) · 2.62 KB
/
ntfy.nuspec
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
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>ntfy</id>
<title>ntfy</title>
<description>A .NET package for interacting with a ntfy instance</description>
<version>0.5.0</version>
<authors>Nate Harris</authors>
<owners>nwithan8</owners>
<projectUrl>https://github.com/nwithan8/ntfy-dotnet</projectUrl>
<license type="expression">GPL-3.0-or-later</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>ntfy notifications push</tags>
<readme>docs\README.md</readme>
<releaseNotes>See Release Notes at https://github.com/nwithan8/ntfy-dotnet/releases</releaseNotes>
<dependencies>
<group targetFramework="netcoreapp3.1">
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="6.0.0"/>
<dependency id="RestSharp.Serializers.NewtonsoftJson" version="110.2.0"/>
<dependency id="N8.NetTools.Crypto" version="0.2.0"/>
</group>
<group targetFramework="net5.0">
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="6.0.0"/>
<dependency id="RestSharp.Serializers.NewtonsoftJson" version="110.2.0"/>
<dependency id="N8.NetTools.Crypto" version="0.2.0"/>
</group>
<group targetFramework="net6.0">
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="6.0.0"/>
<dependency id="RestSharp.Serializers.NewtonsoftJson" version="110.2.0"/>
<dependency id="N8.NetTools.Crypto" version="0.2.0"/>
</group>
<group targetFramework="net7.0">
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="6.0.0"/>
<dependency id="RestSharp.Serializers.NewtonsoftJson" version="110.2.0"/>
<dependency id="N8.NetTools.Crypto" version="0.2.0"/>
</group>
</dependencies>
</metadata>
<files>
<file src="lib\net\netcoreapp3.1\ntfy.dll" target="lib\netcoreapp3.1"/>
<file src="lib\net\netcoreapp3.1\ntfy.XML" target="lib\netcoreapp3.1"/>
<file src="lib\net\net5.0\ntfy.dll" target="lib\net5.0"/>
<file src="lib\net\net5.0\ntfy.XML" target="lib\net5.0"/>
<file src="lib\net\net6.0\ntfy.dll" target="lib\net6.0"/>
<file src="lib\net\net6.0\ntfy.XML" target="lib\net6.0"/>
<file src="lib\net\net7.0\ntfy.dll" target="lib\net7.0"/>
<file src="lib\net\net7.0\ntfy.XML" target="lib\net7.0"/>
<file src="README.md" target="docs\"/>
</files>
</package>