MSBuild转换不评估通配符 [英] MSBuild transform not evaluating wildcards

查看:102
本文介绍了MSBuild转换不评估通配符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试编译一些自定义库的MSBuild文件遇到麻烦.

I am having some trouble with a MSBuild file that I am trying to compile some custom libraries.

<PropertyGroup>
    <FullVersion>10.8.0.0</FullVersion>
</PropertyGroup>

<ItemGroup>
    <LibsToBuild Include=".\Lib1">
        <Bin>bin\*.*</Bin>
        <Project>Library 1</Project>
        <Build>ReleaseNoProtect</Build>
        <Version>CurrentVersion</Version>
    </LibsToBuild>

    <LibsToBuild Include=".\Lib2">
        <Bin>bin\*.*</Bin>
        <Project>Library 2</Project>
        <Build>ReleaseLibrary</Build>
        <Version>CurrentVersion</Version>
    </LibsToBuild>      
</ItemGroup>

<ItemGroup>    
    <LibsToCopy Include="@(LibsToBuild->'%(FullPath)\%(Version)\%(Bin)')" />
</ItemGroup>

<Target Name="BuildLibs">
    <MSBuild
        Projects="@(LibsToBuild->'%(FullPath)\%(Version)\Build\Build.proj')"
        Targets="%(LibsToBuild.Build)"
        Properties="Configuration=Release;APP_VERSION=$(FullVersion);PROJECT_NAME=%(LibsToBuild.Project)"
    />

    <Copy
        SourceFiles="@(LibsToCopy)"
        DestinationFiles="@(LibsToCopy->'.\Libraries\CurrentVersion\%(RecursiveDir)%(Filename)%(Extension)')"
    />

    <!--
    <Exec Command='xcopy /y @(LibsToCopy) .\Libraries\CurrentVersion' />
    -->
</Target>

当我通过MSBuild运行此程序时,所有编译工作均有效,但复制文件无效. MSBuild抱怨以下错误:

When I run this through MSBuild, all of the compiles work, but the copy files does not. MSBuild complains with the following errors:

Copying file from "X:\Projects\Lib1\Master\bin\*.*" to ".\Libraries\CurrentVersion\*.*".
X:\Projects\Test Release.build(35,3): error MSB3021: Unable to copy file "X:\Projects\Lib1\Master\bin\*.*" to ".\Libraries\CurrentVersion\*.*". Illegal characters in path.
Copying file from "X:\Projects\Lib2\Master\bin\*.*" to ".\Libraries\CurrentVersion\*.*".
X:\Projects\Test Release.build(35,3): error MSB3021: Unable to copy file "X:\Projects\Lib1\Master\bin\*.*" to ".\Libraries\CurrentVersion\*.*". Illegal characters in path.

我无法弄清楚为什么"LibsToCopy"项目组中的转换没有扩展文件名通配符.

I am unable to figure out why the transform in the "LibsToCopy" ItemGroup isn't expanding the filename wildcards.

我也曾尝试使用xcopy,但是它也不喜欢通配符.

I have also attempted to use xcopy, but it doesn't like the wildcards either.

谢谢! 戴夫

推荐答案

我遇到了类似的问题.在<Copy>任务

I had a similar problem. Try this, just before the <Copy> task

<CreateItem Include="@(LibsToBuild->'%(FullPath)\%(Version)\%(Bin)')">
  <Output TaskParameter="Include" ItemName="LibsToCopy" />
</CreateItem>

不幸的是,文档说CreateItem任务已过时,所以我不知道将来如何解决该问题.

Unfortunately the documentation says CreateItem task is deprecated, so I don't know how to solve tis problem in the future.

这篇关于MSBuild转换不评估通配符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