From ff01b9a4f45128eb18cd083567e27a8c200e15a4 Mon Sep 17 00:00:00 2001 From: Christoph Bergmeister Date: Sun, 4 Feb 2018 23:39:54 +0000 Subject: [PATCH 1/2] Remove 'dotnet restore' step in New-ReleaseBuild function because this is not needed any more due to the upgrade to .Net Core 2.0 --- Utils/ReleaseMaker.psm1 | 1 - 1 file changed, 1 deletion(-) diff --git a/Utils/ReleaseMaker.psm1 b/Utils/ReleaseMaker.psm1 index da33bfac9..b7a573786 100644 --- a/Utils/ReleaseMaker.psm1 +++ b/Utils/ReleaseMaker.psm1 @@ -93,7 +93,6 @@ function New-ReleaseBuild try { remove-item out/ -recurse -force - dotnet restore .\buildCoreClr.ps1 -Framework net451 -Configuration Release -Build .\buildCoreClr.ps1 -Framework net451 -Configuration PSV3Release -Build .\buildCoreClr.ps1 -Framework netstandard1.6 -Configuration Release -Build From 1b66637ca7b32d59ba54be70003ce426043be272 Mon Sep 17 00:00:00 2001 From: Christoph Bergmeister Date: Sun, 4 Feb 2018 23:49:57 +0000 Subject: [PATCH 2/2] update readme with update to csproj --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d8b30ad56..45017bc90 100644 --- a/README.md +++ b/README.md @@ -378,7 +378,7 @@ Creating a Release - Update changelog (`changelog.md`) with the new version number and change set. When updating the changelog please follow the same pattern as that of previous change sets (otherwise this may break the next step). - Import the ReleaseMaker module and execute `New-Release` cmdlet to perform the following actions. - Update module manifest (engine/PSScriptAnalyzer.psd1) with the new version number and change set - - Update the version number in `engine/project.json` and `rules/project.json` + - Update the version number in `Engine/Engine.csproj` and `Rules/Rules.csproj` - Create a release build in `out/` ```powershell