3

我对 Sayed Hashimi 和公司在 SlowCheetah 上所做的快速和出色的工作感到困惑,特别是 SlowCheetah 是否能够在 Build 上转换文件而不仅仅是打包和发布。

我安装了 SlowCheetah,并且能够为我正在与开发团队合作部署的控制台应用程序的 app.config 自动生成构建配置实例。在构建时,会在 $(ProjectDir)\obj\x86\$(BuildConfig) 目录下创建一个新的“SlowCheetah”目录。例如,obj\x86\STAGE\SlowCheetah 目录包含一个 app.config 文件,当右键单击 STAGE 转换并选择“查看转换”时,转换完成。

但是,\bin\$(BuildConfig) 目录包含未转换的 app.config 文件以及每个 $(BuildConfig) 转换的所有模板 - 而不是替换 bin\x86\ 中的 app.config 文件带有来自 SlowCheetah 的 STAGE 目录。

构建完成没有错误。

这是预期的操作,还是仍然无法正常工作?

@sayed-ibrahim-hashimi 每个 $(Configuration) 都有一个转换。在 Visual Studio 中查看时转换正确显示,并在 \obj 目录树下的 \slowcheetah 目录中正确转换。转换示例如下:

<?xml version="1.0" encoding="utf-8" ?>
<!-- For more information on using transformations see the web.config examples at http://go.microsoft.com/fwlink/?LinkId=214134. -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform
<connectionStrings>
<add name="Portal" connectionString="Data Source=transformtestserver.domain.local;Initial Catalog=TestDB;User Id=TestUser;Password=testpw1;" xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
<add name="DictionaryDatabase" connectionString="Data Source=transformtestserver.domain.local;Initial Catalog=TestDB;User Id=TestUser;Password=testpw2;" xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
<add name="LoggingDatabase" connectionString="Data Source=transformtestserver.domain.local;Initial Catalog=TestDB;User Id=TestUser;Password=testpw3;" xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>    
</connectionStrings>
</configuration>

该问题可能与 Nuget/解决方案配置有关。我正在处理的项目是一个非常大的解决方案的一部分。我很难安装并运行 SlowCheetah - 有一次发现 Nuget 说已安装 SlowCheetah,但解决方案包目录不包含 SlowCheetah。

我在 TeamCity 中设置了一个解决方法,以从 \obj 目录中提取转换后的 app.config 文件,但我真的很想解决这个问题,以便我可以将 SC 推广到完整的开发组。有没有我们可以查看的详细日志可以指出细节?

4

2 回答 2

3

我遇到了同样的问题。

VS 中的本地编译效果很好,但在构建代理 (TeamCity) 时没有发生转换魔法!

我找到的解决方案与proj 文件中 xml 元素的位置有关

  <PropertyGroup Label="SlowCheetah">
    <SlowCheetahToolsPath>$([System.IO.Path]::GetFullPath( $(MSBuildProjectDirectory)\..\packages\SlowCheetah.2.5.10.3\tools\))</SlowCheetahToolsPath>
    <SlowCheetah_EnableImportFromNuGet Condition=" '$(SC_EnableImportFromNuGet)'=='' ">true</SlowCheetah_EnableImportFromNuGet>
    <SlowCheetah_NuGetImportPath Condition=" '$(SlowCheetah_NuGetImportPath)'=='' ">$([System.IO.Path]::GetFullPath( $(MSBuildProjectDirectory)\Properties\SlowCheetah\SlowCheetah.Transforms.targets ))</SlowCheetah_NuGetImportPath>
    <SlowCheetahTargets Condition=" '$(SlowCheetah_EnableImportFromNuGet)'=='true' and Exists('$(SlowCheetah_NuGetImportPath)') ">$(SlowCheetah_NuGetImportPath)</SlowCheetahTargets>
  </PropertyGroup>

我注意到的是,当最PropertyGroup重要的是 ItemGroup`s ellements MsBuild.exe 最后做了转换

于 2014-01-06T06:07:32.637 回答
0

查找重复的 SlowCheetahTargets 部分 - 我有一个旧版本和一个新版本,旧版本指向一个不再存在于 nuget 包目录中的位置。

删除旧/重复的 SlowCheetahTargets 部分的整个属性组,这应该可以修复它。

于 2014-01-30T07:45:47.723 回答