使用"添加为链接"添加现有项目时,此文件不在VS2015中编译?

时间:2015-01-27 16:39:03

标签: visual-studio-2015 asp.net-core

使用“添加为链接”添加现有项目时,此文件未在VS2015中编译?

enter image description here

2 个答案:

答案 0 :(得分:7)

实际上,这尚未得到支持。我联系了此功能的工程所有者,他们正在调查支持此功能所需的内容。

您可以手动添加"链接"文件在project.json文件中:

{
    ... other stuff ...

    "compile": [
        "../path/to/somewhere.cs",
        "../../another/path/to/file.cs",
        "../../use/globbing/**/*.cs"
    ],

    ... other stuff ...
}

此处提供了该文件的架构:https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/project.json#L98-L119

在Visual Studio中编辑project.json文件时,您会在Intellisense中看到相同的架构。

答案 1 :(得分:0)

使用 ALT 键并将文件拖动到任意位置。