8000 Update .NET packages and CLI by andyleejordan · Pull Request #633 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content

Update .NET packages and CLI #633

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

Merged
merged 5 commits into from
Mar 7, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add Microsoft.NETCore.Unsupported.Platform.API package
This package contains the Windows runtime assemblies of packages that
are not actually supported on Linux. The assemblies exist in the Linux
runtime folder. While the code cannot be executed, this allows
PowerShell to use the Windows specific types in its function calls
without crashing (and allows compiling with these types in the first
place). This is *not* an ideal work-around, but we are waiting on a
better package from .NET that contains Linux runtime assemblies that
throw `PlatformNotSupported` exceptions on use.
  • Loading branch information
andyleejordan committed Mar 7, 2016
commit faec94ffcf10d1df6e0b44f99271cdaff5141d16
1 change: 1 addition & 0 deletions src/Microsoft.PowerShell.Linux.Host/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
},

"dependencies": {
"Microsoft.NETCore.Unsupported.Platform.API": "1.0.0-rc3-00001",
"Newtonsoft.Json": "8.0.2",
"System.Xml.XDocument": "4.0.11-rc3-23907",
"Microsoft.PowerShell.Commands.Management": "1.0.0-*",
Expand Down
1 change: 1 addition & 0 deletions src/TypeCatalogGen/Runtime/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"authors": [ "andschwa" ],

"dependencies": {
"Microsoft.NETCore.Unsupported.Platform.API": "1.0.0-rc3-00001",
"NETStandard.Library": "1.0.0-rc3-23907",
"System.Runtime.Loader": "4.0.0-rc3-23907",
"System.Security.SecureString": "1.0.0-*",
Expand Down
2 changes: 1 addition & 1 deletion src/windows-build
0