Skip to content

Instantly share code, notes, and snippets.

@devops-school
Created September 21, 2019 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devops-school/3faa8de93ffa771efaafd99f4322e6dd to your computer and use it in GitHub Desktop.
Save devops-school/3faa8de93ffa771efaafd99f4322e6dd to your computer and use it in GitHub Desktop.
<Target Name="BeforeBuild">
<Copy SourceFiles="Web.config" DestinationFiles="Web.temp.config"
OverwriteReadOnlyFiles="True" />
<TransformXml Source="Web.temp.config" Transform="Web.$(Configuration).config"
Destination="Web.config" />
</Target>
<Target Name="AfterBuild">
<Copy SourceFiles="Web.temp.config" DestinationFiles="Web.config"
OverwriteReadOnlyFiles="True" />
<Delete Files="Web.temp.config" />
</Target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment