Xamarin.Binding: Add the Jar file automatically to the target app.

***NO_CI***


git-tfs-id: [http://tfs04:8080/tfs/Umbrella]$/Umbrella/Umbrella/Projects;C4789
This commit is contained in:
Jérôme Laban 2014-10-21 13:42:07 +00:00
Родитель 4530f5648f
Коммит 1f64bdf76b
2 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>UniversalImageLoader</id>
<version>1.9.3.0</version>
<version>1.9.3.1</version>
<title>Android Universal Image Loader</title>
<authors>nventive</authors>
<owners />
@ -17,6 +17,6 @@
<file src="..\Bin\Release\*.dll" target="lib\MonoAndroid" />
<file src="..\Bin\Release\*.pdb" target="lib\MonoAndroid" />
<file src="..\Jars\universal-image-loader-1.9.3.jar" target="tools" />
<file src="..\Jars\universal-image-loader-1.9.3.jar" target="content" />
</files>
</package>

Просмотреть файл

@ -5,6 +5,7 @@
<PropertyGroup>
<NuGetBin>..\packages\NuGet.CommandLine.2.8.3\tools\NuGet.exe</NuGetBin>
<NuGetRepositoryPath>\\main.nventive.local\Drops\Umbrella\Packages</NuGetRepositoryPath>
<PackageVersion>1.9.3.1</PackageVersion>
</PropertyGroup>
<Target Name="Build">
@ -31,8 +32,8 @@
<Exec Command="$(NuGetBin) pack UniversalImageLoader.nuspec" />
<!-- Publish the new packages -->
<Exec Command="copy .\UniversalImageLoader.1.9.3.0.nupkg $(NuGetRepositoryPath)" Condition="'$(PublishNuget)'!=''" />
<Exec Command="copy .\UniversalImageLoader.1.9.3.0.nupkg $(MyOutputDir)" />
<Exec Command="copy .\UniversalImageLoader.$(PackageVersion).nupkg $(NuGetRepositoryPath)" Condition="'$(PublishNuget)'!=''" />
<Exec Command="copy .\UniversalImageLoader.$(PackageVersion).nupkg $(MyOutputDir)" />
</Target>