Update powershell to depend on latest dotnet core packages (preview1-24530-04 from 9/30/2016)

This commit is contained in:
Dongbo Wang 2016-10-12 10:24:08 -07:00 committed by Mike Richmond
parent 9e47ad4733
commit 2e402cfef1
29 changed files with 528 additions and 528 deletions

View file

@ -2376,7 +2376,12 @@ function Start-CrossGen {
throw "crossgen is not available for this platform"
}
$crossGenPath = Get-ChildItem $crossGenSearchPath -Recurse | ? { $_.FullName -match $crossGenRuntime } | select -First 1 | % { $_.FullName }
# Get the CrossGen.exe for the correct runtime with the latest version
$crossGenPath = Get-ChildItem $crossGenSearchPath -Recurse | `
Where-Object { $_.FullName -match $crossGenRuntime } | `
Sort-Object -Property FullName -Descending | `
Select-Object -First 1 | `
ForEach-Object { $_.FullName }
if (-not $crossGenPath) {
throw "Unable to find latest version of crossgen.exe. 'Please run Start-PSBuild -Clean' first, and then try again."
}

View file

@ -11,8 +11,8 @@
"netstandard1.3": {
"imports": [ "net40" ],
"dependencies": {
"Microsoft.NETCore": "5.0.1",
"Microsoft.NETCore.Portable.Compatibility": "1.0.1"
"Microsoft.NETCore": "5.0.3-preview1-001100-00",
"Microsoft.NETCore.Portable.Compatibility": "1.0.3-beta-24514-00"
}
}
}

View file

@ -7,6 +7,7 @@
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="powershell-core" value="https://powershell.myget.org/F/powershell-core/api/v3/index.json" />
</packageSources>
</configuration>

View file

@ -1,52 +1,52 @@
{
"name": "Microsoft.PackageManagement.ArchiverProviders",
"version": "1.0.0-*",
"name": "Microsoft.PackageManagement.ArchiverProviders",
"version": "1.0.0-*",
"buildOptions": {
"warningsAsErrors": true
},
"buildOptions": {
"warningsAsErrors": true
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*"
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
}
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
}
},
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR"],
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR"],
"debugType": "portable"
}
}
}
}
}
}
}

View file

@ -1,55 +1,55 @@
{
"name": "Microsoft.PackageManagement.CoreProviders",
"version": "1.0.0-*",
"name": "Microsoft.PackageManagement.CoreProviders",
"version": "1.0.0-*",
"buildOptions": {
"warningsAsErrors": true
},
"buildOptions": {
"warningsAsErrors": true
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*"
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
}
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
}
},
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR", "PORTABLE"],
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR", "PORTABLE"],
"debugType": "portable",
"compile": {
"exclude": [ "ProgramsProvider.cs"]
}
}
}
}
"compile": {
"exclude": [ "ProgramsProvider.cs"]
}
}
}
}
}

View file

@ -1,52 +1,52 @@
{
"name": "Microsoft.PackageManagement.MetaProvider.PowerShell",
"version": "1.0.0-*",
"name": "Microsoft.PackageManagement.MetaProvider.PowerShell",
"version": "1.0.0-*",
"buildOptions": {
"warningsAsErrors": true
},
"buildOptions": {
"warningsAsErrors": true
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*"
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
}
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
}
},
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR"],
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR"],
"debugType": "portable"
}
}
}
}
}
}
}

View file

