Skip to content

Commit 9642bf7

Browse files
authored
Update versions for 1.18.0 Release (#1174)
* Drop back to 2.1.4 for sdk in container * Don't take input for building, the release tag is never used * Push version to 1.18.0 * add param statement in vstsbuild script * add dummy ReleaseTag * Move up to sdk 2.1.9 * Revert "Move up to sdk 2.1.9" This reverts commit dd353a0.
1 parent bfec823 commit 9642bf7

File tree

5 files changed

+6
-13
lines changed

5 files changed

+6
-13
lines changed

Engine/Engine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>1.17.1</VersionPrefix>
4+
<VersionPrefix>1.18.0</VersionPrefix>
55
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
66
<AssemblyName>Microsoft.Windows.PowerShell.ScriptAnalyzer</AssemblyName>
77
<PackageId>Engine</PackageId>

Engine/PSScriptAnalyzer.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Author = 'Microsoft Corporation'
1111
RootModule = 'PSScriptAnalyzer.psm1'
1212

1313
# Version number of this module.
14-
ModuleVersion = '1.17.1'
14+
ModuleVersion = '1.18.0'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'

Rules/Rules.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>1.17.1</VersionPrefix>
4+
<VersionPrefix>1.18.0</VersionPrefix>
55
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
66
<AssemblyName>Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules</AssemblyName>
77
<PackageId>Rules</PackageId>

tools/releaseBuild/Image/DockerFile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN Import-Module PackageManagement; `
1818
Install-ChocolateyPackage -PackageName nuget.commandline -Executable nuget.exe -Cleanup; `
1919
Install-Module -Force -Name platyPS; `
2020
Invoke-WebRequest -Uri https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1 -outfile C:/dotnet-install.ps1; `
21-
C:/dotnet-install.ps1 -Channel Release -Version 2.2.3; `
21+
C:/dotnet-install.ps1 -Channel Release -Version 2.1.4; `
2222
Add-Path C:/Users/ContainerAdministrator/AppData/Local/Microsoft/dotnet;
2323

2424
RUN Import-Module ./containerFiles/dockerInstall.psm1; `

tools/releaseBuild/vstsbuild.ps1

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
[cmdletbinding()]
2-
param(
3-
[Parameter(Mandatory=$true,Position=0)]
4-
[ValidatePattern("^v\d+\.\d+\.\d+(-\w+(\.\d+)?)?$")]
5-
[string]$ReleaseTag
6-
)
2+
param ( )
73

84
Begin
95
{
@@ -54,13 +50,10 @@ End {
5450
Write-Verbose "Starting build at $resolvedRepoRoot ..." -Verbose
5551
Clear-VstsTaskState
5652

57-
$buildParameters = @{
58-
ReleaseTag = $ReleaseTag
59-
}
6053
$buildArgs = @{
6154
RepoPath = $resolvedRepoRoot
6255
BuildJsonPath = './tools/releaseBuild/build.json'
63-
Parameters = $buildParameters
56+
Parameters = @{ ReleaseTag = "unused" } # not needed for PSSA
6457
AdditionalFiles = $AdditionalFiles
6558
Name = "win7-x64"
6659
}

0 commit comments

Comments
 (0)