Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'corebuild/dotnet.ps1')
-rw-r--r--corebuild/dotnet.ps127
1 files changed, 0 insertions, 27 deletions
diff --git a/corebuild/dotnet.ps1 b/corebuild/dotnet.ps1
deleted file mode 100644
index 2ca17df17..000000000
--- a/corebuild/dotnet.ps1
+++ /dev/null
@@ -1,27 +0,0 @@
-# set the base tools directory
-$toolsLocalPath = Join-Path $PSScriptRoot "Tools"
-$bootStrapperPath = Join-Path $toolsLocalPath "bootstrap.ps1"
-
-# if the boot-strapper script doesn't exist copy it to the tools path
-if ((Test-Path $bootStrapperPath) -eq 0)
-{
- if ((Test-Path $toolsLocalPath) -eq 0)
- {
- mkdir $toolsLocalPath | Out-Null
- }
-
- cp (Join-Path $PSScriptRoot "bootstrap.ps1") $bootStrapperPath
-}
-
-# now execute it
-& $bootStrapperPath $PSScriptRoot $toolsLocalPath | Out-File (Join-Path $PSScriptRoot "bootstrap.log")
-if ($LastExitCode -ne 0)
-{
- Write-Output "Boot-strapping failed with exit code $LastExitCode, see bootstrap.log for more information."
- exit $LastExitCode
-}
-
-# execute the tool using the dotnet.exe host
-$dotNetExe = Join-Path $toolsLocalPath "dotnetcli\dotnet.exe"
-& $dotNetExe $args
-exit $LastExitCode