-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Update .NET to version 6.0.100-preview.2.21155.3
#15007
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "sdk": { | ||
| "version": "6.0.100-preview.1.21103.13" | ||
| "version": "6.0.100-preview.2.21155.3" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,16 +16,16 @@ | |
| <!-- the Application Insights package --> | ||
| <PackageReference Include="Microsoft.ApplicationInsights" Version="2.17.0" /> | ||
| <!-- the following package(s) are from https://github.com/dotnet/corefx --> | ||
| <PackageReference Include="Microsoft.Win32.Registry.AccessControl" Version="6.0.0-preview.1.21102.12" /> | ||
| <PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0-preview.1.21102.12" /> | ||
| <PackageReference Include="System.DirectoryServices" Version="6.0.0-preview.1.21102.12" /> | ||
| <PackageReference Include="System.IO.FileSystem.AccessControl" Version="6.0.0-preview.1.21102.12" /> | ||
| <PackageReference Include="System.Management" Version="6.0.0-preview.1.21102.12" /> | ||
| <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0-preview.1.21102.12" /> | ||
| <PackageReference Include="System.Security.AccessControl" Version="6.0.0-preview.1.21102.12" /> | ||
| <PackageReference Include="System.Security.Cryptography.Pkcs" Version="5.0.1" /> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm curios why
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess not all packages was updated in .Net Runtime for Preview.1. There are another packages like this.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems we missed updating a couple of packages for preview 1. Should not be a problem this release though. |
||
| <PackageReference Include="System.Security.Permissions" Version="6.0.0-preview.1.21102.12" /> | ||
| <PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0-preview.1.21102.12" /> | ||
| <PackageReference Include="Microsoft.Win32.Registry.AccessControl" Version="6.0.0-preview.2.21154.6" /> | ||
| <PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0-preview.2.21154.6" /> | ||
| <PackageReference Include="System.DirectoryServices" Version="6.0.0-preview.2.21154.6" /> | ||
| <PackageReference Include="System.IO.FileSystem.AccessControl" Version="6.0.0-preview.2.21154.6" /> | ||
| <PackageReference Include="System.Management" Version="6.0.0-preview.2.21154.6" /> | ||
| <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0-preview.2.21154.6" /> | ||
| <PackageReference Include="System.Security.AccessControl" Version="6.0.0-preview.2.21154.6" /> | ||
| <PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.0-preview.2.21154.6" /> | ||
| <PackageReference Include="System.Security.Permissions" Version="6.0.0-preview.2.21154.6" /> | ||
| <PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0-preview.2.21154.6" /> | ||
| <!-- the following package(s) are from the powershell org --> | ||
| <PackageReference Include="Microsoft.Management.Infrastructure" Version="2.0.0" /> | ||
| <PackageReference Include="Microsoft.PowerShell.Native" Version="7.1.0" /> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5316,7 +5316,7 @@ private void RemoveFromRemoteRunspaceRunningList() | |
| private RemoteRunspacePoolInternal GetRemoteRunspacePoolInternal() | ||
| { | ||
| RunspacePool runspacePool = _rsConnection as RunspacePool; | ||
| return (runspacePool != null) ? (runspacePool.RemoteRunspacePoolInternal) : null; | ||
| return runspacePool?.RemoteRunspacePoolInternal; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This does not look like it is related to bumping .NET version. Probably better to move this to a separate PR.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is due to this issue i reported: dotnet/roslyn#51849 |
||
| } | ||
|
|
||
| #endregion | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just curious, why this
System.Speech.dllis mentioned here (looks like it was added by this PR)?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comes with the framework i guess
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be reported to .Net Runtime repo.