13

我需要能够使用 msbuild 转换我的 app.config 文件。如果文件名为 app.DEBUG.config 或 app.Release.config,我可以转换该文件,但如果我添加一个名为 app.PROD.config 的文件,则不能。

如果我选择不同的 PublishProfile,使用常规 XDT 转换 msbuild 会识别不同的 web.config 文件

 msbuild path.to.project.csproj Configuration=Release PublishProfile=DEV

显然 app.config 不适用于相同的设置。我总是可以为 DEV.config 设置创建特定的构建配置,但为一个应用程序单独构建确认似乎没用。这样做的一个 hacky 方法是在每个环境 POST-BUILD 中复制正确的 app.config。

我尝试使用 SlowCheetah 插件,但这似乎只转换默认的 DEBUG 和 RELEASE 配置文件,这是不合适的,因为我有两个以上的环境。如果我确实使用了这个错误,请让我知道我应该将什么参数传递给 msbuild 以选择我的 app.DEV.config。

预期的结果是 msbuild 将根据自定义的名为 app.DEV.config 的变换或为 app.PROD.config 自定义的变换来变换 app.config。我希望有一个参数可以传递给 msbuild,它允许我使用 Release 配置,但每个环境使用不同名称的转换。

4

4 回答 4

12

我认为令人困惑的是我们有能力进行编译时配置转换,然后我们有部署时配置转换

通常,您使用编译时配置转换来更改本地默认配置文件,以使其适用于 DEBUG 或 RELEASE 配置(或您定义的任何自定义配置)。对于 web.config,工具是内置的。对于 app.config,SlowCheetah Visual Studio 扩展为 app.config带来了与 web.config 相同的功能。RELEASE 配置的配置转换示例是删除 system.web 编译中的 debug 属性。

部署时配置转换是在部署到特定环境(例如 QA、PROD)时对配置文件的操作。数据库连接字符串需要更改、服务端点更改等...对于 web.config,MSDEPLOY 是首选的 IIS 工具。对于 app.config,我们似乎需要依赖安装程序技术。为此有不同的工具,例如WIX

无论如何,我希望对编译时和部署时配置转换之间区别的简短解释有助于解释为什么工具集是零散的。更深入的分析可以参考我在这个主题上发表的一篇博文:http: //philippetruche.wordpress.com/2012/07/11/deploying-web-applications-to-multiple-environments-using-微软网络部署/

如果选择使用 WIX 工具集生成安装程序,请参阅使用 Visual Studio 2012 和 Wix 创建多环境 Windows 安装程序

于 2014-02-20T17:30:32.857 回答
6

App.config 转换

要测试转换是否有效,您必须使用真正的转换。带有 appSettings 块的插入转换可能是最简单的一种。我使用以下配置文件进行了测试。

应用程序配置:

<?xml version="1.0" encoding="utf-8" ?><configuration>  <appSettings>    <add key="FirstName" value="Gunnar"/>  </appSettings></configuration>

App.Release.config

<?xml version="1.0"?><configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">  <appSettings>    <add key="LastName" value="Peipman" xdt:Transform="Insert"/>  </appSettings></configuration>

改造后的配置文件:

<?xml version="1.0" encoding="utf-8" ?><configuration>  <appSettings>    <add key="FirstName" value="Gunnar"/>    <add key="LastName" value="Peipman"/>  </appSettings></configuration>

使 App.config 转换工作

让我们看看如何使用控制台应用程序来做到这一点。

  1. 将 App.config 和 App.Release.config 添加到您的项目中,并用上面给出的内容填充它们。
  2. 卸载控制台应用程序项目。
  3. 右键单击项目名称并选择“编辑 <项目文件名>”。
  4. 项目文件以 XML 文件的形式打开,您可以看到其中的内容。
  5. 在第一个属性组的结束标记之前添加以下行:

    <ProjectConfigFileName>App.Config</ProjectConfigFileName>
    
  6. 找到<ItemGroup>App.Config 的定义位置 ( <None Include="App.Config" />) 并在 App.Config 节点之后添加以下块:

    <None Include="App.Release.config"> 
        <DependentUpon>App.Config</DependentUpon>
    </None>
    
  7. 找到第一个<Import Project=节点并将以下导入作为最后一个添加到列表中:

    <Import Project="$(VSToolsPath)\Web\Microsoft.Web.Publishing.targets" Condition="'$(VSToolsPath)' != ''" />
    <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.targets" Condition="false" />
    
  8. 在文件末尾,就在标记之前,粘贴以下代码块:

    <UsingTask TaskName="TransformXml" AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll" />
    <Target Name="AfterCompile" Condition="exists('app.$(Configuration).config')">
      <TransformXml Source="app.config" Destination="$(IntermediateOutputPath)$(TargetFileName).config" Transform="app.$(Configuration).config" />
      <ItemGroup>
        <AppConfigWithTargetPath Remove="app.config" />
        <AppConfigWithTargetPath Include="$(IntermediateOutputPath)$(TargetFileName).config">
          <TargetPath>$(TargetFileName).config</TargetPath>
        </AppConfigWithTargetPath>
        <AppConfigWithTargetPath Include="$(IntermediateOutputPath)$(TargetFileName).config">
          <TargetPath>$(TargetName).vshost$(TargetExt).config</TargetPath>
        </AppConfigWithTargetPath>
      </ItemGroup>
    </Target>
    
  9. 保存项目文件,关闭它并重新加载它。

再次加载项目时,Visual Studio 可能会询问您对文件的一些修改,以便从 Visual Studio 2010 到当前的所有版本都能够使用您的项目文件而无需对其进行修改。同意它,因为这样您就不会依赖于 Visual Studio 版本。

于 2016-07-22T20:49:09.023 回答
3

这是我在这种情况下使用的:

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

  <!-- This target will run right before you run your app in Visual Studio -->
  <Target Name="UpdateWebConfigBeforeRun" BeforeTargets="Build">
    <Message Text="Configuration: $(Configuration) update from web.template.$(Configuration).config"/>
    <TransformXml Source="web.template.config"
              Transform="web.template.$(Configuration).config"
              Destination="web.config" />
    </Target>

  <!-- Exclude the config template files from the created package -->
  <Target Name="ExcludeCustomConfigTransformFiles" BeforeTargets="ExcludeFilesFromPackage">
    <ItemGroup>
      <ExcludeFromPackageFiles Include="web.template.config;web.template.*.config"/>
    </ItemGroup>
    <Message Text="ExcludeFromPackageFiles: @(ExcludeFromPackageFiles)" Importance="high"/>
  </Target>
</Project>

我有以下设置:

web.template.config
    - web.template.debug.config
    - web.template.production.config
    - web.template.release.config etc

应该可以跨电脑工作,而不需要额外的插件等。在你的场景中,你需要编辑内容来app.代替web.

于 2013-12-19T20:26:19.553 回答
2

您可以像转换 web.config 一样转换 app.config。使用位于https://github.com/acottais/msbuild.xdt的这个 nuget 包

还有其他几个 Nuget 包可以让您执行此操作。前几天我用了这个,它奏效了。

安装后就像在 VS 窗口中添加转换一样简单。

于 2018-08-30T17:43:09.727 回答