aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2015-02-22 13:49:54 -0600
committerrogerk <devnull@localhost>2015-02-22 13:49:54 -0600
commitd7ea2057f697b938eb33d08aa69c172c89880c2f (patch)
tree9011fff9b98b4ce49d2db771139b4bef5bf6703e
parenta3e8d12961e1c4a237dc4fa187ae982c664bf393 (diff)
downloadprotobuf-d7ea2057f697b938eb33d08aa69c172c89880c2f.tar.gz
protobuf-d7ea2057f697b938eb33d08aa69c172c89880c2f.tar.bz2
protobuf-d7ea2057f697b938eb33d08aa69c172c89880c2f.zip
Changes for pulish script
-rw-r--r--CHANGES.txt2
-rw-r--r--build/publish.csproj7
2 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a4bd41cb..90e9d77e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -9,7 +9,7 @@ For more information about Protocol Buffers in general, visit the project page
for the C++, Java and Python project:
http://protobuf.googlecode.com
===============================================================================
-RELEASE NOTES - Version 2.4.1.554
+RELEASE NOTES - Version 2.4.1.555
===============================================================================
Changes:
diff --git a/build/publish.csproj b/build/publish.csproj
index 500e0dec..37a5f626 100644
--- a/build/publish.csproj
+++ b/build/publish.csproj
@@ -6,8 +6,9 @@
<Target Name="Build" DependsOnTargets="_Clean;_Prerequisites;_StampVersion;_GenerateSource;_Build" />
<Target Name="Label" DependsOnTargets="_HgLabel" />
<Target Name="Package" DependsOnTargets="_HgPack;_NugetPack" />
- <Target Name="PushAll" DependsOnTargets="_HgPush;_PkgPush;_NugetPush" />
- <Target Name="Publish" DependsOnTargets="Clean;Build;Label;Package;PushAll" />
+ <Target Name="Prepare" DependsOnTargets="Clean;Build;Label;Package" />
+ <Target Name="PushAll" DependsOnTargets="_HgPush;_NugetPush" />
+ <Target Name="Publish" DependsOnTargets="Prepare;PushAll" />
<PropertyGroup>
<ProjectName>Protocol Buffers</ProjectName>
@@ -126,8 +127,8 @@
</Target>
<Target Name="_HgLabel" DependsOnTargets="_Prerequisites">
- <Exec Command="$(HgTool) tag $(VersionLabel)" WorkingDirectory="$(ProjectDirectory)" />
<Exec Command="$(HgTool) commit -m &quot;version $(VersionLabel)&quot;" WorkingDirectory="$(ProjectDirectory)" />
+ <Exec Command="$(HgTool) tag $(VersionLabel)" WorkingDirectory="$(ProjectDirectory)" />
</Target>
<Target Name="_HgPush" DependsOnTargets="_Prerequisites">