@ -1,70 +1,70 @@
{
"name": "Microsoft.PackageManagement.NuGetProvider",
"version": "1.0.0-*",
"name": "Microsoft.PackageManagement.NuGetProvider",
"version": "1.0.0-*",
"buildOptions": {
"warningsAsErrors": true
},
"buildOptions": {
"warningsAsErrors": true
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"dependencies": {
"System.Management.Automation": "1.0.0-*"
},
"dependencies": {
"System.Management.Automation": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
},
"buildOptions": {
"compile": {
"include": [
"../Microsoft.PackageManagement/Providers/Inbox/Common/Extensions/Extensions.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Utility/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Version/*.cs"
]
}
}
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
},
"buildOptions": {
"compile": {
"include": [
"../Microsoft.PackageManagement/Providers/Inbox/Common/Extensions/Extensions.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Utility/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Version/*.cs"
]
}
}
},
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR"],
"debugType": "portable",
"compile": {
"include": [
"../Microsoft.PackageManagement/Providers/Inbox/Common/Extensions/Extensions.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Utility/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Version/*.cs"
]
}
},
"dependencies": {
"System.Linq.Parallel": "4.0.1"
}
}
}
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR"],
"debugType": "portable",
"compile": {
"include": [
"../Microsoft.PackageManagement/Providers/Inbox/Common/Extensions/Extensions.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Utility/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Version/*.cs"
]
}
},
"dependencies": {
"System.Linq.Parallel": "4.3.0-preview1-24530-04"
}
}
}
}

View file

@ -1,71 +1,71 @@
{
"name": "Microsoft.PackageManagement.PackageSourceListProvider",
"version": "1.0.0-*",
"name": "Microsoft.PackageManagement.PackageSourceListProvider",
"version": "1.0.0-*",
"buildOptions": {
"warningsAsErrors": true
},
"buildOptions": {
"warningsAsErrors": true
},
"configurations": {
"Linux": {
"buildOptions": {
"define": [ "UNIX" ]
}
}
},
"configurations": {
"Linux": {
"buildOptions": {
"define": [ "UNIX" ]
}
}
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*"
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
},
"buildOptions": {
"compile": {
"include": [
"../Microsoft.PackageManagement/Providers/Inbox/Common/Extensions/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Utility/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Version/*.cs"
]
}
}
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
},
"buildOptions": {
"compile": {
"include": [
"../Microsoft.PackageManagement/Providers/Inbox/Common/Extensions/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Utility/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Version/*.cs"
]
}
}
},
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR"],
"debugType": "portable",
"compile": {
"include": [
"../Microsoft.PackageManagement/Providers/Inbox/Common/Extensions/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Utility/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Version/*.cs"
]
}
},
"dependencies": {
"System.Linq.Parallel": "4.0.1"
}
}
}
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR"],
"debugType": "portable",
"compile": {
"include": [
"../Microsoft.PackageManagement/Providers/Inbox/Common/Extensions/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Utility/*.cs",
"../Microsoft.PackageManagement/Providers/Inbox/Common/Version/*.cs"
]
}
},
"dependencies": {
"System.Linq.Parallel": "4.3.0-preview1-24530-04"
}
}
}
}

View file

@ -1,59 +1,59 @@
{
"name": "Microsoft.PackageManagement",
"version": "1.0.0-*",
"name": "Microsoft.PackageManagement",
"version": "1.0.0-*",
"buildOptions": {
"warningsAsErrors": true
},
"configurations": {
"Linux": {
"buildOptions": {
"define": [ "UNIX" ]
}
}
},
"dependencies": {
"System.Management.Automation": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
},
"buildOptions": {
"compile": {
"exclude": [ "Providers/Inbox/Common/*" ]
}
}
"buildOptions": {
"warningsAsErrors": true
},
"netstandard1.6": {
"imports": [ "dnxcore50" ],
"buildOptions": {
"define": [ "CORECLR", "PORTABLE" ],
"debugType": "portable",
"compile": {
"exclude": [ "Providers/Inbox/Common/*" ]
}
}
"configurations": {
"Linux": {
"buildOptions": {
"define": [ "UNIX" ]
}
}
},
"dependencies": {
"System.Management.Automation": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
},
"buildOptions": {
"compile": {
"exclude": [ "Providers/Inbox/Common/*" ]
}
}
},
"netstandard1.6": {
"imports": [ "dnxcore50" ],
"buildOptions": {
"define": [ "CORECLR", "PORTABLE" ],
"debugType": "portable",
"compile": {
"exclude": [ "Providers/Inbox/Common/*" ]
}
}
}
}
}
}

View file

