Compare commits

...

2 Commits

Author SHA1 Message Date
Matija Koželj
032a1c3112 Remove redundant pause clause in build.bat
Add echo cancellation to clone.bat
2022-12-28 20:43:23 +01:00
Matija Koželj
52af267f6c Add quickstart setup scripts 2022-12-28 20:42:34 +01:00
4 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,3 @@
call setup_environment.bat
call clone.bat
call build.bat

10
docs/Quickstart/build.bat Normal file
View File

@ -0,0 +1,10 @@
@echo off
cd Connected.Components/build
call buildProjects.bat
cd ../..
cd Connected/build
call buildProjects.bat
cd ../..
cd Connected.Framework/build
call buildProjects.bat

View File

@ -0,0 +1,5 @@
@echo off
git clone --branch features/nuget_autobuild https://git.tompit.com/Connected/Connected.Components.git
git clone --branch features/nuget_autobuild https://git.tompit.com/Connected/Connected.git
git clone --branch features/nuget_autobuild https://git.tompit.com/Connected/Connected.Framework.git

View File

@ -0,0 +1,7 @@
@echo off
set /p LOCAL_NUGET="Enter the path to a folder for the local NuGet repository: "
setx /M LOCAL_NUGET "%LOCAL_NUGET%"
setx LOCAL_NUGET "%LOCAL_NUGET%"
mkdir "%LOCAL_NUGET%"