Skip to content

Commit

Permalink
Import build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Cauchois committed Nov 16, 2016
1 parent a845efd commit ba1c82d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
26 changes: 26 additions & 0 deletions jenkins/windows_csharp.cmd
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%
14 changes: 14 additions & 0 deletions jenkins/windows_csharp_mf.cmd
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%

0 comments on commit ba1c82d

Please sign in to comment.