This repository was archived by the owner on Dec 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
- @ ECHO off
2
- SETLOCAL
1
+ @ echo off
2
+ setlocal
3
3
4
4
set Configuration = Release
5
5
6
6
if %1 .== . (
7
7
echo Need path to Unity
8
- EXIT /b 1
8
+ exit /b 1
9
9
)
10
10
11
11
set UnityPath = %1
@@ -39,12 +39,13 @@ if not exist "%Unity%" (
39
39
cd ..
40
40
41
41
call common\nuget.exe restore GitHub.Unity.sln
42
+ echo xbuild GitHub.Unity.sln /property:Configuration=%Configuration%
42
43
call xbuild GitHub.Unity.sln /property:Configuration=%Configuration%
43
44
44
- del /Q unity/ PackageProject/ Assets/ Editor/ GitHub/ deleteme*
45
- del /Q unity/ PackageProject/ Assets/ Editor/ GitHub/ *.pdb
46
- del /Q unity/ PackageProject/ Assets/ Editor/ GitHub/ *.pdb.meta
47
- del /Q unity/ PackageProject/ Assets/ Editor/ GitHub/ *.xml
45
+ del /Q unity\ PackageProject\ Assets\ Editor\ GitHub\ deleteme*
46
+ del /Q unity\ PackageProject\ Assets\ Editor\ GitHub\ *.pdb
47
+ del /Q unity\ PackageProject\ Assets\ Editor\ GitHub\ *.pdb.meta
48
+ del /Q unity\ PackageProject\ Assets\ Editor\ GitHub\ *.xml
48
49
49
50
for /f tokens^ =^ 2^ usebackq^ delims^ =^ " %%G in (`find " const string Version" common\SolutionInfo.cs`) do call :Package %%G
50
51
@@ -60,4 +61,4 @@ if not exist "%Unity%" (
60
61
:End
61
62
echo Completed
62
63
)
63
- ENDLOCAL
64
+ endlocal
You can’t perform that action at this time.
0 commit comments