Skip to content

Commit 4bc52d2

Browse files
SteveL-MSFTdaxian-dbw
authored andcommitted
Use consistent '(c)' for copyright symbol (#5210)
- Remove the year about copyright - Fix casing of `All rights reserved` - Replace Unicode characters representing single quote with a single quote
1 parent b1af9ea commit 4bc52d2

1,058 files changed

Lines changed: 1912 additions & 1912 deletions

File tree

Some content is hidden

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

LICENSE.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
PowerShell 6.0
22

3-
Copyright (c) Microsoft Corporation
3+
Copyright (c) Microsoft Corporation. All rights reserved.
44

5-
All rights reserved.
5+
All rights reserved.
66

77
MIT License
88

9-
Permission is hereby granted, free of charge, to any person obtaining a copy
10-
of this software and associated documentation files (the ""Software""), to deal
11-
in the Software without restriction, including without limitation the rights
12-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13-
copies of the Software, and to permit persons to whom the Software is
9+
Permission is hereby granted, free of charge, to any person obtaining a copy
10+
of this software and associated documentation files (the ""Software""), to deal
11+
in the Software without restriction, including without limitation the rights
12+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13+
copies of the Software, and to permit persons to whom the Software is
1414
furnished to do so, subject to the following conditions:
1515

16-
The above copyright notice and this permission notice shall be included in all
16+
The above copyright notice and this permission notice shall be included in all
1717
copies or substantial portions of the Software.
1818

19-
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2525
SOFTWARE.

assets/AppImageThirdPartyNotices.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77

8-
Copyright 1991-2016 Unicode, Inc. All rights reserved.
8+
Copyright (c) 1991-2016 Unicode, Inc. All rights reserved.
99
Distributed under the Terms of Use in http://www.unicode.org/copyright.html
1010

1111
Permission is hereby granted, free of charge, to any person obtaining

assets/pwsh.1.ronn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,5 +119,5 @@ These are automatically defined PowerShell-language variables.
119119

120120
## COPYRIGHT
121121

122-
Copyright (c) 2016 Microsoft Corporation.
122+
Copyright (c) Microsoft Corporation.
123123
All rights reserved.

demos/SSHRemoting/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Microsoft Windows [Version 10.0.10586]
175175
#
176176
C:\Users\PSUser\Documents>pwsh.exe
177177
PowerShell
178-
Copyright (C) Microsoft Corporation. All rights reserved.
178+
Copyright (c) Microsoft Corporation. All rights reserved.
179179
180180
PS C:\Users\PSUser\Documents> $session = New-PSSession -HostName WinVM2 -UserName PSRemoteUser
181181
The authenticity of host 'WinVM2 (10.13.37.3)' can't be established.

demos/crontab/CronTab/CronTab.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Author = 'Microsoft'
1919
CompanyName = 'Unknown'
2020

2121
# Copyright statement for this module
22-
Copyright = '(c) 2016 Microsoft. All rights reserved.'
22+
Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.'
2323

2424
# Description of the functionality provided by this module
2525
Description = 'Sample module for managing CronTab'

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ adf6ad28fa0e: Pull complete
4646
Digest: sha256:92c79c5fcdaf3027626643aef556344b8b4cbdaccf8443f543303319949c7f3a
4747
Status: Downloaded newer image for microsoft/powershell:latest
4848
PowerShell
49-
Copyright © 2016 Microsoft Corporation. All rights reserved.
49+
Copyright (c) Microsoft Corporation. All rights reserved.
5050

5151
PS /> Write-Host "Hello, World!"
5252
Hello, World!

docs/host-powershell/sample-dotnet1.1/Logic/UseRunspace.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/********************************************************************++
2-
Copyright (c) Microsoft Corporation. All rights reserved.
2+
Copyright (c) Microsoft Corporation. All rights reserved.
33
--********************************************************************/
44
using System;
55
using System.Management.Automation;

docs/host-powershell/sample-dotnet1.1/MyApp/Program.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
/********************************************************************++
2-
Copyright (c) Microsoft Corporation. All rights reserved.
2+
Copyright (c) Microsoft Corporation. All rights reserved.
33
--********************************************************************/
44

55
using System.Management.Automation;
66
using System.Reflection;
77

88
namespace Application.Test
99
{
10-
public class Program
10+
public class Program
1111
{
1212
/// <summary>
1313
/// Managed entry point shim, which starts the actual program
1414
/// </summary>
1515
public static int Main(string[] args)
1616
{
1717
// Application needs to use PowerShell AssemblyLoadContext if it needs to create powershell runspace
18-
// PowerShell engine depends on PS ALC to provide the necessary assembly loading/searching support that is missing from .NET Core
18+
// PowerShell engine depends on PS ALC to provide the necessary assembly loading/searching support that is missing from .NET Core
1919
string appBase = System.IO.Path.GetDirectoryName(typeof(Program).GetTypeInfo().Assembly.Location);
2020
System.Console.WriteLine("\nappBase: {0}", appBase);
21-
21+
2222
// Initialize the PS ALC and let it load 'Logic.dll' and start the execution
2323
return (int)PowerShellAssemblyLoadContextInitializer.
2424
InitializeAndCallEntryMethod(

docs/host-powershell/sample-dotnet2.0-powershell.beta.1/Logic/UseRunspace.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/********************************************************************++
2-
Copyright (c) Microsoft Corporation. All rights reserved.
2+
Copyright (c) Microsoft Corporation. All rights reserved.
33
--********************************************************************/
44
using System;
55
using System.Management.Automation;

docs/host-powershell/sample-dotnet2.0-powershell.beta.1/MyApp/Program.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
/********************************************************************++
2-
Copyright (c) Microsoft Corporation. All rights reserved.
2+
Copyright (c) Microsoft Corporation. All rights reserved.
33
--********************************************************************/
44

55
using System.Management.Automation;
66
using System.Reflection;
77

88
namespace Application.Test
99
{
10-
public class Program
10+
public class Program
1111
{
1212
/// <summary>
1313
/// Managed entry point shim, which starts the actual program
1414
/// </summary>
1515
public static int Main(string[] args)
1616
{
1717
// Application needs to use PowerShell AssemblyLoadContext if it needs to create powershell runspace
18-
// PowerShell engine depends on PS ALC to provide the necessary assembly loading/searching support that is missing from .NET Core
18+
// PowerShell engine depends on PS ALC to provide the necessary assembly loading/searching support that is missing from .NET Core
1919
string appBase = System.IO.Path.GetDirectoryName(typeof(Program).GetTypeInfo().Assembly.Location);
2020
System.Console.WriteLine("\nappBase: {0}", appBase);
21-
21+
2222
// Initialize the PS ALC and let it load 'Logic.dll' and start the execution
2323
return (int)PowerShellAssemblyLoadContextInitializer.
2424
InitializeAndCallEntryMethod(

0 commit comments

Comments
 (0)