9

我不想在所有构建服务器上安装 Slow Cheetah。

我们正在使用 Slow Cheetah 进行配置转换,它工作得非常好。它会生成多个 app.config 文件,我们会根据需要对它们进行更改。

我们已经设置了几台服务器。他们都有自己的代码存储库,他们从命令行提取代码并相应地构建包。这些代码中有那些配置文件。但是,当我们从命令行编译应用程序时,如果没有安装慢 cheetah,则不会通过转换生成包。否则它工作正常。

我们永远不知道何时设置了新服务器和新用户,因此不可能在每个人上都安装 Slow cheetah

有可能以某种方式在应用程序中使用慢 cheetah dll 并从中手动调用转换方法吗?

谢谢

4

4 回答 4

18

此处定义的详细分步过程

http://sedodream.com/2011/12/12/SlowCheetahXMLTransformsFromACIServer.aspx

谢谢

于 2012-10-01T11:04:42.737 回答
10

作为 SlowCheetah 的替代方案,可以通过手动编辑项目文件来处理此功能。设置起来有点麻烦,但这确实意味着您不需要额外的 DLL。

在文本编辑器中打开您的项目文件。在项目文件的底部,就在结束标记之前,包括以下内容:

<UsingTask TaskName="TransformXml" AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll" />
<Target Name="AfterCompile" Condition="exists('app.$(Configuration).config')">
    <!-- Generate transformed app config in the intermediate directory -->
    <TransformXml Source="app.config" Destination="$(IntermediateOutputPath)$(TargetFileName).config" Transform="app.$(Configuration).config" />
    <!-- Force build process to use the transformed configuration file from now on. -->
    <ItemGroup>
        <AppConfigWithTargetPath Remove="app.config" />
        <AppConfigWithTargetPath Include="$(IntermediateOutputPath)$(TargetFileName).config">
            <TargetPath>$(TargetFileName).config</TargetPath>
        </AppConfigWithTargetPath>
    </ItemGroup>
</Target>

然后,在您的项目文件中找到该行并将其替换为以下内容:

<ItemGroup>
    <Content Include="App.config" />
    <Content Include="App.Debug.config">
        <DependentUpon>App.config</DependentUpon>
    </Content>
    <Content Include="App.Release.config">
        <DependentUpon>App.config</DependentUpon>
    </Content>
</ItemGroup>

您需要为您添加的每个配置添加一个额外的内容包含 - 不幸的是,使用此方法您无法获得简单的“添加转换”上下文菜单。

之后就是在你的项目目录中创建文件,然后你就可以开始了。它不像 SlowCheetah 那样流畅,但它确实使您的代码具有可移植性。

于 2012-10-01T10:49:21.377 回答
5

最新版本的 SlowCheetah (2.5.14) 在Nuget上可用。通过 nuget 添加时,它存储在packages本地解决方案目录中的文件夹中(就像所有 nuget 包一样),这意味着它现在应该可以在任何开箱即用的构建服务器上工作。

于 2014-11-07T22:42:07.957 回答
4

我在应用程序中包含如下所示的 SlowCheetah,以避免将其安装在构建解决方案的服务器上:

  1. 在我的解决方案根目录中,我有一个文件夹工具,其中包含(除其他外)SlowCheetah
    1. 我的项目/工具/SlowCheetah/SlowCheetah.Tasks.dll
    2. 我的项目/工具/SlowCheetah/SlowCheetah.Transforms.targets
  2. 在(web-)应用程序项目的 .csproj 文件中,我有这个:

  <PropertyGroup>
          <SlowCheetahTargets Condition=" '$(SlowCheetahTargets)'=='' ">$(MSBuildProjectDirectory)\..\Tools\SlowCheetah\SlowCheetah.Transforms.targets  </SlowCheetahTargets>
   </PropertyGroup>

和这个:

<Import Project="$(SlowCheetahTargets)" Condition="Exists('$(SlowCheetahTargets)')" />

..它似乎可以很好地处理这项工作,即使在从 TeamCity 构建/发布时也是如此。

编辑:

当您将 SlowCheetah 安装到 Visual Studio中后,您将找到%localappdata%\Microsoft\MSBuild\SlowCheetah\v1( )中提到的两个文件。drive:\Users\yourusername\AppData\Local\Microsoft\MSBuild\SlowCheetah\v1

于 2012-10-01T10:35:45.717 回答