[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-*", "version": "1.0.0-*",
"buildOptions": { "buildOptions": {
"debugType": "portable",
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": {}, "dependencies": {},

View file

@ -1,10 +1,13 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"buildOptions": {
"debugType": "portable"
},
"dependencies": { "dependencies": {
}, },
"frameworks": { "frameworks": {
"netstandard1.6": { "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": { "buildOptions": {
"debugType": "portable",
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": 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": { "testRunner": "xunit",
"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", "frameworks": {
"netcoreapp1.0": {
"frameworks": { "dependencies": {
"netcoreapp1.0": { "Microsoft.NETCore.App": {
"dependencies": { "type": "platform",
"Microsoft.NETCore.App": { "version": "1.0.0-rc3-004312"
"type": "platform",
"version": "1.0.0-rc3-004312"
}
},
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
} }
},
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
} }
}
} }