This repository was archived by the owner on Apr 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
tools/TestAssetsDependencies Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -103,8 +103,8 @@ if ($LastExitCode -ne 0)
103103# install the post-PJnistic stage0
104104$dotnetInstallPath = Join-Path $toolsLocalPath " dotnet-install.ps1"
105105
106- Write-Host " $dotnetInstallPath -Channel "" rel- 1.0.1 "" -InstallDir $env: DOTNET_INSTALL_DIR -Architecture "" $Architecture "" "
107- Invoke-Expression " $dotnetInstallPath -Channel "" rel- 1.0.1 "" -InstallDir $env: DOTNET_INSTALL_DIR -Architecture "" $Architecture "" "
106+ Write-Host " $dotnetInstallPath -Version "" 1.0.4 "" -InstallDir $env: DOTNET_INSTALL_DIR -Architecture "" $Architecture "" "
107+ Invoke-Expression " $dotnetInstallPath -Version "" 1.0.4 "" -InstallDir $env: DOTNET_INSTALL_DIR -Architecture "" $Architecture "" "
108108if ($LastExitCode -ne 0 )
109109{
110110 Write-Output " The .NET CLI installation failed with exit code $LastExitCode "
Original file line number Diff line number Diff line change @@ -164,8 +164,8 @@ if [ $? != 0 ]; then
164164fi
165165
166166# now execute the script
167- echo " installing CLI: $dotnetInstallPath --channel \" rel- 1.0.1 \" --install-dir $DOTNET_INSTALL_DIR --architecture \" $ARCHITECTURE \" "
168- $dotnetInstallPath --channel " rel- 1.0.1 " --install-dir $DOTNET_INSTALL_DIR --architecture " $ARCHITECTURE "
167+ echo " installing CLI: $dotnetInstallPath --version \" 1.0.4 \" --install-dir $DOTNET_INSTALL_DIR --architecture \" $ARCHITECTURE \" "
168+ $dotnetInstallPath --version " 1.0.4 " --install-dir $DOTNET_INSTALL_DIR --architecture " $ARCHITECTURE "
169169if [ $? != 0 ]; then
170170 echo " run-build: Error: Boot-strapping post-PJ stage0 with exit code $? ." >&2
171171 exit $?
Original file line number Diff line number Diff line change 1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+
3+ <PropertyGroup >
4+ <TargetFramework >netcoreapp1.0</TargetFramework >
5+ </PropertyGroup >
6+
7+ </Project >
You can’t perform that action at this time.
0 commit comments