44fd8bc2de
- Added PackOptions, RuntimeOptions, PublishOptions and updated CompilationOptions - Added IncludeFilesResolver to parse include, exclude patterns - Added compile, embed and copyToOutput to compilationOptions - Renamed compilationOptions to buildOptions - Moved compilerName into buildOptions - This change is backwards compatible - Added warnings to be shown when the old schema is used - Handled diagnostic messages in ProjectReader - Added unit and end to end tests
31 lines
619 B
JSON
31 lines
619 B
JSON
{
|
|
"version": "1.0.0-*",
|
|
"buildOptions": {
|
|
"emitEntryPoint": true,
|
|
"embed": {
|
|
"include": "*.resx",
|
|
"mappings": {
|
|
"myresource.resx": "resource2.resx"
|
|
}
|
|
},
|
|
"copyToOutput": {
|
|
"include": "copy/*.txt",
|
|
"excludeFiles": "copy/fileex.txt"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"Microsoft.NETCore.App": "1.0.0-rc2-*"
|
|
},
|
|
"packOptions": {
|
|
"files": {
|
|
"includeFiles": "packfiles/pack1.txt",
|
|
"mappings": {
|
|
"newpath/": "packfiles/pack2.txt"
|
|
}
|
|
}
|
|
},
|
|
"publishOptions": "testpublishfile.txt",
|
|
"frameworks": {
|
|
"netcoreapp1.0": { }
|
|
}
|
|
}
|