| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,5 +11,18 @@ | |||
| 11 | 11 | "AdvisoryUrls": [], | |
| 12 | 12 | "Justification": "Updated .NET SDK. Building with the latest SDK is required.", | |
| 13 | 13 | "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" | ||
| 14 | 27 | } | |
| 15 | 28 | ] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ | |||
| 4 | 4 | "quality": "daily", | |
| 5 | 5 | "qualityFallback": "preview", | |
| 6 | 6 | "packageVersionPattern": "9.0.0-preview.6", | |
| 7 | - "sdkImageVersion": "11.0.100-preview.3.26207.106", | ||
| 7 | + "sdkImageVersion": "11.0.100-preview.4.26230.115", | ||
| 8 | 8 | "nextChannel": "9.0.0-preview.7", | |
| 9 | 9 | "azureFeed": "", | |
| 10 | 10 | "sdkImageOverride": "" | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "sdk": { | |
| 3 | - "version": "11.0.100-preview.3.26207.106" | ||
| 3 | + "version": "11.0.100-preview.4.26230.115" | ||
| 4 | 4 | } | |
| 5 | 5 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,7 +8,7 @@ | |||
| 8 | 8 | ||
| 9 | 9 | <ItemGroup> | |
| 10 | 10 | <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" /> | ||
| 12 | 12 | </ItemGroup> | |
| 13 | 13 | ||
| 14 | 14 | <PropertyGroup> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -47,7 +47,7 @@ | |||
| 47 | 47 | ||
| 48 | 48 | <ItemGroup> | |
| 49 | 49 | <!-- 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" /> | ||
| 51 | 51 | </ItemGroup> | |
| 52 | 52 | ||
| 53 | 53 | </Project> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -9,8 +9,6 @@ | |||
| 9 | 9 | ||
| 10 | 10 | namespace Microsoft.PowerShell.Commands | |
| 11 | 11 | { | |
| 12 | - using Extensions; | ||
| 13 | - | ||
| 14 | 12 | internal static class CIMHelper | |
| 15 | 13 | { | |
| 16 | 14 | internal static class ClassNames | |
@@ -237,11 +235,6 @@ internal static string EscapePath(string path) | |||
| 237 | 235 | return string.Join(@"\\", path.Split('\\')); | |
| 238 | 236 | } | |
| 239 | 237 | } | |
| 240 | - } | ||
| 241 | - | ||
| 242 | - namespace Extensions | ||
| 243 | - { | ||
| 244 | - using Microsoft.PowerShell.Commands; | ||
| 245 | 238 | ||
| 246 | 239 | internal static class CIMExtensions | |
| 247 | 240 | { | |
@@ -317,12 +310,12 @@ internal static CimInstance QueryFirstInstance(this CimSession session, string q | |||
| 317 | 310 | ||
| 318 | 311 | internal static T[] GetAll<T>(this CimSession session, string wmiClassName) where T : class, new() | |
| 319 | 312 | { | |
| 320 | - return Microsoft.PowerShell.Commands.CIMHelper.GetAll<T>(session, wmiClassName); | ||
| 313 | + return CIMHelper.GetAll<T>(session, wmiClassName); | ||
| 321 | 314 | } | |
| 322 | 315 | ||
| 323 | 316 | internal static T[] GetAll<T>(this CimSession session, string wmiNamespace, string wmiClassName) where T : class, new() | |
| 324 | 317 | { | |
| 325 | - return Microsoft.PowerShell.Commands.CIMHelper.GetAll<T>(session, wmiNamespace, wmiClassName); | ||
| 318 | + return CIMHelper.GetAll<T>(session, wmiNamespace, wmiClassName); | ||
| 326 | 319 | } | |
| 327 | 320 | } | |
| 328 | 321 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,8 +17,6 @@ | |||
| 17 | 17 | ||
| 18 | 18 | namespace Microsoft.PowerShell.Commands | |
| 19 | 19 | { | |
| 20 | - using Extensions; | ||
| 21 | - | ||
| 22 | 20 | #region GetComputerInfoCommand cmdlet implementation | |
| 23 | 21 | /// <summary> | |
| 24 | 22 | /// The Get-ComputerInfo cmdlet gathers and reports information | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,7 +8,7 @@ | |||
| 8 | 8 | ||
| 9 | 9 | <ItemGroup> | |
| 10 | 10 | <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" /> | ||
| 12 | 12 | <PackageReference Include="Microsoft.PowerShell.MarkdownRender" Version="7.2.1" /> | |
| 13 | 13 | </ItemGroup> | |
| 14 | 14 | ||
@@ -33,7 +33,7 @@ | |||
| 33 | 33 | ||
| 34 | 34 | <ItemGroup> | |
| 35 | 35 | <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" /> | ||
| 37 | 37 | <PackageReference Include="JsonSchema.Net" Version="7.4.0" /> | |
| 38 | 38 | </ItemGroup> | |
| 39 | 39 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,7 +8,7 @@ | |||
| 8 | 8 | ||
| 9 | 9 | <ItemGroup> | |
| 10 | 10 | <!-- 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" /> | ||
| 12 | 12 | </ItemGroup> | |
| 13 | 13 | ||
| 14 | 14 | </Project> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,19 +16,19 @@ | |||
| 16 | 16 | ||
| 17 | 17 | <ItemGroup> | |
| 18 | 18 | <!-- 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" /> | ||
| 21 | 21 | <!-- the following package(s) are from https://github.com/dotnet/fxdac --> | |
| 22 | 22 | <PackageReference Include="System.Data.SqlClient" Version="4.9.1" /> | |
| 23 | 23 | <!-- 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" /> | ||
| 26 | 26 | <!-- the following package(s) are from https://github.com/dotnet/wcf --> | |
| 27 | 27 | <PackageReference Include="System.ServiceModel.Http" Version="10.0.652802" /> | |
| 28 | 28 | <PackageReference Include="System.ServiceModel.NetTcp" Version="10.0.652802" /> | |
| 29 | 29 | <PackageReference Include="System.ServiceModel.Primitives" Version="10.0.652802" /> | |
| 30 | 30 | <!-- 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" /> | ||
| 32 | 32 | </ItemGroup> | |
| 33 | 33 | ||
| 34 | 34 | <!-- | |
| Back | FazBrowse Home | New Git URL |
0 commit comments