@ -78,9 +78,9 @@
}
},
"dependencies": {
"System.ServiceProcess.ServiceController": "4.1.0",
"System.Net.NameResolution": "4.0.0",
"System.Net.Ping": "4.0.0"
"System.ServiceProcess.ServiceController": "4.3.0-preview1-24530-04",
"System.Net.NameResolution": "4.3.0-preview1-24530-04",
"System.Net.Ping": "4.3.0-preview1-24530-04"
}
},
"net451": {

View file

@ -85,9 +85,8 @@
},
"imports": [ "dnxcore50", "portable-net45+win8" ],
"dependencies": {
"Microsoft.CodeAnalysis.CSharp": "1.1.1",
"Newtonsoft.Json": "9.0.1",
"System.Diagnostics.TextWriterTraceListener": "4.0.0"
"Microsoft.CodeAnalysis.CSharp": "1.3.1-beta1-20160616-03",
"System.Diagnostics.TextWriterTraceListener": "4.3.0-preview1-24530-04"
}
},
"net451": {
@ -95,7 +94,7 @@
"System.Drawing": "",
"System.Web": "",
"System.Web.Extensions": "",
"Microsoft.JScript": "",
"Microsoft.JScript": ""
},
"dependencies": {

View file

@ -46,9 +46,8 @@
}
},
"dependencies": {
"Newtonsoft.Json": "9.0.1",
"System.Xml.XDocument": "4.0.11",
"System.IO.MemoryMappedFiles": "4.0.0"
"System.Xml.XDocument": "4.3.0-preview1-24530-04",
"System.IO.MemoryMappedFiles": "4.3.0-preview1-24530-04"
}
},
"net451": {

View file

@ -121,7 +121,7 @@ namespace System.Management.Automation
else
{
var tempSet = new HashSet<string>(_coreClrTypeCatalog.Values, StringComparer.OrdinalIgnoreCase);
_tpaSet = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
_tpaSet = new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "Microsoft.PowerShell.CoreCLR.AssemblyLoadContext" };
foreach (string tpa in tempSet)
{
string shortName = tpa.Substring(0, tpa.IndexOf(','));
@ -812,4 +812,5 @@ namespace System.Management.Automation
}
}
#endif
#endif

View file

@ -26,11 +26,11 @@
"debugType": "portable"
},
"dependencies": {
"NETStandard.Library": "1.6.0",
"System.Runtime.Loader": "4.0.0",
"System.Reflection.Metadata": "1.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0"
"NETStandard.Library": "1.6.1-preview1-24530-04",
"System.Runtime.Loader": "4.3.0-preview1-24530-04",
"System.Reflection.Metadata": "1.4.1-preview1-24530-04",
"System.Reflection.TypeExtensions": "4.3.0-preview1-24530-04",
"System.Security.Cryptography.Algorithms": "4.3.0-preview1-24530-04"
}
}
}

View file

@ -20,11 +20,11 @@
"debugType": "portable"
},
"dependencies": {
"NETStandard.Library": "1.6.0",
"System.Security.Principal": "4.0.1",
"System.Security.Principal.Windows": "4.0.0",
"System.Diagnostics.TraceSource": "4.0.0",
"System.Security.SecureString": "4.0.0"
"NETStandard.Library": "1.6.1-preview1-24530-04",
"System.Security.Principal": "4.3.0-preview1-24530-04",
"System.Security.Principal.Windows": "4.3.0-preview1-24530-04",
"System.Diagnostics.TraceSource": "4.3.0-preview1-24530-04",
"System.Security.SecureString": "4.3.0-preview1-24530-04"
}
}
}

View file

