[Fixes #3421] Made dotnet new templates generate portable pdbs

This commit is contained in:
Ajay Bhargav Baaskaran 2016-06-09 12:05:54 -07:00
parent cbf5f1ef65
commit 1d44105b4b
4 changed files with 28 additions and 21 deletions

View file

@ -1,6 +1,7 @@
{
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": true
},
"dependencies": {},

View file

@ -1,10 +1,13 @@
{
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable"
},
"dependencies": {
},
"frameworks": {
"netstandard1.6": {
"NETStandard.Library": "1.5.0-rc3-24126-00"
"NETStandard.Library": "1.5.0-rc3-24126-00"
}
}
}

View file

@ -80,6 +80,7 @@
},
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": true,
"preserveCompilationContext": true
},

View file

@ -1,26 +1,28 @@
{
"version": "1.0.0-*",
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable"
},
"dependencies": {
"System.Runtime.Serialization.Primitives": "4.1.1-rc3-24127-01",
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-192208-24"
},
"dependencies": {
"System.Runtime.Serialization.Primitives": "4.1.1-rc3-24127-01",
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-192208-24"
},
"testRunner": "xunit",
"testRunner": "xunit",
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0-rc3-004312"
}
},
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0-rc3-004312"
}
},
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
}
}
}