forked from Azure/azure-iot-sdk-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pierre Cauchois
committed
Nov 16, 2016
1 parent
a845efd
commit ba1c82d
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@REM Copyright (c) Microsoft. All rights reserved. | ||
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
setlocal | ||
|
||
set build-root=%~dp0.. | ||
rem // resolve to fully qualified path | ||
for %%i in ("%build-root%") do set build-root=%%~fi | ||
|
||
REM -- C# -- | ||
cd %build-root%\device\build | ||
call build.cmd | ||
if errorlevel 1 goto :eof | ||
cd %build-root% | ||
|
||
REM -- C# Service SDK -- | ||
cd %build-root%\service\build | ||
call build.cmd | ||
if errorlevel 1 goto :eof | ||
cd %build-root% | ||
|
||
REM -- Device Explorer -- | ||
cd %build-root%\tools\DeviceExplorer\build | ||
call build.cmd | ||
if errorlevel 1 goto :eof | ||
cd %build-root% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@REM Copyright (c) Microsoft. All rights reserved. | ||
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
setlocal | ||
|
||
set build-root=%~dp0.. | ||
rem // resolve to fully qualified path | ||
for %%i in ("%build-root%") do set build-root=%%~fi | ||
|
||
REM -- C# -- | ||
cd %build-root%\device\build | ||
call build_mf.cmd | ||
if errorlevel 1 goto :eof | ||
cd %build-root% |