PowerShell/src/Microsoft.PackageManagement.CoreProviders/project.json
Andrew Schwartzmeyer 000206ac90 Bump framework to netstandard1.6
This is required to use the new .NET Core RTM packages, specifically the
`IEnumerable Append` API.
2016-06-27 15:30:47 -07:00

55 lines
1.1 KiB
JSON

{
"name": "Microsoft.PackageManagement.CoreProviders",
"version": "1.0.0-*",
"authors": ["quoct"],
"buildOptions": {
"warningsAsErrors": true
},
"configurations": {
"Linux": {
"buildOptions": {
"define": ["LINUX"]
}
}
},
"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": ""
}
},
"netstandard1.6": {
"imports": ["dnxcore50"],
"buildOptions": {
"define": ["CORECLR"],
"compile": {
"exclude": [ "ProgramsProvider.cs"]
}
}
}
}
}