diff --git a/build/Build.bat b/build/Build.bat index c453740020..dc88dc37ee 100644 --- a/build/Build.bat +++ b/build/Build.bat @@ -2,9 +2,18 @@ IF NOT EXIST UmbracoVersion.txt ( ECHO UmbracoVersion.txt missing! GOTO :showerror -) -SET /p release= .\_BuildOutput\WebApp\App_Code\dummy.txt -echo This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. > .\_BuildOutput\WebApp\App_Data\dummy.txt -echo This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. > .\_BuildOutput\WebApp\App_Plugins\dummy.txt -echo This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. > .\_BuildOutput\WebApp\css\dummy.txt -echo This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. > .\_BuildOutput\WebApp\masterpages\dummy.txt -echo This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. > .\_BuildOutput\WebApp\media\dummy.txt -echo This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. > .\_BuildOutput\WebApp\scripts\dummy.txt -echo This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. > .\_BuildOutput\WebApp\usercontrols\dummy.txt -echo This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. > .\_BuildOutput\WebApp\Views\Partials\dummy.txt -echo This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. > .\_BuildOutput\WebApp\Views\MacroPartials\dummy.txt +SET dummytext=This file is only here so that the containing folder will be included in the NuGet package, it is safe to delete. +ECHO %dummytext% > .\_BuildOutput\WebApp\App_Code\dummy.txt +ECHO %dummytext% > .\_BuildOutput\WebApp\App_Data\dummy.txt +ECHO %dummytext% > .\_BuildOutput\WebApp\App_Plugins\dummy.txt +ECHO %dummytext% > .\_BuildOutput\WebApp\css\dummy.txt +ECHO %dummytext% > .\_BuildOutput\WebApp\masterpages\dummy.txt +ECHO %dummytext% > .\_BuildOutput\WebApp\media\dummy.txt +ECHO %dummytext% > .\_BuildOutput\WebApp\scripts\dummy.txt +ECHO %dummytext% > .\_BuildOutput\WebApp\usercontrols\dummy.txt +ECHO %dummytext% > .\_BuildOutput\WebApp\Views\Partials\dummy.txt +ECHO %dummytext% > .\_BuildOutput\WebApp\Views\MacroPartials\dummy.txt ECHO Adding Web.config transform files to the NuGet package -ren .\_BuildOutput\WebApp\Views\Web.config Web.config.transform -ren .\_BuildOutput\WebApp\Xslt\Web.config Web.config.transform +REN .\_BuildOutput\WebApp\MacroScripts\Web.config Web.config.transform +REN .\_BuildOutput\WebApp\Views\Web.config Web.config.transform +REN .\_BuildOutput\WebApp\Xslt\Web.config Web.config.transform ECHO Packing the NuGet release files ..\src\.nuget\NuGet.exe Pack NuSpecs\UmbracoCms.Core.nuspec -Version %version% diff --git a/build/UmbracoVersion.txt b/build/UmbracoVersion.txt index 4b49d9bb63..fb724d8faf 100644 --- a/build/UmbracoVersion.txt +++ b/build/UmbracoVersion.txt @@ -1 +1,3 @@ -7.2.0 \ No newline at end of file +# Usage: on line 2 put the release version, on line 3 put the version comment (example: beta) +7.2.0 +beta2 \ No newline at end of file