@ -22,7 +22,7 @@
"debugType": "portable"
},
"dependencies": {
"System.Net.NameResolution": "4.0.0"
"System.Net.NameResolution": "4.3.0-preview1-24530-04"
}
},
"net451": {

View file

@ -1,60 +1,60 @@
{
"name": "Microsoft.PowerShell.PackageManagement",
"version": "1.0.0-*",
"name": "Microsoft.PowerShell.PackageManagement",
"version": "1.0.0-*",
"buildOptions": {
"warningsAsErrors": true
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*",
"Microsoft.PackageManagement.NuGetProvider": "1.0.0-*",
"Microsoft.PackageManagement.CoreProviders": "1.0.0-*",
"Microsoft.PackageManagement.MetaProvider.PowerShell": "1.0.0-*",
"Microsoft.PackageManagement.ArchiverProviders": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
},
"dependencies": {
"Microsoft.PackageManagement.MsiProvider": "1.0.0-*",
"Microsoft.PackageManagement.MsuProvider": "1.0.0-*"
}
"buildOptions": {
"warningsAsErrors": true
},
"netstandard1.6": {
"imports": [ "dnxcore50" ],
"buildOptions": {
"define": ["CORECLR"],
"debugType": "portable"
}
}
}
"configurations": {
"Linux": {
"buildOptions": {
"define": ["UNIX"]
}
}
},
"dependencies": {
"System.Management.Automation": "1.0.0-*",
"Microsoft.PackageManagement": "1.0.0-*",
"Microsoft.PackageManagement.NuGetProvider": "1.0.0-*",
"Microsoft.PackageManagement.CoreProviders": "1.0.0-*",
"Microsoft.PackageManagement.MetaProvider.PowerShell": "1.0.0-*",
"Microsoft.PackageManagement.ArchiverProviders": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Runtime": "",
"System.Xml": "",
"System.Xml.Linq": "",
"System.Numerics": "",
"System.Data": "",
"System.DirectoryServices": "",
"System.Security": "",
"System.Transactions": "",
"System.Runtime.Serialization": "",
"System.Management": "",
"System.Configuration": "",
"System.Configuration.Install": "",
"System.Net": "",
"System.Net.Http": "",
"System.IO.Compression": "",
"System.IO.Compression.FileSystem": ""
},
"dependencies": {
"Microsoft.PackageManagement.MsiProvider": "1.0.0-*",
"Microsoft.PackageManagement.MsuProvider": "1.0.0-*"
}
},
"netstandard1.6": {
"imports": [ "dnxcore50" ],
"buildOptions": {
"define": ["CORECLR"],
"debugType": "portable"
}
}
}
}

View file

