Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 1acf068

Browse files
authored
Remove developer names, add headers, remove unneeded code (#263)
* Remove developer names, add headers, remove unneeded code * Added AzureRM.Profile and AzureRM.Profile.NetCore.Preview dependencies
1 parent 26d2ef8 commit 1acf068

36 files changed

+175
-199
lines changed

PSSwagger/Definitions.psm1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
#
33
# Copyright (c) Microsoft Corporation. All rights reserved.
44
#
5-
# Definitions Module
5+
# Licensed under the MIT license.
6+
#
7+
# PSSwagger Module
68
#
79
#########################################################################################
810

PSSwagger/Generated.Resources.psd1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#########################################################################################
22
#
3-
# Localized Generated.Resources.psd1
3+
# Copyright (c) Microsoft Corporation. All rights reserved.
4+
#
5+
# Licensed under the MIT license.
6+
#
7+
# PSSwagger Module
48
#
59
#########################################################################################
610

PSSwagger/PSCommandVerbMap.ps1

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#########################################################################################
2+
#
3+
# Copyright (c) Microsoft Corporation. All rights reserved.
4+
#
5+
# Licensed under the MIT license.
6+
#
7+
# PSSwagger Module
8+
#
9+
#########################################################################################
110
$script:PSCommandVerbMap = @{
211

312
Access = 'Get'

PSSwagger/PSSwagger.Azure.Helpers/PSSwagger.Azure.Helpers.psm1

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
Microsoft.PowerShell.Core\Set-StrictMode -Version Latest
1+
#########################################################################################
2+
#
3+
# Copyright (c) Microsoft Corporation. All rights reserved.
4+
#
5+
# Licensed under the MIT license.
6+
#
7+
# PSSwagger.Azure.Helpers Module
8+
#
9+
#########################################################################################
10+
Microsoft.PowerShell.Core\Set-StrictMode -Version Latest
211

312
if ((Get-Variable -Name PSEdition -ErrorAction Ignore) -and ('Core' -eq $PSEdition)) {
413
. (Join-Path -Path "$PSScriptRoot" -ChildPath "Test-CoreRequirements.ps1")

PSSwagger/PSSwagger.Common.Helpers/PSSwagger.Common.Helpers.Resources.psd1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
#
33
# Copyright (c) Microsoft Corporation. All rights reserved.
44
#
5-
# Localized PSSwagger.Common.Helpers.Resources.psd1
5+
# Licensed under the MIT license.
6+
#
7+
# PSSwagger Module
68
#
79
#########################################################################################
810

PSSwagger/PSSwagger.Common.Helpers/PSSwagger.Common.Helpers.psm1

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
Microsoft.PowerShell.Core\Set-StrictMode -Version Latest
1+
#########################################################################################
2+
#
3+
# Copyright (c) Microsoft Corporation. All rights reserved.
4+
#
5+
# Licensed under the MIT license.
6+
#
7+
# PSSwagger.Common.Helpers Module
8+
#
9+
#########################################################################################
10+
Microsoft.PowerShell.Core\Set-StrictMode -Version Latest
211
Microsoft.PowerShell.Utility\Import-LocalizedData LocalizedData -filename PSSwagger.Common.Helpers.Resources.psd1
312

413
<#

PSSwagger/PSSwagger.Common.Helpers/PSSwaggerClientTracing.psm1

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
#########################################################################################
2+
#
3+
# Copyright (c) Microsoft Corporation. All rights reserved.
4+
#
5+
# Licensed under the MIT license.
6+
#
7+
# PSSwagger.Common.Helpers Module
8+
#
9+
#########################################################################################
10+
111
class PSSwaggerClientTracing : Microsoft.PowerShell.Commands.PSSwagger.PSSwaggerClientTracingBase {
212
[void] WriteToTraceStream([string]$message) {
313
Write-Verbose -Message $message

PSSwagger/PSSwagger.Common.Helpers/PSSwaggerNetUtilities.Code.ps1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
namespace Microsoft.PowerShell.Commands.PSSwagger
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
// Licensed under the MIT license.
4+
namespace Microsoft.PowerShell.Commands.PSSwagger
25
{
36
using Microsoft.Rest;
47
using System;

PSSwagger/PSSwagger.Common.Helpers/PSSwaggerNetUtilities.Unsafe.Code.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
// Licensed under the MIT license.
4+
5+
// PSSwagger.Common.Helpers Module
16
namespace Microsoft.PowerShell.Commands.PSSwagger
27
{
38
using Microsoft.Rest;

PSSwagger/PSSwagger.Common.Helpers/PSSwaggerServiceCredentialsHelpers.psm1

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#########################################################################################
2+
#
3+
# Copyright (c) Microsoft Corporation. All rights reserved.
4+
#
5+
# Licensed under the MIT license.
6+
#
7+
# PSSwagger.Common.Helpers Module
8+
#
9+
#########################################################################################
110
function Get-BasicAuthCredentialInternal {
211
[CmdletBinding()]
312
param(

0 commit comments

Comments
 (0)