Skip to content

Commit 30bc9ee

Browse files
committed
Remove "All Rights Reserved" from copyright notices
Per Microsoft policy at: https://docs.opensource.microsoft.com/content/releasing/copyright-headers.html All copyright notices no longer include "All Rights Reserved" and the comment style has been updated to be consistent with policy.
1 parent 304a21e commit 30bc9ee

Some content is hidden

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

43 files changed

+95
-125
lines changed

examples/SampleModule.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Author = '<name>'
4141
CompanyName = 'Unknown'
4242

4343
# Copyright statement for this module
44-
Copyright = '(c) 2016 <name>. All rights reserved.'
44+
Copyright = '(c) 2021 <name>.'
4545

4646
# Description of the functionality provided by this module
4747
Description = 'Some description. This is required by the PowerShell Gallery'

src/controls/animatedStatusBar.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*---------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
*--------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
43

54
import {
65
Disposable,

src/controls/checkboxQuickPick.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*---------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
*--------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
43

54
import vscode = require("vscode");
65

src/debugAdapter.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*---------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
*--------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
43

54
import { connect, Socket } from "net";
65
import { DebugAdapter, Event, DebugProtocolMessage, EventEmitter } from "vscode";

src/features/CodeActions.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*---------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
*--------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
43

54
import vscode = require("vscode");
65
import Window = vscode.window;

src/features/Console.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*---------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
*--------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
43

54
import vscode = require("vscode");
65
import { NotificationType, RequestType } from "vscode-languageclient";

src/features/CustomViews.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*---------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
*--------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
43

54
import * as path from "path";
65
import * as vscode from "vscode";

src/features/DebugSession.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*---------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
*--------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
43

54
import vscode = require("vscode");
65
import { CancellationToken, DebugConfiguration, DebugConfigurationProvider,

src/features/Examples.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*---------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
*--------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
43

54
import path = require("path");
65
import vscode = require("vscode");

src/features/ExpandAlias.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*---------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
*--------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
43

54
import vscode = require("vscode");
65
import Window = vscode.window;

0 commit comments

Comments
 (0)