-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandPrompt.bat
More file actions
17 lines (17 loc) · 1.07 KB
/
CommandPrompt.bat
File metadata and controls
17 lines (17 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@CD /D "%~dp0"
@title MvcTesting Command Prompt
@SET PATH=C:\Program Files\dotnet\;%PATH%
@SET PATH=%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\;%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin\;%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\;%ProgramFiles(x86)%\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\;%PATH%
type readme.md
@doskey bc=dotnet clean build.proj $*
@doskey btw=dotnet watch msbuild build.proj /p:RunTests=true /m:1 /p:FilterTest=FullyQualifiedName~$1 $2 $3 $4 $5 $6 $7 $8 $9
@doskey bt=dotnet msbuild build.proj /p:RunTests=true /m:1 /p:FilterTest=FullyQualifiedName~$1 $2 $3 $4 $5 $6 $7 $8 $9
@doskey bw=dotnet watch msbuild build.proj /p:RunTests=true /p:FilterTest=TestCategory!=Slow /m:1 $*
@doskey ba=dotnet msbuild build.proj /p:RunTests=true /m:999 $*
@doskey b=dotnet msbuild build.proj /p:RunTests=true /p:FilterTest=TestCategory!=Slow /m:999 $*
@doskey br=dotnet restore build.proj $*
@echo.
@echo Aliases:
@echo.
@doskey /MACROS
%comspec%