summaryrefslogtreecommitdiff
path: root/tests/src/performance/linkbench/scripts/clone.cmd
blob: ae28d41d08688bbfe21ddd37efe0282e460b5b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@echo off

rmdir /s /q LinkBench

set ROOT=%cd%\LinkBench
mkdir LinkBench 2> nul
pushd %ROOT%

mkdir HelloWorld
cd HelloWorld
dotnet new console
if errorlevel 1 exit /b 1
cd ..

mkdir WebAPI
cd WebAPI
dotnet new webapi
if errorlevel 1 exit /b 1
cd ..

git clone https://github.com/aspnet/JitBench -b dev
if errorlevel 1 exit /b 1

git clone http://github.com/dotnet/corefx
if errorlevel 1 exit /b 1

git clone https://github.com/dotnet/roslyn.git
if errorlevel 1 exit /b 1

popd