@ -16,89 +16,89 @@
"netstandard1.6": {
"imports": ["dnxcore50", "portable-net45+win8"],
"dependencies": {
"Microsoft.NETCore.Portable.Compatibility": "1.0.1",
"Microsoft.CSharp": "4.0.1",
"Microsoft.VisualBasic": "10.0.1",
"Microsoft.Win32.Registry" : "4.0.0",
"Microsoft.Win32.Registry.AccessControl" : "4.0.0",
"NETStandard.Library": "1.6",
"System.Collections.Immutable" : "1.2.0",
"System.Collections.NonGeneric" : "4.0.1",
"System.Collections.Specialized" : "4.0.1",
"System.ComponentModel" : "4.0.1",
"System.ComponentModel.Annotations" : "4.1.0",
"System.ComponentModel.EventBasedAsync" : "4.0.11",
"System.ComponentModel.Primitives" : "4.1.0",
"System.ComponentModel.TypeConverter" : "4.1.0",
"System.Data.Common" : "4.1.0",
"System.Data.SqlClient" : "4.1.0",
"System.Diagnostics.Contracts" : "4.0.1",
"System.Diagnostics.DiagnosticSource" : "4.0.0",
"System.Diagnostics.FileVersionInfo" : "4.0.0",
"System.Diagnostics.Process" : "4.1.0",
"System.Diagnostics.StackTrace" : "4.0.1",
"System.Diagnostics.TextWriterTraceListener" : "4.0.0",
"System.Diagnostics.TraceSource" : "4.0.0",
"System.Dynamic.Runtime" : "4.0.11",
"System.Globalization.Extensions" : "4.0.1",
"System.IO.FileSystem.AccessControl" : "4.0.0",
"System.IO.FileSystem.DriveInfo" : "4.0.0",
"System.IO.FileSystem.Watcher" : "4.0.0",
"System.IO.MemoryMappedFiles" : "4.0.0",
"System.IO.Packaging" : "4.0.0",
"System.IO.Pipes" : "4.0.0",
"System.IO.UnmanagedMemoryStream" : "4.0.1",
"System.Linq.Parallel" : "4.0.1",
"System.Linq.Queryable" : "4.0.1",
"System.Net.Http.WinHttpHandler" : "4.0.0",
"System.Net.NameResolution" : "4.0.0",
"System.Net.NetworkInformation" : "4.1.0",
"System.Net.Ping" : "4.0.0",
"System.Net.Requests" : "4.0.11",
"System.Net.Security" : "4.0.0",
"System.Net.WebHeaderCollection" : "4.0.1",
"System.Net.WebSockets" : "4.0.0",
"System.Net.WebSockets.Client" : "4.0.0",
"System.Numerics.Vectors" : "4.1.1",
"System.Reflection.DispatchProxy" : "4.0.1",
"System.Reflection.Emit" : "4.0.1",
"System.Reflection.Emit.ILGeneration" : "4.0.1",
"System.Reflection.Emit.Lightweight" : "4.0.1",
"System.Reflection.Metadata" : "1.3.0",
"System.Reflection.TypeExtensions" : "4.1.0",
"System.Resources.Reader" : "4.0.0",
"System.Runtime.CompilerServices.VisualC" : "4.0.0",
"System.Runtime.Serialization.Json" : "4.0.2",
"System.Runtime.Serialization.Primitives" : "4.1.1",
"System.Runtime.Serialization.Xml" : "4.1.1",
"System.Security.AccessControl" : "4.0.0",
"System.Security.Claims" : "4.0.1",
"System.Security.Cryptography.Cng" : "4.2.0",
"System.Security.Cryptography.Csp" : "4.0.0",
"System.Security.Cryptography.Pkcs" : "4.0.0",
"System.Security.Principal" : "4.0.1",
"System.Security.Principal.Windows" : "4.0.0",
"System.Security.SecureString" : "4.0.0",
"System.ServiceModel.Duplex" : "4.0.1",
"System.ServiceModel.Http" : "4.1.0",
"System.ServiceModel.NetTcp" : "4.1.0",
"System.ServiceModel.Primitives" : "4.1.0",
"System.ServiceModel.Security" : "4.0.1",
"System.ServiceProcess.ServiceController" : "4.1.0",
"System.Text.Encoding.CodePages" : "4.0.1",
"System.Text.Encodings.Web" : "4.0.0",
"System.Threading.AccessControl" : "4.0.0",
"System.Threading.Overlapped" : "4.0.1",
"System.Threading.Tasks.Dataflow" : "4.6.0",
"System.Threading.Tasks.Parallel" : "4.0.1",
"System.Threading.Thread" : "4.0.0",
"System.Threading.ThreadPool" : "4.0.10",
"System.Xml.XmlDocument" : "4.0.1",
"System.Xml.XmlSerializer" : "4.0.11",
"System.Xml.XPath" : "4.0.1",
"System.Xml.XPath.XDocument" : "4.0.1",
"System.Xml.XPath.XmlDocument" : "4.0.1",
"System.Private.ServiceModel": "4.1.0"
"Microsoft.NETCore.Portable.Compatibility": "1.0.3-beta-24514-00",
"Microsoft.CSharp": "4.3.0-preview1-24530-04",
"Microsoft.VisualBasic": "10.1.0-preview1-24530-04",
"Microsoft.Win32.Registry" : "4.3.0-preview1-24530-04",
"Microsoft.Win32.Registry.AccessControl" : "4.3.0-preview1-24530-04",
"NETStandard.Library": "1.6.1-preview1-24530-04",
"System.Collections.Immutable" : "1.3.0-preview1-24530-04",
"System.Collections.NonGeneric" : "4.3.0-preview1-24530-04",
"System.Collections.Specialized" : "4.3.0-preview1-24530-04",
"System.ComponentModel" : "4.3.0-preview1-24530-04",
"System.ComponentModel.Annotations" : "4.3.0-preview1-24530-04",
"System.ComponentModel.EventBasedAsync" : "4.3.0-preview1-24530-04",
"System.ComponentModel.Primitives" : "4.3.0-preview1-24530-04",
"System.ComponentModel.TypeConverter" : "4.3.0-preview1-24530-04",
"System.Data.Common" : "4.3.0-preview1-24530-04",
"System.Data.SqlClient" : "4.3.0-preview1-24530-04",
"System.Diagnostics.Contracts" : "4.3.0-preview1-24530-04",
"System.Diagnostics.DiagnosticSource" : "4.3.0-preview1-24530-04",
"System.Diagnostics.FileVersionInfo" : "4.3.0-preview1-24530-04",
"System.Diagnostics.Process" : "4.3.0-preview1-24530-04",
"System.Diagnostics.StackTrace" : "4.3.0-preview1-24530-04",
"System.Diagnostics.TextWriterTraceListener" : "4.3.0-preview1-24530-04",
"System.Diagnostics.TraceSource" : "4.3.0-preview1-24530-04",
"System.Dynamic.Runtime" : "4.3.0-preview1-24530-04",
"System.Globalization.Extensions" : "4.3.0-preview1-24530-04",
"System.IO.FileSystem.AccessControl" : "4.3.0-preview1-24530-04",
"System.IO.FileSystem.DriveInfo" : "4.3.0-preview1-24530-04",
"System.IO.FileSystem.Watcher" : "4.3.0-preview1-24530-04",
"System.IO.MemoryMappedFiles" : "4.3.0-preview1-24530-04",
"System.IO.Packaging" : "4.3.0-preview1-24530-04",
"System.IO.Pipes" : "4.3.0-preview1-24530-04",
"System.IO.UnmanagedMemoryStream" : "4.3.0-preview1-24530-04",
"System.Linq.Parallel" : "4.3.0-preview1-24530-04",
"System.Linq.Queryable" : "4.3.0-preview1-24530-04",
"System.Net.Http.WinHttpHandler" : "4.3.0-preview1-24530-04",
"System.Net.NameResolution" : "4.3.0-preview1-24530-04",
"System.Net.NetworkInformation" : "4.3.0-preview1-24530-04",
"System.Net.Ping" : "4.3.0-preview1-24530-04",
"System.Net.Requests" : "4.3.0-preview1-24530-04",
"System.Net.Security" : "4.3.0-preview1-24530-04",
"System.Net.WebHeaderCollection" : "4.3.0-preview1-24530-04",
"System.Net.WebSockets" : "4.3.0-preview1-24530-04",
"System.Net.WebSockets.Client" : "4.3.0-preview1-24530-04",
"System.Numerics.Vectors" : "4.3.0-preview1-24530-04",
"System.Reflection.DispatchProxy" : "4.3.0-preview1-24530-04",
"System.Reflection.Emit" : "4.3.0-preview1-24530-04",
"System.Reflection.Emit.ILGeneration" : "4.3.0-preview1-24530-04",
"System.Reflection.Emit.Lightweight" : "4.3.0-preview1-24530-04",
"System.Reflection.Metadata" : "1.4.1-preview1-24530-04",
"System.Reflection.TypeExtensions" : "4.3.0-preview1-24530-04",
"System.Resources.Reader" : "4.3.0-preview1-24530-04",
"System.Runtime.CompilerServices.VisualC" : "4.3.0-preview1-24530-04",
"System.Runtime.Serialization.Json" : "4.3.0-preview1-24530-04",
"System.Runtime.Serialization.Primitives" : "4.3.0-preview1-24530-04",
"System.Runtime.Serialization.Xml" : "4.3.0-preview1-24530-04",
"System.Security.AccessControl" : "4.3.0-preview1-24530-04",
"System.Security.Claims" : "4.3.0-preview1-24530-04",
"System.Security.Cryptography.Cng" : "4.3.0-preview1-24530-04",
"System.Security.Cryptography.Csp" : "4.3.0-preview1-24530-04",
"System.Security.Cryptography.Pkcs" : "4.3.0-preview1-24530-04",
"System.Security.Principal" : "4.3.0-preview1-24530-04",
"System.Security.Principal.Windows" : "4.3.0-preview1-24530-04",
"System.Security.SecureString" : "4.3.0-preview1-24530-04",
"System.ServiceModel.Duplex" : "4.3.0-preview1-24611-01",
"System.ServiceModel.Http" : "4.3.0-preview1-24611-01",
"System.ServiceModel.NetTcp" : "4.3.0-preview1-24611-01",
"System.ServiceModel.Primitives" : "4.3.0-preview1-24611-01",
"System.ServiceModel.Security" : "4.3.0-preview1-24611-01",
"System.ServiceProcess.ServiceController" : "4.3.0-preview1-24530-04",
"System.Text.Encoding.CodePages" : "4.3.0-preview1-24530-04",
"System.Text.Encodings.Web" : "4.3.0-preview1-24530-04",
"System.Threading.AccessControl" : "4.3.0-preview1-24530-04",
"System.Threading.Overlapped" : "4.3.0-preview1-24530-04",
"System.Threading.Tasks.Dataflow" : "4.7.0-preview1-24530-04",
"System.Threading.Tasks.Parallel" : "4.3.0-preview1-24530-04",
"System.Threading.Thread" : "4.3.0-preview1-24530-04",
"System.Threading.ThreadPool" : "4.3.0-preview1-24530-04",
"System.Xml.XmlDocument" : "4.3.0-preview1-24530-04",
"System.Xml.XmlSerializer" : "4.3.0-preview1-24530-04",
"System.Xml.XPath" : "4.3.0-preview1-24530-04",
"System.Xml.XPath.XDocument" : "4.3.0-preview1-24530-04",
"System.Xml.XPath.XmlDocument" : "4.3.0-preview1-24530-04",
"System.Private.ServiceModel": "4.3.0-preview1-24611-01"
}
}
}

