Skip to content

Commit

Permalink
Add NuGet packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gshackles committed May 30, 2015
1 parent 855d5d4 commit 53ef9e7
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -211,4 +211,6 @@ _UpgradeReport_Files/
Backup*/
UpgradeLog*.XML

.DS_Store
.DS_Store

*.nupkg
22 changes: 22 additions & 0 deletions nuspec/FloatLabeledEntry.iOS.Dialog.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>FloatLabeledEntry.iOS.Dialog</id>
<version>1.0.0</version>
<authors>gshackles</authors>
<owners>gshackles</owners>
<licenseUrl>https://github.com/gshackles/FloatLabeledEntry/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/gshackles/FloatLabeledEntry</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Float-labeled text input for iOS (MonoTouch.Dialog version)</description>
<releaseNotes>Initial NuGet release</releaseNotes>
<copyright>Copyright 2015 Greg Shackles</copyright>
<tags>iOS</tags>
<dependencies>
<dependency id="FloatLabeledEntry.iOS" version="1.0" />
</dependencies>
</metadata>
<files>
<file src="../src/iOS/FloatLabeledEntry.iOS.Dialog/bin/Release/FloatLabeledEntry.iOS.Dialog.dll" target="lib/Xamarin.iOS10" />
</files>
</package>
19 changes: 19 additions & 0 deletions nuspec/FloatLabeledEntry.iOS.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>FloatLabeledEntry.iOS</id>
<version>1.0.0</version>
<authors>gshackles</authors>
<owners>gshackles</owners>
<licenseUrl>https://github.com/gshackles/FloatLabeledEntry/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/gshackles/FloatLabeledEntry</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Float-labeled text input for iOS</description>
<releaseNotes>Initial NuGet release</releaseNotes>
<copyright>Copyright 2015 Greg Shackles</copyright>
<tags>iOS</tags>
</metadata>
<files>
<file src="../src/iOS/FloatLabeledEntry.iOS/bin/Release/FloatLabeledEntry.iOS.dll" target="lib/Xamarin.iOS10" />
</files>
</package>
4 changes: 4 additions & 0 deletions nuspec/pack.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"/Applications/Xamarin Studio.app/Contents/MacOS/mdtool" build ../src/iOS/FloatLabeledEntry.iOS.sln "-c:Release"

nuget pack FloatLabeledEntry.iOS.nuspec -NoDefaultExcludes
nuget pack FloatLabeledEntry.iOS.Dialog.nuspec -NoDefaultExcludes

0 comments on commit 53ef9e7

Please sign in to comment.