Skip to content

Commit 669c57c

Browse files
authored
Merge branch 'network-march' into UpdateAzureFirewallExamples
2 parents 37ef16b + 79067dc commit 669c57c

File tree

108 files changed

+11050
-4104
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+11050
-4104
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ before_install:
2525

2626
# https://github.com/travis-ci/travis-ci/issues/1066#issuecomment-383489298
2727
script:
28-
- sudo dotnet msbuild build.proj /t:Full /p:ExcludeAuthenticators=true /p:Configuration=$CONFIG /p:TestsToRun=$TESTS_TO_RUN || travis_terminate 1
28+
- sudo dotnet msbuild build.proj /t:Build;StaticAnalysis;Test /p:ExcludeAuthenticators=true;Configuration=$CONFIG;TestsToRun=$TESTS_TO_RUN
2929

3030
after_success:
3131
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then

CodeSign.targets

Lines changed: 0 additions & 97 deletions
This file was deleted.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,12 @@ _This project has adopted the [Microsoft Open Source Code of Conduct][CodeOfCond
186186
[MicrosoftAzureDocs]: https://docs.microsoft.com/en-us/azure/
187187
[PowerShellDocs]: https://docs.microsoft.com/en-us/powershell/
188188

189-
[InstallationGuide]: https://docs.microsoft.com/en-us/powershell/azure/install-azurerm-ps
189+
[InstallationGuide]: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps
190190
[GettingStartedGuide]: https://docs.microsoft.com/en-us/powershell/azure/get-started-azureps
191191
[PersistedCredentialsGuide]: https://docs.microsoft.com/en-us/powershell/azure/context-persistence
192192

193-
[ConnectAzAccount]: https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/connect-azurermaccount
194-
[GetAzContext]: https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/get-azurermcontext
195-
[GetAzSubscription]: https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/get-azurermsubscription
196-
[SetAzContext]: https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/set-azurermcontext
197-
[SendFeedback]: https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/send-feedback
193+
[ConnectAzAccount]: https://docs.microsoft.com/en-us/powershell/module/az.accounts/connect-azaccount
194+
[GetAzContext]: https://docs.microsoft.com/en-us/powershell/module/az.accounts/get-azcontext
195+
[GetAzSubscription]: https://docs.microsoft.com/en-us/powershell/module/az.accounts/get-azsubscription
196+
[SetAzContext]: https://docs.microsoft.com/en-us/powershell/module/az.accounts/set-azcontext
197+
[SendFeedback]: https://docs.microsoft.com/en-us/powershell/module/az.accounts/send-feedback

Repo.props

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
<!-- Custom -->
44
<PropertyGroup>
55
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
6-
<RepoSrc>$(RepoRoot)src\</RepoSrc>
7-
<RepoArtifacts>$(RepoRoot)artifacts\</RepoArtifacts>
8-
<RepoTools>$(RepoRoot)tools\</RepoTools>
6+
<RepoSrc>$(RepoRoot)src/</RepoSrc>
7+
<RepoArtifacts>$(RepoRoot)artifacts/</RepoArtifacts>
8+
<RepoTools>$(RepoRoot)tools/</RepoTools>
9+
<RepoBuild>$(RepoRoot)build/</RepoBuild>
910
</PropertyGroup>
1011

1112
</Project>

azure-powershell-linux.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
resources:
2+
- repo: self
3+
fetchDepth: 1
4+
5+
jobs:
6+
- template: build/jobs.yml
7+
parameters:
8+
vmImage: 'Ubuntu-16.04'

azure-powershell-macOS.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
resources:
2+
- repo: self
3+
fetchDepth: 1
4+
5+
jobs:
6+
- template: build/jobs.yml
7+
parameters:
8+
vmImage: 'macOS-10.13'

azure-powershell-windows.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
resources:
2+
- repo: self
3+
fetchDepth: 1
4+
5+
jobs:
6+
- template: build/jobs.yml
7+
parameters:
8+
vmImage: 'VS2017-Win2016'

0 commit comments

Comments
 (0)