View file

@ -25,9 +25,6 @@
"WsManSnapin.cs"
]
}
},
"dependencies": {
"NETStandard.Library": "1.6.0",
}
},
"net451": {

View file

@ -17,7 +17,7 @@
"debugType": "portable"
},
"dependencies": {
"NETStandard.Library": "1.6.0",
"NETStandard.Library": "1.6.1-preview1-24530-04"
}
},
"net451": {

View file

@ -10,8 +10,8 @@
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": "1.0.0",
"System.Xml.XDocument": "4.0.11"
"Microsoft.NETCore.App": "1.1.0-preview1-001100-00",
"System.Xml.XDocument": "4.3.0-preview1-24530-04"
}
}
},

View file

@ -143,37 +143,37 @@
"Microsoft.PowerShell.CoreCLR.AssemblyLoadContext": "1.0.0-*",
"Microsoft.PowerShell.CoreCLR.Eventing": "1.0.0-*",
"Microsoft.CSharp": "4.0.1",
"Microsoft.Win32.Registry.AccessControl": "4.0.0",
"Microsoft.CSharp": "4.3.0-preview1-24530-04",
"Microsoft.Win32.Registry.AccessControl": "4.3.0-preview1-24530-04",
"Newtonsoft.Json": "9.0.1",
"System.Collections.Specialized": "4.0.1",
"System.Collections.NonGeneric": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.ComponentModel.TypeConverter": "4.1.0",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.FileVersionInfo": "4.0.0",
"System.Diagnostics.Process": "4.1.0",
"System.Diagnostics.StackTrace": "4.0.1",
"System.Diagnostics.TraceSource": "4.0.0",
"System.Dynamic.Runtime": "4.0.11",
"System.IO.FileSystem.AccessControl": "4.0.0",
"System.IO.FileSystem.DriveInfo": "4.0.0",
"System.IO.FileSystem.Watcher": "4.0.0",
"System.IO.Pipes": "4.0.0",
"System.Linq.Expressions": "4.1.0",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Security.AccessControl": "4.0.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Threading.Thread": "4.0.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Xml.XPath.XmlDocument": "4.0.1",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
"System.Collections.Specialized": "4.3.0-preview1-24530-04",
"System.Collections.NonGeneric": "4.3.0-preview1-24530-04",
"System.ComponentModel.EventBasedAsync": "4.3.0-preview1-24530-04",
"System.ComponentModel.TypeConverter": "4.3.0-preview1-24530-04",
"System.Data.Common": "4.3.0-preview1-24530-04",
"System.Diagnostics.Contracts": "4.3.0-preview1-24530-04",
"System.Diagnostics.FileVersionInfo": "4.3.0-preview1-24530-04",
"System.Diagnostics.Process": "4.3.0-preview1-24530-04",
"System.Diagnostics.StackTrace": "4.3.0-preview1-24530-04",
"System.Diagnostics.TraceSource": "4.3.0-preview1-24530-04",
"System.Dynamic.Runtime": "4.3.0-preview1-24530-04",
"System.IO.FileSystem.AccessControl": "4.3.0-preview1-24530-04",
"System.IO.FileSystem.DriveInfo": "4.3.0-preview1-24530-04",
"System.IO.FileSystem.Watcher": "4.3.0-preview1-24530-04",
"System.IO.Pipes": "4.3.0-preview1-24530-04",
"System.Linq.Expressions": "4.3.0-preview1-24530-04",
"System.Net.Http": "4.3.0-preview1-24530-04",
"System.Net.NetworkInformation": "4.3.0-preview1-24530-04",
"System.Reflection.Emit": "4.3.0-preview1-24530-04",
"System.Reflection.Emit.Lightweight": "4.3.0-preview1-24530-04",
"System.Security.AccessControl": "4.3.0-preview1-24530-04",
"System.Security.Cryptography.Algorithms": "4.3.0-preview1-24530-04",
"System.Security.Cryptography.X509Certificates": "4.3.0-preview1-24530-04",
"System.Threading.Thread": "4.3.0-preview1-24530-04",
"System.Threading.Tasks.Parallel": "4.3.0-preview1-24530-04",
"System.Xml.XPath.XmlDocument": "4.3.0-preview1-24530-04",
"System.Xml.XmlDocument": "4.3.0-preview1-24530-04",
"System.Xml.XmlSerializer": "4.3.0-preview1-24530-04"
}
},
"net451": {

View file

@ -11,9 +11,9 @@
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": "1.0.0",
"System.Reflection.Metadata": "1.3.0",
"System.Collections.Immutable": "1.2.0"
"Microsoft.NETCore.App": "1.1.0-preview1-001100-00",
"System.Reflection.Metadata": "1.4.1-preview1-24530-04",
"System.Collections.Immutable": "1.3.0-preview1-24530-04"
}
}
},

