我想使用MSBuild来抓取并创建2个文件的相关元素.如果它只是一个文件扩展名,我会使用:
<ItemGroup> <Compile Include="\Pages\*.cs" /> </ItemGroup>
在Silverlight构建的.csproj文件中,每个UserControl的设置都与它自己的< Compile>一样.元素和孩子< DependentUpon>元件:
<ItemGroup> <Compile Include="Pages\SilverlightControl1.xaml.cs"> <DependentUpon>SilverlightControl1.xaml</DependentUpon> </Compile> <Compile Include="Pages\SilverlightControl2.xaml.cs"> <DependentUpon>SilverlightControl2.xaml</DependentUpon> </Compile> </ItemGroup>
在MSBuild文件中,我想指定:
grab all the
.cs
files
and put those in theInclude
attribute and get the same file name – minus the.cs
and put that in the<DependentUpon>
element.
所以它就像(伪)匹配文件对:
<ItemGroup> <Compile Include="Pages\*.cs"> <DependentUpon>Pages\*.xaml</DependentUpon> </Compile> </ItemGroup>
有没有办法把上面的内容放在MSBuild中?
解决方法
MSBuild有两个独立的元数据属性,名为%(文件名)(没有扩展名的文件名)和%(扩展名),在您的示例中为“.cs”.所以,我想知道这是否可行:
<ItemGroup> <Compile Include="Pages\*.cs"> <DependentUpon>%(Directory)%(Filename)</DependentUpon> </Compile> </ItemGroup>
但是,我认为你不会喜欢它会做什么甚至做你想做的事情.
你真的应该只在目标中拥有“glob”类型的项目(* .cs) – 你不应该将它声明为顶级项目组,否则它将在visual studio中做有趣的事情(例如)将添加所有.cs文件到版本控制,甚至可能将* .cs扩展为项目中的单个项目.
这是我在NON Visual Studio msbuild项目中建议的内容:
<Target Name="PrepareCompileItems"> <XamlFiles Include="Pages\*.cs"> <DependentUpon>%(Directory)%(Filename)</DependentUpon> </XamlFiles> <Compile Include="@(XamlFiles)" /> </Target>
如果您在VS项目中执行此操作,那么它就是tricker – 您希望在已编译之前将元数据添加到现有项目组以强制dependentUpon关联:
<Target Name="AddDependentUponMetadata"> <CsFiles Include="Pages\*.cs" /> <XamlFiles Include="@(CsFiles)"> <DependentUpon>%(Directory)%(Filename)</DependentUpon> </XamlFiles> <Compile Remove="@(CsFiles)" /> <Compile Include="@(XamlFiles)" /> </Target>
虽然,我正在打字而没有实际测试我的断言所以YMMV ……
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。