"Add as Link"添加已有项目时,VS2015没有编译这个文件?
When adding an existing item with "Add as Link", this file is not compiled in VS2015?
当使用 "Add as Link" 添加现有项目时,此文件未在 VS2015 中编译?
的确,这还不支持。我联系了此功能的工程负责人,他们正在研究如何支持此功能。
您可以在project.json
文件中手动添加一个"linked"文件:
{
... 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 中看到相同的模式。
使用您的 ALT 键并将文件拖动到您想要的位置。
当使用 "Add as Link" 添加现有项目时,此文件未在 VS2015 中编译?
的确,这还不支持。我联系了此功能的工程负责人,他们正在研究如何支持此功能。
您可以在project.json
文件中手动添加一个"linked"文件:
{
... 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 中看到相同的模式。
使用您的 ALT 键并将文件拖动到您想要的位置。