簡體   English   中英

我的app.config沒有轉換值

[英]My app.config did not transform the value

在Windows服務應用程序中,我想通過配置對其進行調試。 最初,我使用slowcheetah,但是它沒有用。 所以我想手動對其進行轉換。 有一種方法可以做到這一點。

在項目文件中,我有

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

我也有

 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
 <UsingTask TaskName="TransformXml" AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v12.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>
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
   Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->

在App.TestDebug.config中,值是:

<?xml version="1.0" encoding="utf-8" ?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
 <appSettings>
  <add key="veserver" value="xx.xx.xx.221" xdt:Transform="Replace" xdt:Locator="Match(key)"/>

在App.Debug.config中,值是:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
    <add key="veserver" value="xx.xx.xx.221" />

在App.config中,值是:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup> 
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<appSettings>
  <add key="veserver" value="xx.xx.xx.222" />

現在我用

App.TestDebug.config

在C#代碼中, ConfigurationManager.AppSettings["veserver"]仍然

xx.xx.xx.222這意味着它沒有轉換值。 應該是xx.xx.xx.221

為什么?

自己尋找解決方案。

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

更改

內容

沒有

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM