2016-03-07 14:24:36 -06:00
|
|
|
#
|
|
|
|
# Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
#
|
|
|
|
|
|
|
|
param(
|
2017-02-13 17:03:36 -08:00
|
|
|
[switch]$Help,
|
|
|
|
[switch]$Update)
|
2016-03-07 14:24:36 -06:00
|
|
|
|
|
|
|
if($Help)
|
|
|
|
{
|
2017-05-26 15:46:56 -07:00
|
|
|
Write-Output "Usage: .\update-dependencies.ps1"
|
|
|
|
Write-Output ""
|
|
|
|
Write-Output "Options:"
|
|
|
|
Write-Output " -Help Display this help message"
|
|
|
|
Write-Output " -Update Update dependencies (but don't open a PR)"
|
2016-03-07 14:24:36 -06:00
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2016-06-02 14:08:39 -05:00
|
|
|
$Architecture='x64'
|
|
|
|
|
2016-05-25 22:04:26 -05:00
|
|
|
$RepoRoot = "$PSScriptRoot\..\.."
|
2017-02-09 16:25:48 -06:00
|
|
|
$ProjectPath = "$PSScriptRoot\update-dependencies.csproj"
|
2017-02-13 17:03:36 -08:00
|
|
|
$ProjectArgs = ""
|
|
|
|
|
|
|
|
if ($Update)
|
|
|
|
{
|
|
|
|
$ProjectArgs = "--Update"
|
|
|
|
}
|
2016-05-25 22:04:26 -05:00
|
|
|
|
2016-03-07 14:24:36 -06:00
|
|
|
# Use a repo-local install directory (but not the artifacts directory because that gets cleaned a lot
|
|
|
|
if (!$env:DOTNET_INSTALL_DIR)
|
|
|
|
{
|
2016-07-06 12:03:16 -07:00
|
|
|
$env:DOTNET_INSTALL_DIR="$RepoRoot\.dotnet_stage0\$Architecture"
|
2016-03-07 14:24:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
# Install a stage 0
|
2017-05-26 15:46:56 -07:00
|
|
|
Write-Output "Installing .NET Core CLI Stage 0"
|
2017-02-09 16:25:48 -06:00
|
|
|
& "$RepoRoot\scripts\obtain\dotnet-install.ps1" -Channel "master" -Architecture $Architecture
|
2016-05-25 22:04:26 -05:00
|
|
|
if($LASTEXITCODE -ne 0) { throw "Failed to install stage0" }
|
2016-03-07 14:24:36 -06:00
|
|
|
|
|
|
|
# Put the stage0 on the path
|
2016-03-25 16:47:59 -05:00
|
|
|
$env:PATH = "$env:DOTNET_INSTALL_DIR;$env:PATH"
|
2016-03-07 14:24:36 -06:00
|
|
|
|
2016-07-15 19:52:20 -05:00
|
|
|
# Restore the app
|
2017-05-26 15:46:56 -07:00
|
|
|
Write-Output "Restoring $ProjectPath..."
|
2017-02-09 16:25:48 -06:00
|
|
|
dotnet restore "$ProjectPath"
|
2016-03-07 14:24:36 -06:00
|
|
|
if($LASTEXITCODE -ne 0) { throw "Failed to restore" }
|
|
|
|
|
|
|
|
# Run the app
|
2017-05-26 15:46:56 -07:00
|
|
|
Write-Output "Invoking App $ProjectPath..."
|
2017-02-13 17:03:36 -08:00
|
|
|
dotnet run -p "$ProjectPath" "$ProjectArgs"
|
2016-03-07 14:24:36 -06:00
|
|
|
if($LASTEXITCODE -ne 0) { throw "Build failed" }
|