我对 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 推广到完整的开发组。有没有我们可以查看的详细日志可以指出细节?