6468b14e1d
Update .exe's project.json Target Framework from dnxcore50 to netstandardapp1.5. Update .dll's project.json Target Framework from dnxcore50 to netstandard1.3. Adding workaround for DataContractSerialization to src\dotnet\project.json to fix crossgen issue. Build 23901 has a dependency issue that doesn't allow the runtime.any.System.Private.DataContractSerialization package to be restored. When we move to a new build of CoreFX we should take this workaround out.
21 lines
417 B
JSON
21 lines
417 B
JSON
{
|
|
"version": "1.0.0-*",
|
|
"compilationOptions": {
|
|
"emitEntryPoint": false
|
|
},
|
|
|
|
"dependencies": { },
|
|
|
|
"frameworks": {
|
|
"net20": { },
|
|
"net35": { },
|
|
"net40": { },
|
|
"net461": { },
|
|
"netstandardapp1.5": {
|
|
"imports": "dnxcore50",
|
|
"dependencies": {
|
|
"NETStandard.Library": "1.0.0-rc2-23901"
|
|
}
|
|
}
|
|
}
|
|
}
|