Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 015b5cd

Browse files
authored
Update build to use .NET SDK 10.0.100 (#26448)
1 parent bb44aa1 commit 015b5cd

16 files changed

Lines changed: 80 additions & 120 deletions

File tree

DotnetRuntimeMetadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"quality": "daily",
55
"qualityFallback": "preview",
66
"packageVersionPattern": "9.0.0-preview.6",
7-
"sdkImageVersion": "10.0.100-rc.1.25451.107",
7+
"sdkImageVersion": "10.0.100",
88
"nextChannel": "9.0.0-preview.7",
99
"azureFeed": "",
1010
"sdkImageOverride": ""

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "10.0.100-rc.2.25502.107"
3+
"version": "10.0.100"
44
}
55
}

src/Microsoft.PowerShell.Commands.Diagnostics/Microsoft.PowerShell.Commands.Diagnostics.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj" />
11-
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="10.0.0-rc.2.25502.107" />
11+
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="10.0.0" />
1212
</ItemGroup>
1313

1414
<PropertyGroup>

src/Microsoft.PowerShell.Commands.Management/Microsoft.PowerShell.Commands.Management.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
<ItemGroup>
4949
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
50-
<PackageReference Include="System.ServiceProcess.ServiceController" Version="10.0.0-rc.2.25502.107" />
50+
<PackageReference Include="System.ServiceProcess.ServiceController" Version="10.0.0" />
5151
</ItemGroup>
5252

5353
</Project>

src/Microsoft.PowerShell.Commands.Utility/Microsoft.PowerShell.Commands.Utility.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
<ItemGroup>
3535
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
36-
<PackageReference Include="System.Drawing.Common" Version="10.0.0-rc.2.25502.107" />
36+
<PackageReference Include="System.Drawing.Common" Version="10.0.0" />
3737
<PackageReference Include="JsonSchema.Net" Version="7.4.0" />
3838
</ItemGroup>
3939

src/Microsoft.PowerShell.CoreCLR.Eventing/Microsoft.PowerShell.CoreCLR.Eventing.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
11-
<PackageReference Include="System.Diagnostics.EventLog" Version="10.0.0-rc.2.25502.107" />
11+
<PackageReference Include="System.Diagnostics.EventLog" Version="10.0.0" />
1212
</ItemGroup>
1313

1414
</Project>

src/Microsoft.PowerShell.SDK/Microsoft.PowerShell.SDK.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616

1717
<ItemGroup>
1818
<!-- This section is to force the version of non-direct dependencies -->
19-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.0-rc.2.25502.107" />
20-
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="10.0.0-rc.2.25502.107" />
19+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.0" />
20+
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="10.0.0" />
2121
<!-- the following package(s) are from https://github.com/dotnet/fxdac -->
2222
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
2323
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
24-
<PackageReference Include="System.IO.Packaging" Version="10.0.0-rc.2.25502.107" />
25-
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="10.0.0-rc.2.25502.107" />
24+
<PackageReference Include="System.IO.Packaging" Version="10.0.0" />
25+
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="10.0.0" />
2626
<!-- the following package(s) are from https://github.com/dotnet/wcf -->
2727
<PackageReference Include="System.ServiceModel.Http" Version="10.0.0-rc.2.final" />
2828
<PackageReference Include="System.ServiceModel.NetTcp" Version="10.0.0-rc.2.final" />
2929
<PackageReference Include="System.ServiceModel.Primitives" Version="10.0.0-rc.2.final" />
3030
<!-- the source could not be found for the following package(s) -->
31-
<PackageReference Include="Microsoft.Windows.Compatibility" Version="10.0.0-rc.2.25502.107" />
31+
<PackageReference Include="Microsoft.Windows.Compatibility" Version="10.0.0" />
3232
</ItemGroup>
3333

3434
</Project>

src/Microsoft.WSMan.Management/Microsoft.WSMan.Management.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj" />
1111
<ProjectReference Include="..\Microsoft.WSMan.Runtime\Microsoft.WSMan.Runtime.csproj" />
1212
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
13-
<PackageReference Include="System.ServiceProcess.ServiceController" Version="10.0.0-rc.2.25502.107" />
13+
<PackageReference Include="System.ServiceProcess.ServiceController" Version="10.0.0" />
1414
</ItemGroup>
1515

1616
<PropertyGroup>

src/System.Management.Automation/System.Management.Automation.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
<!-- the Application Insights package -->
3333
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.23.0" />
3434
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
35-
<PackageReference Include="Microsoft.Win32.Registry.AccessControl" Version="10.0.0-rc.2.25502.107" />
36-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.0-rc.2.25502.107" />
37-
<PackageReference Include="System.DirectoryServices" Version="10.0.0-rc.2.25502.107" />
38-
<PackageReference Include="System.Management" Version="10.0.0-rc.2.25502.107" />
39-
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="10.0.0-rc.2.25502.107" />
40-
<PackageReference Include="System.Security.Permissions" Version="10.0.0-rc.2.25502.107" />
35+
<PackageReference Include="Microsoft.Win32.Registry.AccessControl" Version="10.0.0" />
36+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.0" />
37+
<PackageReference Include="System.DirectoryServices" Version="10.0.0" />
38+
<PackageReference Include="System.Management" Version="10.0.0" />
39+
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="10.0.0" />
40+
<PackageReference Include="System.Security.Permissions" Version="10.0.0" />
4141
<!-- the following package(s) are from the powershell org -->
4242
<PackageReference Include="Microsoft.Management.Infrastructure" Version="3.0.0" />
4343
<PackageReference Include="Microsoft.PowerShell.Native" Version="700.0.0-preview.2" />

test/perf/dotnet-tools/BenchmarkDotNet.Extensions/BenchmarkDotNet.Extensions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="BenchmarkDotNet" Version="0.15.5" />
10-
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.5" />
9+
<PackageReference Include="BenchmarkDotNet" Version="0.15.6" />
10+
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.7" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

0 commit comments

Comments
 (0)