Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG/v7.7/dependencychanges.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,18 @@
"AdvisoryUrls": [],
"Justification": "Updated .NET SDK. Building with the latest SDK is required.",
"TimestampUtc": "2026-04-17T17:16:15.7099916Z"
},
{
"ChangeType": "NonSecurity",
"Branch": "master",
"PackageId": ".NET SDK",
"FromVersion": "11.0.100-preview.3.26207.106",
"ToVersion": "11.0.100-preview.4.26230.115",
"VulnerabilityId": [],
"Severity": [],
"VulnerableRanges": [],
"AdvisoryUrls": [],
"Justification": "Updated .NET SDK. Building with the latest SDK is required.",
"TimestampUtc": "2026-05-22T18:15:20.6826051Z"
}
]
2 changes: 1 addition & 1 deletion DotnetRuntimeMetadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"quality": "daily",
"qualityFallback": "preview",
"packageVersionPattern": "9.0.0-preview.6",
"sdkImageVersion": "11.0.100-preview.3.26207.106",
"sdkImageVersion": "11.0.100-preview.4.26230.115",
"nextChannel": "9.0.0-preview.7",
"azureFeed": "",
"sdkImageOverride": ""
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "11.0.100-preview.3.26207.106"
"version": "11.0.100-preview.4.26230.115"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj" />
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="11.0.0-preview.4.26230.115" />
</ItemGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

<ItemGroup>
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
<PackageReference Include="System.ServiceProcess.ServiceController" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="11.0.0-preview.4.26230.115" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@

namespace Microsoft.PowerShell.Commands
{
using Extensions;

internal static class CIMHelper
{
internal static class ClassNames
Expand Down Expand Up @@ -237,11 +235,6 @@ internal static string EscapePath(string path)
return string.Join(@"\\", path.Split('\\'));
}
}
}

namespace Extensions
{
using Microsoft.PowerShell.Commands;

internal static class CIMExtensions
{
Expand Down Expand Up @@ -317,12 +310,12 @@ internal static CimInstance QueryFirstInstance(this CimSession session, string q

internal static T[] GetAll<T>(this CimSession session, string wmiClassName) where T : class, new()
{
return Microsoft.PowerShell.Commands.CIMHelper.GetAll<T>(session, wmiClassName);
return CIMHelper.GetAll<T>(session, wmiClassName);
}

internal static T[] GetAll<T>(this CimSession session, string wmiNamespace, string wmiClassName) where T : class, new()
{
return Microsoft.PowerShell.Commands.CIMHelper.GetAll<T>(session, wmiNamespace, wmiClassName);
return CIMHelper.GetAll<T>(session, wmiNamespace, wmiClassName);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

namespace Microsoft.PowerShell.Commands
{
using Extensions;

#region GetComputerInfoCommand cmdlet implementation
/// <summary>
/// The Get-ComputerInfo cmdlet gathers and reports information
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj" />
<PackageReference Include="Markdig.Signed" Version="1.1.2" />
<PackageReference Include="Markdig.Signed" Version="1.2.0" />
<PackageReference Include="Microsoft.PowerShell.MarkdownRender" Version="7.2.1" />
</ItemGroup>

Expand All @@ -33,7 +33,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.3.0" />
<PackageReference Include="System.Drawing.Common" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.Drawing.Common" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="JsonSchema.Net" Version="7.4.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
<PackageReference Include="System.Diagnostics.EventLog" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.Diagnostics.EventLog" Version="11.0.0-preview.4.26230.115" />
</ItemGroup>

</Project>
10 changes: 5 additions & 5 deletions src/Microsoft.PowerShell.SDK/Microsoft.PowerShell.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@

<ItemGroup>
<!-- This section is to force the version of non-direct dependencies -->
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="11.0.0-preview.4.26230.115" />
<!-- the following package(s) are from https://github.com/dotnet/fxdac -->
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
<PackageReference Include="System.IO.Packaging" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.IO.Packaging" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="11.0.0-preview.4.26230.115" />
<!-- the following package(s) are from https://github.com/dotnet/wcf -->
<PackageReference Include="System.ServiceModel.Http" Version="10.0.652802" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="10.0.652802" />
<PackageReference Include="System.ServiceModel.Primitives" Version="10.0.652802" />
<!-- the source could not be found for the following package(s) -->
<PackageReference Include="Microsoft.Windows.Compatibility" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="11.0.0-preview.4.26230.115" />
</ItemGroup>

<!--
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj" />
<ProjectReference Include="..\Microsoft.WSMan.Runtime\Microsoft.WSMan.Runtime.csproj" />
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
<PackageReference Include="System.ServiceProcess.ServiceController" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="11.0.0-preview.4.26230.115" />
</ItemGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
<!-- the Application Insights package -->
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.23.0" />
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
<PackageReference Include="Microsoft.Win32.Registry.AccessControl" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.DirectoryServices" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.Management" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="System.Security.Permissions" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="Microsoft.Win32.Registry.AccessControl" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="System.DirectoryServices" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="System.Management" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="System.Security.Permissions" Version="11.0.0-preview.4.26230.115" />
<!-- the following package(s) are from the powershell org -->
<PackageReference Include="Microsoft.Management.Infrastructure" Version="3.0.0" />
<PackageReference Include="Microsoft.PowerShell.Native" Version="700.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion test/tools/TestService/TestService.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion test/tools/WebListener/WebListener.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="11.0.0-preview.3.26207.106" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="11.0.0-preview.4.26230.115" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion test/xUnit/xUnit.tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="XunitXml.TestLogger" Version="8.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading
Loading