- fixed permissions in zip file
- changed mailing list address

git-svn-id: https://svn.apache.org/repos/asf/chemistry/dotcmis/trunk@1078128 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/DotCMIS/DotCMIS.shfbproj b/DotCMIS/DotCMIS.shfbproj
index 76e54c0..79d7bcc 100644
--- a/DotCMIS/DotCMIS.shfbproj
+++ b/DotCMIS/DotCMIS.shfbproj
@@ -41,7 +41,7 @@
     </ApiFilter>

     <SelfBranded>True</SelfBranded>

     <FeedbackEMailLinkText>Apache Chemistry developer mailing list</FeedbackEMailLinkText>

-    <FeedbackEMailAddress>chemistry-dev%40incubator.apache.org</FeedbackEMailAddress>

+    <FeedbackEMailAddress>dev%40chemistry.apache.org</FeedbackEMailAddress>

     <CopyrightText>Apache Software Foundation</CopyrightText>

     <CopyrightHref>http://www.apache.org</CopyrightHref>

     <BinaryTOC>True</BinaryTOC>

diff --git a/DotCMIS/build.bat b/DotCMIS/build.bat
index 0951ab9..f43b01b 100644
--- a/DotCMIS/build.bat
+++ b/DotCMIS/build.bat
@@ -22,6 +22,10 @@
 rem This batch file creates the Debug DLL, the Release DLL and the documentation.

 rem It requires the .NET Framework 3.5, Sandcastle and Sandcastle Help File Builder.

 

+echo Removing old DLLs

+rmdir /Q /S bin

+rmdir /Q /S obj

+

 echo Building Debug DLL...

 msbuild DotCMIS.csproj /ToolsVersion:3.5 /p:Configuration=Debug

 

diff --git a/release.bat b/release.bat
index cceb498..f0327c7 100644
--- a/release.bat
+++ b/release.bat
@@ -24,7 +24,9 @@
 

 set DOTCMISVERSION=0.1

 set DOTCMISZIP=chemistry-dotcmis-%DOTCMISVERSION%.zip

-set DOTCMISRC=RC1

+set DOTCMISRC=RC2

+

+set CYGWIN=ntea

 

 echo Building...

 cd DotCMIS

@@ -51,19 +53,24 @@
 rmdir /S /Q release\src\bin

 rmdir /S /Q release\src\obj

 rmdir /S /Q release\src\doc

+chmod -R a+rwx release

 

 echo Creating release file...

-del %DOTCMISZIP%

+rmdir /S /Q artifacts

+mkdir artifacts

+

 cd release

-zip -r  ..\%DOTCMISZIP% *

+zip -r  ../artifacts/%DOTCMISZIP% *

 cd ..

 

 echo Signing release file...

+cd artifacts

 gpg --armor --output %DOTCMISZIP%.asc --detach-sig %DOTCMISZIP%

 gpg --print-md MD5 %DOTCMISZIP% > %DOTCMISZIP%.md5

 gpg --print-md SHA512 %DOTCMISZIP% > %DOTCMISZIP%.sha

 gpg --print-md MD5 %DOTCMISZIP%.asc > %DOTCMISZIP%.asc.md5

 gpg --print-md SHA512 %DOTCMISZIP%.asc > %DOTCMISZIP%.asc.sha

+cd ..

 

 echo Creating RC tag

 rem svn copy https://svn.apache.org/repos/asf/chemistry/dotcmis/trunk https://svn.apache.org/repos/asf/chemistry/dotcmis/tags/chemistry-dotcmis-%DOTCMISVERSION%-%DOTCMISRC%