我有一个像这样结构的项目:
> Project
> App
> Config
> File1.json
> File2.json
File1.json和File2.json被标记为内容,如果更新则复制。
使用Visual Studio构建/发布时,输出为:
> bin
> App
> Config
> File1.json
> File2.json
从命令行构建项目时,输出为
> bin
> File1.json
> File2.json
知道为什么会这样吗?我需要能够在已知位置引用这些文件,因此这是一个问题。
谢谢!
答案 0 :(得分:0)
您可以在属性
中配置输出路径右键单击Project - >属性 - >构建 - >输出路径
或者您可以在.csproj
文件
<OutputPath>myOutputLocation\myBin\</OutputPath>