Last active
July 3, 2021 11:57
-
-
Save leppie/580537b4d309b930a6f8 to your computer and use it in GitHub Desktop.
Helper script for testing Roslyn C# compiler bits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
@setlocal | |
rem arg can be blank to test all or one of Emit, Symbol, Semantic, Syntax (or WinRT, CommandLine, these untested) | |
set Area=%1 | |
if "%Area%" == "" set Area=* | |
msbuild /v:m /m BuildAndTest.proj /p:IncludePattern=Roslyn.Compilers.CSharp.%Area%.UnitTests.dll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment