diff options
author | James Ko <jamesqko@gmail.com> | 2016-04-03 18:12:27 -0400 |
---|---|---|
committer | James Ko <jamesqko@gmail.com> | 2016-04-03 18:12:27 -0400 |
commit | 7dfeac95b92db995921ac7fa8dfb5f7e9afd3bad (patch) | |
tree | 4af981f5fe5f279a32e0c302c94304696c7693c1 /tests | |
parent | 48ce56b9fcd1b5edf5ca28f83d7b623b71e5c925 (diff) | |
download | coreclr-7dfeac95b92db995921ac7fa8dfb5f7e9afd3bad.tar.gz coreclr-7dfeac95b92db995921ac7fa8dfb5f7e9afd3bad.tar.bz2 coreclr-7dfeac95b92db995921ac7fa8dfb5f7e9afd3bad.zip |
Remove UseRoslynCompiler variable from the build system
Diffstat (limited to 'tests')
-rw-r--r-- | tests/buildtest.cmd | 1 | ||||
-rw-r--r-- | tests/override.targets | 2 | ||||
-rw-r--r-- | tests/runtest.cmd | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/tests/buildtest.cmd b/tests/buildtest.cmd index 99ab1a9f7a..349c0abc79 100644 --- a/tests/buildtest.cmd +++ b/tests/buildtest.cmd @@ -150,7 +150,6 @@ if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles(x86)%\MSBuild\14.0\Bin goto :CheckMSBuild14 :MSBuild14 set _msbuildexe="%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe" -set UseRoslynCompiler=true :CheckMSBuild14 if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles%\MSBuild\14.0\Bin\MSBuild.exe" if not exist %_msbuildexe% echo Error: Could not find MSBuild.exe. Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions. && exit /b 1 diff --git a/tests/override.targets b/tests/override.targets index 71a8b1f4f5..8593fe6aef 100644 --- a/tests/override.targets +++ b/tests/override.targets @@ -4,7 +4,7 @@ --> <Import Project="mono.targets" Condition="'$(OsEnvironment)'=='Unix'" /> - <Import Project="roslyn.xplat.targets" Condition="'$(OsEnvironment)'=='Unix' and '$(UseRoslynCompiler)'=='true'" /> + <Import Project="roslyn.xplat.targets" Condition="'$(OsEnvironment)'=='Unix'" /> <!-- Contains overrides for the nuget reference resolution. The regular nuget reference resolution will not copy references local, which we need in order to correctly execute the xunit project --> <Import Project="xunitwrapper.targets" Condition="'$(IsXunitWrapperProject)'=='true'" /> diff --git a/tests/runtest.cmd b/tests/runtest.cmd index 80ed02691a..794ad73bd6 100644 --- a/tests/runtest.cmd +++ b/tests/runtest.cmd @@ -105,7 +105,6 @@ if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles(x86)%\MSBuild\14.0\Bin goto :CheckMSBuild14 :MSBuild14 set _msbuildexe="%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe" -set UseRoslynCompiler=true :CheckMSBuild14 if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles%\MSBuild\14.0\Bin\MSBuild.exe" if not exist %_msbuildexe% echo Error: Could not find MSBuild.exe. Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions. && exit /b 1 |