summaryrefslogtreecommitdiff
path: root/external/rx/Rx/NET/Source/packages/Microsoft.Bcl.Build.1.0.4/tools/Install.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'external/rx/Rx/NET/Source/packages/Microsoft.Bcl.Build.1.0.4/tools/Install.ps1')
-rw-r--r--external/rx/Rx/NET/Source/packages/Microsoft.Bcl.Build.1.0.4/tools/Install.ps118
1 files changed, 18 insertions, 0 deletions
diff --git a/external/rx/Rx/NET/Source/packages/Microsoft.Bcl.Build.1.0.4/tools/Install.ps1 b/external/rx/Rx/NET/Source/packages/Microsoft.Bcl.Build.1.0.4/tools/Install.ps1
new file mode 100644
index 0000000000..66af151303
--- /dev/null
+++ b/external/rx/Rx/NET/Source/packages/Microsoft.Bcl.Build.1.0.4/tools/Install.ps1
@@ -0,0 +1,18 @@
+param($installPath, $toolsPath, $package, $project)
+ # This is the MSBuild targets file to add
+ $targetsFile = [System.IO.Path]::Combine($toolsPath, $package.Id + '.targets')
+
+ # 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
+ $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1
+
+ # Make the path to the targets file relative.
+ $projectUri = new-object Uri('file://' + $project.FullName)
+ $targetUri = new-object Uri('file://' + $targetsFile)
+ $relativePath = $projectUri.MakeRelativeUri($targetUri).ToString().Replace([System.IO.Path]::AltDirectorySeparatorChar, [System.IO.Path]::DirectorySeparatorChar)
+
+ # Add the import and save the project
+ $msbuild.Xml.AddImport($relativePath) | out-null
+ $project.Save() \ No newline at end of file