gpt4 book ai didi

c# - MSBuild:如何在链接的父目录中包含一堆文件?

转载 作者:太空宇宙 更新时间:2023-11-03 12:51:11 24 4
gpt4 key购买 nike

我正在编写一个 C# 项目,我的目录结构如下:

LibFoo
|
---- LibFoo.Shared
| |
| ---- [a bunch of .cs files]
|
---- LibFoo.Uwp
| |
| ---- LibFoo.Uwp.csproj
|
---- LibFoo.Wpf
|
---- LibFoo.Wpf.csproj

我很想知道,是否可以包含共享目录中的 C# 文件,以便它们显示在 Visual Studio 的解决方案资源管理器中?我知道你可以通过设置 Link 来做到这一点<Compile> 的属性(property)标签,但我不太确定当 .cs 数量可变时如何执行此操作项目中的文件。

为了澄清,这里是我的 csproj 文件的相关部分:

<PropertyGroup>
<!-- Compile everything in this dir -->
<CompileRoot>..\LibFoo.Shared</CompileRoot>
</PropertyGroup>

<ItemGroup>
<Compile Include="$(CompileRoot)\**\*.cs">
<Link> <!--What goes here?--> </Link>
</Compile>
</ItemGroup>

感谢您的帮助!

编辑: 忘记提及,它们包含在父目录中这一事实是相关的,因为这就是它们没有出现在 Visual Studio 中的原因。如果他们出现在 VS 中,我就不必做任何这些链接工作。

编辑 2: 按照 shamp00 的建议,我尝试了这个:

<ItemGroup>
<Compile Include="$(CompileRoot)\**\*.cs">
<Link>$([MSBuild]::MakeRelative('$(CompileRoot)', '%(FullPath)'))</Link>
</Compile>
</ItemGroup>

不幸的是,虽然当我运行 Message 时它似乎输出正常来自项目的任务,链接似乎在 Visual Studio 中被简单地忽略了。

编辑 3: 对于那些有兴趣重现此问题的人,您可以从 GitHub repository 克隆源代码:

git clone git@github.com:jamesqo/typed-xaml
cd typed-xaml

之后,您可以在 Visual Studio 中打开解决方案并亲自查看效果。相关代码在this文件。

最佳答案

像这样的东西应该可以工作:

<Target Name="Default">
<ItemGroup>
<Parent Include="..\LibFoo.Shared\**\*.cs"/>
<Compile Include="@(Parent)">
<Link>..\LibFoo.Shared\%(Parent.Filename).cs</Link>
</Compile>
</ItemGroup>
<Message Text="%(Compile.Identity) is linked to %(Compile.Link)"/>
</Target>

编辑

根据 this answer , 以下作品...

<Compile Include="..\LibFoo.Shared\**\*.cs">
<Link>.\thisDummyFolderNameDoesNotMatter</Link>
</Content>

编辑2

我不确定如何让它与您的外部 common.props 文件一起使用,但如果您将以下内容直接添加到 Typed.Xaml.Wpf.csproj.

<ItemGroup>
<Compile Include="..\Typed.Xaml\**\*.cs">
<Link>notimportant</Link>
</Compile>
</ItemGroup>

关于c# - MSBuild:如何在链接的父目录中包含一堆文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35473305/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com