FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Update branch to use the .NET 11 SDK 11.0.100-preview.4 (#27504) · PowerShell/PowerShell@f1aaf15 · GitHub

Commit f1aaf15

Browse files
authored
Update branch to use the .NET 11 SDK 11.0.100-preview.4 (#27504)
1 parent 7ae36cd commit f1aaf15

16 files changed

Lines changed: 86 additions & 82 deletions

File tree

‎CHANGELOG/v7.7/dependencychanges.json‎

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,18 @@
1111
"AdvisoryUrls": [],
1212
"Justification": "Updated .NET SDK. Building with the latest SDK is required.",
1313
"TimestampUtc": "2026-04-17T17:16:15.7099916Z"
14+
},
15+
{
16+
"ChangeType": "NonSecurity",
17+
"Branch": "master",
18+
"PackageId": ".NET SDK",
19+
"FromVersion": "11.0.100-preview.3.26207.106",
20+
"ToVersion": "11.0.100-preview.4.26230.115",
21+
"VulnerabilityId": [],
22+
"Severity": [],
23+
"VulnerableRanges": [],
24+
"AdvisoryUrls": [],
25+
"Justification": "Updated .NET SDK. Building with the latest SDK is required.",
26+
"TimestampUtc": "2026-05-22T18:15:20.6826051Z"
1427
}
1528
]

‎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": "11.0.100-preview.3.26207.106",
7+
"sdkImageVersion": "11.0.100-preview.4.26230.115",
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": "11.0.100-preview.3.26207.106"
3+
"version": "11.0.100-preview.4.26230.115"
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="11.0.0-preview.3.26207.106" />
11+
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="11.0.0-preview.4.26230.115" />
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="11.0.0-preview.3.26207.106" />
50+
<PackageReference Include="System.ServiceProcess.ServiceController" Version="11.0.0-preview.4.26230.115" />
5151
</ItemGroup>
5252

5353
</Project>

‎src/Microsoft.PowerShell.Commands.Management/commands/management/CIMHelper.cs‎

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99

1010
namespace Microsoft.PowerShell.Commands
1111
{
12-
using Extensions;
13-
1412
internal static class CIMHelper
1513
{
1614
internal static class ClassNames
@@ -237,11 +235,6 @@ internal static string EscapePath(string path)
237235
return string.Join(@"\\", path.Split('\\'));
238236
}
239237
}
240-
}
241-
242-
namespace Extensions
243-
{
244-
using Microsoft.PowerShell.Commands;
245238

246239
internal static class CIMExtensions
247240
{
@@ -317,12 +310,12 @@ internal static CimInstance QueryFirstInstance(this CimSession session, string q
317310

318311
internal static T[] GetAll<T>(this CimSession session, string wmiClassName) where T : class, new()
319312
{
320-
return Microsoft.PowerShell.Commands.CIMHelper.GetAll<T>(session, wmiClassName);
313+
return CIMHelper.GetAll<T>(session, wmiClassName);
321314
}
322315

323316
internal static T[] GetAll<T>(this CimSession session, string wmiNamespace, string wmiClassName) where T : class, new()
324317
{
325-
return Microsoft.PowerShell.Commands.CIMHelper.GetAll<T>(session, wmiNamespace, wmiClassName);
318+
return CIMHelper.GetAll<T>(session, wmiNamespace, wmiClassName);
326319
}
327320
}
328321
}

‎src/Microsoft.PowerShell.Commands.Management/commands/management/GetComputerInfoCommand.cs‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818
namespace Microsoft.PowerShell.Commands
1919
{
20-
using Extensions;
21-
2220
#region GetComputerInfoCommand cmdlet implementation
2321
/// <summary>
2422
/// The Get-ComputerInfo cmdlet gathers and reports information

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

Lines changed: 2 additions & 2 deletions
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="Markdig.Signed" Version="1.1.2" />
11+
<PackageReference Include="Markdig.Signed" Version="1.2.0" />
1212
<PackageReference Include="Microsoft.PowerShell.MarkdownRender" Version="7.2.1" />
1313
</ItemGroup>
1414

@@ -33,7 +33,7 @@
3333

3434
<ItemGroup>
3535
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.3.0" />
36-
<PackageReference Include="System.Drawing.Common" Version="11.0.0-preview.3.26207.106" />
36+
<PackageReference Include="System.Drawing.Common" Version="11.0.0-preview.4.26230.115" />
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="11.0.0-preview.3.26207.106" />
11+
<PackageReference Include="System.Diagnostics.EventLog" Version="11.0.0-preview.4.26230.115" />
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="11.0.0-preview.3.26207.106" />
20-
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="11.0.0-preview.3.26207.106" />
19+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="11.0.0-preview.4.26230.115" />
20+
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="11.0.0-preview.4.26230.115" />
2121
<!-- the following package(s) are from https://github.com/dotnet/fxdac -->
2222
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
2323
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
24-
<PackageReference Include="System.IO.Packaging" Version="11.0.0-preview.3.26207.106" />
25-
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="11.0.0-preview.3.26207.106" />
24+
<PackageReference Include="System.IO.Packaging" Version="11.0.0-preview.4.26230.115" />
25+
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="11.0.0-preview.4.26230.115" />
2626
<!-- the following package(s) are from https://github.com/dotnet/wcf -->
2727
<PackageReference Include="System.ServiceModel.Http" Version="10.0.652802" />
2828
<PackageReference Include="System.ServiceModel.NetTcp" Version="10.0.652802" />
2929
<PackageReference Include="System.ServiceModel.Primitives" Version="10.0.652802" />
3030
<!-- the source could not be found for the following package(s) -->
31-
<PackageReference Include="Microsoft.Windows.Compatibility" Version="11.0.0-preview.3.26207.106" />
31+
<PackageReference Include="Microsoft.Windows.Compatibility" Version="11.0.0-preview.4.26230.115" />
3232
</ItemGroup>
3333

3434
<!--

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL