2

我有一个结构如下的项目:

> 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

知道为什么会这样吗?我需要能够在已知位置引用这些文件,所以这是一个问题。

谢谢!

4

1 回答 1

0

您可以在属性中配置输出路径

右键单击项目 -> 属性 -> 构建 -> 输出路径

.csproj或者您可以在文件中手动编辑它

<OutputPath>myOutputLocation\myBin\</OutputPath>
于 2013-05-01T04:00:02.963 回答