Skip to content

Commit 539e28e

Browse files
bergmeisterJamesWTruher
authored andcommitted
Adapt release script and documentation due to upgrade to .Net Core 2.0 (#870)
* Remove 'dotnet restore' step in New-ReleaseBuild function because this is not needed any more due to the upgrade to .Net Core 2.0 * update readme with update to csproj
1 parent ed21cf8 commit 539e28e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ Creating a Release
378378
- 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).
379379
- Import the ReleaseMaker module and execute `New-Release` cmdlet to perform the following actions.
380380
- Update module manifest (engine/PSScriptAnalyzer.psd1) with the new version number and change set
381-
- Update the version number in `engine/project.json` and `rules/project.json`
381+
- Update the version number in `Engine/Engine.csproj` and `Rules/Rules.csproj`
382382
- Create a release build in `out/`
383383

384384
```powershell

Utils/ReleaseMaker.psm1

-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ function New-ReleaseBuild
9393
try
9494
{
9595
remove-item out/ -recurse -force
96-
dotnet restore
9796
.\buildCoreClr.ps1 -Framework net451 -Configuration Release -Build
9897
.\buildCoreClr.ps1 -Framework net451 -Configuration PSV3Release -Build
9998
.\buildCoreClr.ps1 -Framework netstandard1.6 -Configuration Release -Build

0 commit comments

Comments
 (0)