File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<VersionPrefix >1.17.1</VersionPrefix >
5
- <TargetFrameworks >netstandard2.0;net451 </TargetFrameworks >
5
+ <TargetFrameworks >netstandard2.0;net452 </TargetFrameworks >
6
6
<AssemblyName >Microsoft.Windows.PowerShell.ScriptAnalyzer</AssemblyName >
7
7
<PackageId >Engine</PackageId >
8
8
<RootNamespace >Microsoft.Windows.PowerShell.ScriptAnalyzer</RootNamespace > <!-- Namespace needs to match Assembly name for ressource binding -->
9
9
</PropertyGroup >
10
10
11
- <ItemGroup Condition =" '$(TargetFramework)' == 'net451 ' " >
11
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net452 ' " >
12
12
<Reference Include =" System.ComponentModel.Composition" />
13
13
</ItemGroup >
14
14
15
- <PropertyGroup Condition =" '$(TargetFramework)' == 'net451 ' " >
15
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'net452 ' " >
16
16
<DebugType >portable</DebugType >
17
17
</PropertyGroup >
18
18
51
51
<PackageReference Include =" System.Management.Automation" Version =" 6.0.2" />
52
52
</ItemGroup >
53
53
54
- <ItemGroup Condition =" '$(TargetFramework)' == 'net451 ' AND '$(Configuration)' == 'PSV3Release' AND '$(Configuration)' != 'PSV4Release'" >
54
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net452 ' AND '$(Configuration)' == 'PSV3Release' AND '$(Configuration)' != 'PSV4Release'" >
55
55
<PackageReference Include =" Microsoft.PowerShell.3.ReferenceAssemblies" Version =" 1.0.0" />
56
56
</ItemGroup >
57
57
58
- <ItemGroup Condition =" '$(TargetFramework)' == 'net451 ' AND '$(Configuration)' == 'PSV4Release'" >
58
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net452 ' AND '$(Configuration)' == 'PSV4Release'" >
59
59
<PackageReference Include =" Microsoft.PowerShell.4.ReferenceAssemblies" Version =" 1.0.0" />
60
60
</ItemGroup >
61
61
62
- <ItemGroup Condition =" '$(TargetFramework)' == 'net451 ' AND '$(Configuration)' != 'PSV3Release'" >
62
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net452 ' AND '$(Configuration)' != 'PSV3Release'" >
63
63
<PackageReference Include =" Microsoft.PowerShell.5.ReferenceAssemblies" Version =" 1.1.0" />
64
64
</ItemGroup >
65
65
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<VersionPrefix >1.17.1</VersionPrefix >
5
- <TargetFrameworks >netstandard2.0;net451 </TargetFrameworks >
5
+ <TargetFrameworks >netstandard2.0;net452 </TargetFrameworks >
6
6
<AssemblyName >Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules</AssemblyName >
7
7
<PackageId >Rules</PackageId >
8
8
<RootNamespace >Microsoft.Windows.PowerShell.ScriptAnalyzer</RootNamespace > <!-- Namespace needs to match Assembly name for ressource binding -->
13
13
<PackageReference Include =" Newtonsoft.Json" Version =" 10.0.3" />
14
14
</ItemGroup >
15
15
16
- <ItemGroup Condition =" '$(TargetFramework)' == 'net451 ' " >
16
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net452 ' " >
17
17
<Reference Include =" System.ComponentModel.Composition" />
18
18
<Reference Include =" System.Data.Entity.Design" />
19
19
</ItemGroup >
20
20
21
- <PropertyGroup Condition =" '$(TargetFramework)' == 'net451 ' " >
21
+ <PropertyGroup Condition =" '$(TargetFramework)' == 'net452 ' " >
22
22
<DebugType >portable</DebugType >
23
23
</PropertyGroup >
24
24
41
41
</EmbeddedResource >
42
42
</ItemGroup >
43
43
44
- <ItemGroup Condition =" '$(TargetFramework)' == 'net451 ' " >
44
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net452 ' " >
45
45
<PackageReference Include =" Microsoft.Management.Infrastructure" Version =" 1.0.0-alpha*" />
46
46
</ItemGroup >
47
47
Original file line number Diff line number Diff line change @@ -93,9 +93,9 @@ function New-ReleaseBuild
93
93
try
94
94
{
95
95
if ( test-path out ) { remove-item out/ - recurse - force }
96
- .\buildCoreClr.ps1 - Framework net451 - Configuration PSV3Release - Build
97
- .\buildCoreClr.ps1 - Framework net451 - Configuration PSV4Release - Build
98
- .\buildCoreClr.ps1 - Framework net451 - Configuration Release - Build
96
+ .\buildCoreClr.ps1 - Framework net452 - Configuration PSV3Release - Build
97
+ .\buildCoreClr.ps1 - Framework net452 - Configuration PSV4Release - Build
98
+ .\buildCoreClr.ps1 - Framework net452 - Configuration Release - Build
99
99
.\buildCoreClr.ps1 - Framework netstandard2.0 - Configuration Release - Build
100
100
.\build.ps1 - BuildDocs
101
101
}
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ function Start-ScriptAnalyzerBuild
167
167
$frameworkName = " netstandard2.0"
168
168
}
169
169
else {
170
- $frameworkName = " net451 "
170
+ $frameworkName = " net452 "
171
171
}
172
172
173
173
# build the appropriate assembly
@@ -233,7 +233,7 @@ function Start-ScriptAnalyzerBuild
233
233
234
234
Publish-File $settingsFiles (Join-Path - Path $destinationDir - ChildPath Settings)
235
235
236
- # copy newtonsoft dll if net451 framework
236
+ # copy newtonsoft dll if net452 framework
237
237
if ($Framework -eq " full" ) {
238
238
Copy-Item - path " $projectRoot \Rules\bin\${config} \${frameworkName} \Newtonsoft.Json.dll" - Destination $destinationDirBinaries
239
239
}
You can’t perform that action at this time.
0 commit comments