在dotnet build
期间,似乎没有使用在预编译任务期间创建的生成文件,并且构建失败。
precompile
不能用于生成文件?该文件非常清楚。
还是我必须处理延迟以确保文件在磁盘上正确写入?
Project.json:
{
"name": "Service",
"version": "0.0.1",
"dependencies": {
...
},
"frameworks": {
"netcoreapp1.0": {
"imports": "dnxcore50"
}
},
"scripts": {
"precompile": "%project:Directory%/protogen.bat"
},
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
}
}
由于