Skip to content

Instantly share code, notes, and snippets.

View akopitsa's full-sized avatar
🏠
Working from home

Andrey Kopitsa akopitsa

🏠
Working from home
View GitHub Profile
@akopitsa
akopitsa / gist:76ba6ba42aabae805f8fe5c170e64d41
Created May 22, 2018 16:37 — forked from swade1987/gist:05db366b29ab2c625946
Web.config transformations (Powershell)
function XmlDocTransform($xml, $xdt)
{
if (!$xml -or !(Test-Path -path $xml -PathType Leaf)) {
throw "File not found. $xml";
}
if (!$xdt -or !(Test-Path -path $xdt -PathType Leaf)) {
throw "File not found. $xdt";
}
$scriptPath = (Get-Variable MyInvocation -Scope 1).Value.InvocationName | split-path -parent
@akopitsa
akopitsa / Create-WebConfigTransform.ps1
Created May 22, 2018 16:33 — forked from mpicker0/Create-WebConfigTransform.ps1
This PowerShell script runs a Web.config transformation. Visual Studio must be installed, and MSBuild.exe in your path. This is useful for one-off testing.
<#
.SYNOPSIS
Create a configuration transformation
.DESCRIPTION
This script runs an ASP.NET configuration transformation, given a source
configuration and transformation file. MSBuild.exe is assumed to be in
the path, and Visual Studio 2012 should be installed. Modify the path to
Microsoft.Web.Publishing.Tasks.dll if a different version of Visual Studio
is installed.