dotnet-installer/TestAssets/TestProjects/TestAppWithMigrateableScripts/project.json

30 lines
896 B
JSON
Raw Normal View History

2016-08-22 19:23:54 +00:00
{
"version": "1.0.0-*",
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.1.0"
2016-08-22 19:23:54 +00:00
}
},
"frameworks": {
"netcoreapp1.1": {}
2016-08-22 19:23:54 +00:00
},
"scripts": {
"prepublish": [
2016-09-16 23:12:11 +00:00
"./echoscript prepublish_output ?%publish:ProjectPath%? ?%publish:Configuration%? ?%publish:OutputPath%? ?%publish:FullTargetFramework%?"
2016-08-22 19:23:54 +00:00
],
"postpublish": [
2016-09-16 23:12:11 +00:00
"./echoscript postpublish_output ?%publish:ProjectPath%? ?%publish:Configuration%? ?%publish:OutputPath%? ?%publish:FullTargetFramework%?"
2016-08-22 19:23:54 +00:00
],
"precompile": [
2016-09-16 23:12:11 +00:00
"./echoscript precompile_output ?%compile:Configuration%? ?%compile:OutputDir%? ?%compile:FullTargetFramework%?"
2016-08-22 19:23:54 +00:00
],
"postcompile": [
2016-09-16 23:12:11 +00:00
"./echoscript postcompile_output ?%compile:Configuration%? ?%compile:OutputDir%? ?%compile:FullTargetFramework%?"
2016-08-22 19:23:54 +00:00
]
}
}