我的VS解决方案中有两个项目,BookApp.Web
和BookApp.Domain
。
BookApp.Web
引用BookApp.Domain
。
BookApp.Web
具有以下构建配置:debug
,staging
,prod-eu
,prod-us
和prod-as
。我们有三个数据中心用于生产和临时环境。
BookApp.Domain
只有两个构建配置debug
。
从Visual Studio中构建解决方案时,我可以使用构建配置程序来确保无论为Web项目选择了什么构建配置,调试配置始终用于域项目。
但是,在我的持续集成服务器上使用MSBuild构建时,出现问题。我在rollout.msbuild文件中使用它:
<MSBuild Projects="BookApp.Web\BookApp.Web.csproj" Properties="Configuration=Prod-us" />
当我运行它时,MSBuild希望所有依赖项目具有相同的构建配置。由于情况并非如此(并且不应该是IMO),因此失败并显示以下错误消息:
The OutputPath property is not set for project 'BookApp.Domain.csproj'. Please check to make sure that you have specified a valid combination of Configuration and Platform for this project. Configuration='Prod-us' Platform='AnyCPU'.
对related question的回答建议为每个构建配置创建单独的.sln解决方案,并使用MSBuild运行该解决方案。对我而言,听起来不是一个好主意。
将所有构建配置复制到域项目也不理想。
有没有更好的方法告诉MSBuild使用不同的构建配置?
答案 0 :(得分:2)
看一下这个答案,它解释了如何通过MSBuild任务将配置从项目传递到Project,并使用配置的MetaData为目标项目传递所需的配置
<强>更新强>
我使用类库(Sample.Domain)和ConsoleApplication(SampleApp.Console)创建了一个解决方案。我在SamplApp.Console中添加了两个配置:prod-us; prod-eu,Sample.Domain保留了调试;发布。
然后我改变了ConsoleApplication的csproj文件,如下所示:ProjectReferences
<!--<ItemGroup>
<ProjectReference Include="..\Sample.Domain\Sample.Domain.csproj">
<Project>{73e8a7fd-0a24-47c5-a527-7601550d4b92}</Project>
<Name>Sample.Domain</Name>
</ProjectReference>
</ItemGroup>-->
<ItemGroup>
<ProjectReference Include="..\Sample.Domain\Sample.Domain.csproj" >
<Targets>Build</Targets>
</ProjectReference>
</ItemGroup>
在传递给MSBuild的配置上添加了一个switch case,为Outputfiles和引用文件配置一些属性:
<Choose>
<When Condition="'$(Configuration)' != 'Debug'">
<PropertyGroup>
<OutputProperty>$(OutputPath)\$(Configuration)</OutputProperty>
<FileCopy>$(OutputProperty)</FileCopy>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<OutputProperty>$(OutputPath)</OutputProperty>
<FileCopy>$(OutputProperty)</FileCopy>
</PropertyGroup>
</Otherwise>
</Choose>
创建一个Target来切换传递给MSBuild的Configuration,以便Debug将Debug传递给Sample.Domain,它将传递的所有其他内容发布
<Target Name="MultiConfiguration" >
<CreateProperty Value="Debug">
<Output TaskParameter="Value" PropertyName="LibConfiguration" Condition="'$(Configuration)' == 'Debug'"/>
</CreateProperty>
<CreateProperty Value="Release">
<Output TaskParameter="Value" PropertyName="LibConfiguration" Condition="'$(Configuration)' != 'Debug' "/>
</CreateProperty>
</Target>
构建目标使用我们添加的属性,因此引用文件的输出和复制将根据配置值具有正确的值
<!--Build Process-->
<Target Name="Build" DependsOnTargets="Clean;MultiConfiguration;ComputeProjectReference" >
<Csc Sources="@(Compile)" References="@(NewAssemblies)" TargetType="exe" OutputAssembly="$(OutputProperty)\$(AssemblyName).exe"/>
</Target>
<Target Name="ComputeProjectReference" Inputs="@(ProjectReference)" Outputs="%(ProjectReference.Identity)__Forced">
<MSBuild Projects="@(ProjectReference)" Targets="%(ProjectReference.Targets)" Properties="Configuration=$(LibConfiguration);Platform=AnyCPU;OutputPath=bin\$(LibConfiguration)">
<Output TaskParameter="TargetOutputs" ItemName="ResolvedProjectReferences"/>
</MSBuild>
</Target>
<Target Name="AfterProjectReference" AfterTargets="ComputeProjectReference">
<CreateItem Include="@(ResolvedProjectReferences)">
<Output TaskParameter="Include" ItemName="CopyFiles" />
</CreateItem>
<Copy SourceFiles="@(CopyFiles)" DestinationFolder="$(FileCopy)" SkipUnchangedFiles="false" />
<ItemGroup>
<NewAssemblies Include="$(OutputProperty)\%(CopyFiles.FileName)%(CopyFiles.Extension)" />
</ItemGroup>
</Target>
调用Debug配置就像这样完成 msbuild SampleApp.Console.csproj
要打电话(发布; prod-us; prod-eu; ......)这样做 msbuild SampleApp.Console.csproj / p:Configuration =&#34; prod-us&#34; / P:OutputPath =&#34;箱&#34;
我确定它可以进行优化,并且可能会更容易一些,但它确实有效。