Install.ps1 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. param($installPath, $toolsPath, $package, $project)
  2. # This is the MSBuild targets file to add
  3. $targetsFile = [System.IO.Path]::Combine($toolsPath, $package.Id + '.targets')
  4. # Need to load MSBuild assembly if it's not loaded yet.
  5. Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
  6. # Grab the loaded MSBuild project for the project
  7. # Normalize project path before calling GetLoadedProjects as it performs a string based match
  8. $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects([System.IO.Path]::GetFullPath($project.FullName)) | Select-Object -First 1
  9. # Make the path to the targets file relative.
  10. $projectUri = new-object Uri($project.FullName, [System.UriKind]::Absolute)
  11. $targetUri = new-object Uri($targetsFile, [System.UriKind]::Absolute)
  12. $relativePath = [System.Uri]::UnescapeDataString($projectUri.MakeRelativeUri($targetUri).ToString()).Replace([System.IO.Path]::AltDirectorySeparatorChar, [System.IO.Path]::DirectorySeparatorChar)
  13. # Add the import with a condition, to allow the project to load without the targets present.
  14. $import = $msbuild.Xml.AddImport($relativePath)
  15. $import.Condition = "Exists('$relativePath')"
  16. # Add a target to fail the build when our targets are not imported
  17. $target = $msbuild.Xml.AddTarget("EnsureBclBuildImported")
  18. $target.BeforeTargets = "BeforeBuild"
  19. $target.Condition = "'`$(BclBuildImported)' == ''"
  20. # if the targets don't exist at the time the target runs, package restore didn't run
  21. $errorTask = $target.AddTask("Error")
  22. $errorTask.Condition = "!Exists('$relativePath')"
  23. $errorTask.SetParameter("Text", "This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=317567.");
  24. $errorTask.SetParameter("HelpKeyword", "BCLBUILD2001");
  25. # if the targets exist at the time the target runs, package restore ran but the build didn't import the targets.
  26. $errorTask = $target.AddTask("Error")
  27. $errorTask.Condition = "Exists('$relativePath')"
  28. $errorTask.SetParameter("Text", "The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568.");
  29. $errorTask.SetParameter("HelpKeyword", "BCLBUILD2002");
  30. $project.Save()