Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth committed Jul 31, 2015
1 parent 6f3d6b4 commit a2c856b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
Expand Up @@ -100,6 +100,9 @@
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
</Compile>
<Compile Include="ImagePage.xaml.cs">
<DependentUpon>ImagePage.xaml</DependentUpon>
</Compile>
<Compile Include="MainPage.xaml.cs">
<DependentUpon>MainPage.xaml</DependentUpon>
</Compile>
Expand All @@ -110,6 +113,10 @@
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</ApplicationDefinition>
<Page Include="ImagePage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="MainPage.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
Expand Down
2 changes: 1 addition & 1 deletion ZXing.Net.Mobile.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>ZXing.Net.Mobile</id>
<version>1.5.0.0</version>
<version>1.5.1.0</version>
<title>ZXing.Net.Mobile Barcode Scanner</title>
<authors>Redth</authors>
<licenseUrl>http://raw.github.com/Redth/ZXing.Net.Mobile/master/License.md</licenseUrl>
Expand Down
15 changes: 9 additions & 6 deletions build.cake
Expand Up @@ -44,10 +44,10 @@ Task ("tools").WithCriteria (!FileExists ("./Component/tools/xamarin-component.e
DeleteFile ("./Component/tools/tools.zip");
});

Task ("component")
//.IsDependentOn ("libs")
.IsDependentOn ("tools").Does (() =>
Task ("component").IsDependentOn ("libs").IsDependentOn ("tools").Does (() =>
{
DeleteFiles ("./Build/**/*.xml");
if (IsRunningOnWindows ())
StartProcess ("./Component/tools/xamarin-component.exe", new ProcessSettings { Arguments = "package ./" });
else
Expand All @@ -61,8 +61,7 @@ Task ("nuget").IsDependentOn ("libs").Does (() =>
});

Task ("publish")
//.IsDependentOn ("nuget").IsDependentOn ("component")
Task ("publish").IsDependentOn ("nuget").IsDependentOn ("component")
.Does (() =>
{
if (string.IsNullOrEmpty (version)) {
Expand All @@ -89,9 +88,13 @@ Task ("stage").IsDependentOn ("nuget").Does (() =>

Task ("clean").Does (() =>
{
DeleteDirectory ("./Component/tools/", true);
CleanDirectory ("./Component/tools/");
CleanDirectories ("./Build/");
CleanDirectories ("./**/bin");
CleanDirectories ("./**/obj");
});

RunTarget (target);
2 changes: 1 addition & 1 deletion component.yaml
Expand Up @@ -28,7 +28,7 @@ packages:
summary: "ZXing.Net.Mobile is a C#/.NET Barcode Scanning Library"
details: ./Details.md
getting-started: ./GettingStarted.md
version: 1.5.0.0
version: 1.5.1.0
samples:
- name: Xamarin.iOS Unified API Sample
path: "./samples/iOS/Sample.iOS.sln"
Expand Down
4 changes: 2 additions & 2 deletions src/ZXing.Net.Mobile/Properties/AssemblyVersionInfo.cs
Expand Up @@ -12,5 +12,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]
[assembly: AssemblyVersion("1.5.1.0")]
[assembly: AssemblyFileVersion("1.5.1.0")]

0 comments on commit a2c856b

Please sign in to comment.