-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into kamboj-prjwl/release-network-Microsoft.Netwo…
…rk-2024-05-01
- Loading branch information
Showing
227 changed files
with
27,059 additions
and
44 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
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
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,3 @@ | ||
# Common Engineering System | ||
|
||
Updates under this directory should only be made in the `azure-sdk-tools` repo as any changes under this directory outside of that repo will end up getting overwritten with future updates. For information about making updates see [common engineering system docs](https://github.com/Azure/azure-sdk-tools/blob/main/doc/common/common_engsys.md) |
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,17 @@ | ||
@echo off | ||
|
||
REM Copyright (c) Microsoft Corporation. All rights reserved. | ||
REM Licensed under the MIT License. | ||
|
||
setlocal | ||
|
||
for /f "usebackq delims=" %%i in (`where pwsh 2^>nul`) do ( | ||
set _cmd=%%i | ||
) | ||
|
||
if "%_cmd%"=="" ( | ||
echo Error: PowerShell not found. Please visit https://github.com/powershell/powershell for install instructions. | ||
exit /b 2 | ||
) | ||
|
||
call "%_cmd%" -NoLogo -NoProfile -File "%~dpn0.ps1" %* |
Oops, something went wrong.