├── .gitignore ├── LICENSE ├── My.Awesome.Library.Droid ├── Class1.cs ├── My.Awesome.Library.Droid.csproj ├── Properties │ └── AssemblyInfo.cs └── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ └── Values │ └── Strings.xml ├── My.Awesome.Library.Net45 ├── Class1.cs ├── My.Awesome.Library.Net45.csproj └── Properties │ └── AssemblyInfo.cs ├── My.Awesome.Library.iOS ├── Class1.cs ├── My.Awesome.Library.iOS.csproj └── Properties │ └── AssemblyInfo.cs ├── My.Awesome.Library.nuspec ├── My.Awesome.Library.props ├── My.Awesome.Library.sln └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/LICENSE -------------------------------------------------------------------------------- /My.Awesome.Library.Droid/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.Droid/Class1.cs -------------------------------------------------------------------------------- /My.Awesome.Library.Droid/My.Awesome.Library.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.Droid/My.Awesome.Library.Droid.csproj -------------------------------------------------------------------------------- /My.Awesome.Library.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /My.Awesome.Library.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /My.Awesome.Library.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /My.Awesome.Library.Droid/Resources/Values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.Droid/Resources/Values/Strings.xml -------------------------------------------------------------------------------- /My.Awesome.Library.Net45/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.Net45/Class1.cs -------------------------------------------------------------------------------- /My.Awesome.Library.Net45/My.Awesome.Library.Net45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.Net45/My.Awesome.Library.Net45.csproj -------------------------------------------------------------------------------- /My.Awesome.Library.Net45/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.Net45/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /My.Awesome.Library.iOS/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.iOS/Class1.cs -------------------------------------------------------------------------------- /My.Awesome.Library.iOS/My.Awesome.Library.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.iOS/My.Awesome.Library.iOS.csproj -------------------------------------------------------------------------------- /My.Awesome.Library.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /My.Awesome.Library.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.nuspec -------------------------------------------------------------------------------- /My.Awesome.Library.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.props -------------------------------------------------------------------------------- /My.Awesome.Library.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/My.Awesome.Library.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cheesebaron/Nugetx86x64/HEAD/README.md --------------------------------------------------------------------------------