Files
ArchiSteamFarm/packages/Resource.Embedder.1.2.2/Tools/install.ps1
2017-01-07 02:39:29 +01:00

21 lines
680 B
PowerShell

param($installPath, $toolsPath, $package, $project)
# Need to load MSBuild assembly if it's not loaded yet.
Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
# Grab the loaded MSBuild project for the project
$buildProject = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1
$embedderPathProperty = $buildProject.GetProperty("EmbedderPath")
# Dont do a null check since is seems evaluating the value causes powershit to have a conniption
try
{
$buildProject.RemoveProperty($embedderPathProperty);
}
catch{}
$project.Save()