New .csproj format - How to specify entire directory as quot;linked filequot; to a subdirectory?(新的.csproj格式 - 如何将整个目录指定为“链接文件.到子目录?)
问题描述
与新 .csproj
格式(以及旧的),可以将文件添加为项目文件夹外面的链接:
With the new .csproj
format (as well as the old), it is possible to add files as linked outside of the project folder:
<EmbeddedResource Include="......DemoSample.cs" Link="ResourcesSample.cs" />
也可以使用 glob 模式来包含多个文件:
It is also possible to use a glob pattern to include multiple files:
<EmbeddedResource Include="......Demo*.cs" />
但是如何将两者结合起来呢?
But how do you combine the two?
-
< embeddedResource include =.. .. .. demo *.CS"链接=资源 *.CS"/>
-
< embeddedResource include =.. .. .. demo *.CS"link =资源 *"/>
-
< embeddedResource include =.. .. .. demo *.cs"link =资源"/>
前两个只创建一个链接文件(究竟是名称 *.cs
和 *
).第三个只是出错了.
The first two only create a single linked file (with exactly the name *.cs
and *
respectively). The third simply errors out.
有没有办法将 globbing 与链接文件结合到目标项目中的特定位置?如果没有,如何在不知道有多少或名称的情况下链接目录中的所有文件?
Is there a way to combine globbing with linked files to a specific location in the target project? If not, how can I link all the files in a directory without knowing how many or what their names are?
推荐答案
虽然以前可以在使用 glob 扩展时使用 %(RecursiveDir)
元数据(Link="Resources\%(RecursiveDir)%(Filename)%(Extension)"
),2.0.0版本的.NET Core SDK允许使用新的LinkBase
元数据:
While this was previously possible using the %(RecursiveDir)
metadata when using glob expansion ( Link="Resources\%(RecursiveDir)%(Filename)%(Extension)"
), the 2.0.0 version of the .NET Core SDK allows the use of a new LinkBase
metadata:
<EmbeddedResource Include="......Demo***.cs" LinkBase="Resources" />
注意,除了最近发布的 VS 2017 15.3 之外,还需要安装 2.0.0(并确保没有 global.json
选择较低的版本).
Note that you need to install the 2.0.0 in addition to the recently released VS 2017 15.3 (and ensure no global.json
selects a lower version).
它被引入这个拉请求这可能是最佳的文档.
It was introduced with this pull request which is probably the best documentation at the moment.
这篇关于新的.csproj格式 - 如何将整个目录指定为“链接文件".到子目录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:新的.csproj格式 - 如何将整个目录指定为“链接文件".到子目录?


- 使用 rss + c# 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01