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.
24 lines
1,019 B
JSON
24 lines
1,019 B
JSON
{
|
|
"version": "1.0.0-*",
|
|
"compilationOptions": {
|
|
"emitEntryPoint": true
|
|
},
|
|
|
|
"dependencies": {
|
|
"NETStandard.Library": "1.0.0-rc2-23901"
|
|
},
|
|
|
|
"frameworks": {
|
|
"netstandardapp1.5": {
|
|
"imports": "dnxcore50"
|
|
}
|
|
},
|
|
|
|
"scripts": {
|
|
"prepublish" : ["echoscript prepublish_output ?%publish:ProjectPath%? ?%publish:Configuration%? ?%publish:OutputPath%? ?%publish:TargetFramework%? ?%publish:Runtime%?"],
|
|
"postpublish" : ["echoscript postpublish_output ?%publish:ProjectPath%? ?%publish:Configuration%? ?%publish:OutputPath%? ?%publish:TargetFramework%? ?%publish:Runtime%?"],
|
|
|
|
"precompile" : ["echoscript precompile_output ?%compile:ProjectPath%? ?%compile:Configuration%? ?%compile:OutputPath%? ?%compile:TargetFramework%? ?%compile:Runtime%?"],
|
|
"postcompile" : ["echoscript postcompile_output ?%compile:ProjectPath%? ?%compile:Configuration%? ?%compile:OutputPath%? ?%compile:TargetFramework%? ?%compile:Runtime%?"]
|
|
}
|
|
}
|