MSBuild:如何在Silverlight构建中包含“* .xaml”和“* .cs”?

我想使用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 the Include
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 ……

相关文章

如何在Silverlight4(XAML)中绑定IsEnabled属性?我试过简单的...
我正在编写我的第一个vb.net应用程序(但我也会在这里标记c#,...
ProcessFile()是在UIThread上运行还是在单独的线程上运行.如...
我从同行那里听说,对sharepoint的了解对职业生涯有益.我们不...
我正在尝试保存一个类我的类对象的集合.我收到一个错误说明:...
我需要根据Silverlight中的某些配置值设置给定控件的Style.我...