forked from Clancey/SimpleAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleAuth.nuspec
More file actions
42 lines (42 loc) · 2.72 KB
/
Copy pathSimpleAuth.nuspec
File metadata and controls
42 lines (42 loc) · 2.72 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
41
42
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Clancey.SimpleAuth</id>
<version>1.0.48</version>
<authors>Clancey</authors>
<licenseUrl>https://github.com/Clancey/SimpleAuth/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/clancey/SimpleAuth</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>The Simplest OAuth client for Xamarin and UWP</description>
<summary>Every API needs authentication, yet no developer wants to deal with authentication. Simple Auth embeds authentication into the API so you dont need to deal with it.</summary>
<releaseNotes>Added Fitbit API, Fixed a signing bug with Twitter.</releaseNotes>
<copyright>James Clancey</copyright>
<dependencies>
<group>
<dependency id="Newtonsoft.Json" version="10.0.3" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="NETStandard.Library" version="2.0.0" />
<dependency id="Xam.Plugins.Settings" version="3.0.1"/>
</group>
<group targetFramework="net45">
<dependency id="Xam.Plugins.Settings" version="3.0.1"/>
</group>
</dependencies>
</metadata>
<files>
<file src="src\SimpleAuth.Droid\bin\Debug\SimpleAuth.dll" target="lib\MonoAndroid\SimpleAuth.dll" />
<file src="src\SimpleAuth.Droid\bin\Debug\SimpleAuth.pdb" target="lib\MonoAndroid\SimpleAuth.pdb" />
<file src="src\SimpleAuth.Net45\bin\Debug\SimpleAuth.dll" target="lib\net45\SimpleAuth.dll" />
<file src="src\SimpleAuth.Net45\bin\Debug\SimpleAuth.pdb" target="lib\net45\SimpleAuth.pdb" />
<file src="src\SimpleAuth.Portable\bin\Debug\SimpleAuth.dll" target="lib\Portable-Net45+WinRT45+WP8+WPA81\SimpleAuth.dll" />
<file src="src\SimpleAuth.Net\bin\Debug\netstandard2.0\SimpleAuth.dll" target="lib\netstandard2.0\SimpleAuth.dll" />
<file src="src\SimpleAuth.Net\bin\Debug\netstandard2.0\SimpleAuth.pdb" target="lib\netstandard2.0\SimpleAuth.pdb" />
<file src="src\SimpleAuth.iOS\bin\iPhone\Debug\SimpleAuth.dll" target="lib\Xamarin.iOS10\SimpleAuth.dll" />
<file src="src\SimpleAuth.iOS\bin\iPhone\Debug\SimpleAuth.pdb" target="lib\Xamarin.iOS10\SimpleAuth.pdb" />
<file src="src\SimpleAuth.UWP\bin\Debug\SimpleAuth.dll" target="lib\uap\SimpleAuth.dll" />
<file src="src\SimpleAuth.UWP\bin\Debug\SimpleAuth.pdb" target="lib\uap\SimpleAuth.pdb" />
<file src="src\SimpleAuth.Mac\bin\Debug\SimpleAuth.dll" target="lib\Xamarin.Mac20\SimpleAuth.dll" />
<file src="src\SimpleAuth.Mac\bin\Debug\SimpleAuth.pdb" target="lib\Xamarin.Mac20\SimpleAuth.pdb" />
</files>
</package>