File tree Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -12,20 +12,33 @@ cd ..
12
12
REM echo "Downloading native..."
13
13
REM call download-native.cmd
14
14
15
- nuget restore
15
+ @ REM --------------------------------
16
+ @ echo Building RocksDbNative
17
+ cd RocksDbNative
18
+ @ echo Restoring...
19
+ msbuild /t:Restore
16
20
@ if %errorlevel% neq 0 goto oops
17
-
18
- msbuild /p:Configuration=Release /t:Rebuild,Pack RocksDbNative\RocksDbNative.csproj
21
+ @ echo Building...
22
+ msbuild /p:Configuration=Release /t:Rebuild,Pack
19
23
@ if %errorlevel% neq 0 goto oops
20
-
21
- msbuild /p:Configuration=Release /t:Rebuild,Pack RocksDbSharp\RocksDbSharp.csproj
24
+ @ echo Installing...
25
+ move /y bin\Release\*.nupkg ..\nuget\
22
26
@ if %errorlevel% neq 0 goto oops
27
+ cd ..
23
28
24
- move /y RocksDbSharp\bin\Release\*.nupkg .\nuget\
29
+ @ REM --------------------------------
30
+ @ echo Building RocksDbSharp
31
+ cd RocksDbSharp
32
+ @ echo Restoring...
33
+ msbuild /t:Restore
25
34
@ if %errorlevel% neq 0 goto oops
26
-
27
- move /y RocksDbNative\bin\Release\*.nupkg .\nuget\
35
+ @ echo Building...
36
+ msbuild /p:Configuration=Release /t:Rebuild,Pack
37
+ @ if %errorlevel% neq 0 goto oops
38
+ @ echo Installing...
39
+ move /y bin\Release\*.nupkg ..\nuget\
28
40
@ if %errorlevel% neq 0 goto oops
41
+ cd ..
29
42
30
43
:good
31
44
popd
You can’t perform that action at this time.
0 commit comments