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
25 lines (25 loc) · 1.63 KB
/
Copy pathSimpleAuth.nuspec
File metadata and controls
25 lines (25 loc) · 1.63 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
<?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.19</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</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>Initial Xamarin.Mac20 support. API's that use Authentication via URL now only add authentication for authenticated calls.</releaseNotes>
<copyright>James Clancey</copyright>
<dependencies>
<dependency id="Newtonsoft.Json" version="8.0.3" />
</dependencies>
</metadata>
<files>
<file src="src\SimpleAuth.Droid\bin\Release\SimpleAuth.dll" target="lib\MonoAndroid\SimpleAuth.dll" />
<file src="src\SimpleAuth.Net45\bin\Release\SimpleAuth.dll" target="lib\net45\SimpleAuth.dll" />
<file src="src\SimpleAuth.Portable\bin\Release\SimpleAuth.dll" target="lib\Portable-Net45+WinRT45+WP8+WPA81\SimpleAuth.dll" />
<file src="src\SimpleAuth.iOS\bin\iPhone\Release\SimpleAuth.dll" target="lib\Xamarin.iOS10\SimpleAuth.dll" />
<file src="src\SimpleAuth.Mac\bin\Release\SimpleAuth.dll" target="lib\Xamarin.Mac20\SimpleAuth.dll" />
</files>
</package>