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

33 lines
672 B
JSON
Raw Normal View History

2016-01-22 18:40:01 +00:00
{
"version": "1.0.0-*",
"buildOptions": {
"emitEntryPoint": true,
"copyToOutput": {
2016-09-08 21:40:46 +00:00
"include": "testcontentfile.txt",
"mappings": {
"dir/mappingfile.txt":{
"include": "testcontentfile2.txt"
},
"out/": {
2016-10-04 03:10:09 +00:00
"include": ["Program.cs"],
2016-09-08 21:40:46 +00:00
"exclude": ["Program.cs"],
"includeFiles": ["Program.cs"],
"excludeFiles": ["Program.cs"]
}
}
}
},
"dependencies": {
2016-09-08 21:40:46 +00:00
"Microsoft.NETCore.App": {
"version": "1.0.1",
"type": "platform"
}
},
"frameworks": {
"netcoreapp1.0": {}
},
"publishOptions": {
"include": "testcontentfile.txt"
}
}