有谁知道如何更改ASP.NET Core项目的Build目录?在构建中的项目设置中,输出路径为只读。
最佳答案
您可以在project.json
部分的scripts
中定义前/后脚本命令。当您将postcompile
从字符串转换为数组时,甚至执行多个命令[“command1”,“command2”,“command3”]
其他解决方法是-
在记事本中打开您的ASP.NET核心项目.xproj文件,然后更改OutputPath
从
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
至
<OutputPath Condition="'$(OutputPath)'=='' ">E:\SanketTest</OutputPath>
完成后,重新加载您的项目,它将自动在指定位置构建。
看看是否有帮助。
关于build - ASP.NET Core更改生成目录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37661129/