View file

@ -6,7 +6,7 @@
},
"dependencies": {
"Microsoft.NETCore.App": "1.0.0",
"Microsoft.NETCore.App": "1.1.0-preview1-001100-00",
"Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121",
"Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121"
},

View file

@ -69,8 +69,7 @@
"debugType": "portable"
},
"dependencies": {
"Microsoft.NETCore.App": "1.0.0",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.4"
"Microsoft.NETCore.App": "1.1.0-preview1-001100-00"
}
}
},

View file

@ -73,8 +73,7 @@
"debugType": "portable"
},
"dependencies": {
"Microsoft.NETCore.App": "1.0.0",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.4"
"Microsoft.NETCore.App": "1.1.0-preview1-001100-00"
}
}
},
@ -82,6 +81,6 @@
"runtimes": {
"win7-x64": { },
"win81-x64": { },
"win10-x64": { },
"win10-x64": { }
}
}

View file

@ -16,7 +16,7 @@
"netcoreapp1.0": {
"imports": [ "dnxcore50", "portable-net45+win8" ],
"dependencies": {
"Microsoft.NETCore.App": "1.0.0"
"Microsoft.NETCore.App": "1.1.0-preview1-001100-00"
}
}
},

View file

@ -17,8 +17,8 @@
"netcoreapp1.0": {
"imports": [ "dnxcore50", "portable-net45+win8" ],
"dependencies": {
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-build10025"
"xunit": "2.2.0-beta3-build3402",
"dotnet-test-xunit": "2.2.0-preview2-build1029"
}
}
},

View file

@ -10,7 +10,7 @@
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": "1.0.0"
"Microsoft.NETCore.App": "1.1.0-preview1-001100-00"
}
}
},