Skip to content

Commit

Permalink
Use consistent '(c)' for copyright symbol (PowerShell#5210)
Browse files Browse the repository at this point in the history
- Remove the year about copyright
- Fix casing of `All rights reserved`
- Replace Unicode characters representing single quote with a single quote
  • Loading branch information
SteveL-MSFT authored and daxian-dbw committed Oct 26, 2017
1 parent b1af9ea commit 4bc52d2
Show file tree
Hide file tree
Showing 1,058 changed files with 1,912 additions and 1,912 deletions.
28 changes: 14 additions & 14 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
PowerShell 6.0

Copyright (c) Microsoft Corporation
Copyright (c) Microsoft Corporation. All rights reserved.

All rights reserved.
All rights reserved.

MIT License

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

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

THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion assets/AppImageThirdPartyNotices.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@



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

Permission is hereby granted, free of charge, to any person obtaining
Expand Down
2 changes: 1 addition & 1 deletion assets/pwsh.1.ronn
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,5 @@ These are automatically defined PowerShell-language variables.

## COPYRIGHT

Copyright (c) 2016 Microsoft Corporation.
Copyright (c) Microsoft Corporation.
All rights reserved.
2 changes: 1 addition & 1 deletion demos/SSHRemoting/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Microsoft Windows [Version 10.0.10586]
#
C:\Users\PSUser\Documents>pwsh.exe
PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation. All rights reserved.
PS C:\Users\PSUser\Documents> $session = New-PSSession -HostName WinVM2 -UserName PSRemoteUser
The authenticity of host 'WinVM2 (10.13.37.3)' can't be established.
Expand Down
2 changes: 1 addition & 1 deletion demos/crontab/CronTab/CronTab.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Author = 'Microsoft'
CompanyName = 'Unknown'

# Copyright statement for this module
Copyright = '(c) 2016 Microsoft. All rights reserved.'
Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Sample module for managing CronTab'
Expand Down
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ adf6ad28fa0e: Pull complete
Digest: sha256:92c79c5fcdaf3027626643aef556344b8b4cbdaccf8443f543303319949c7f3a
Status: Downloaded newer image for microsoft/powershell:latest
PowerShell
Copyright © 2016 Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation. All rights reserved.

PS /> Write-Host "Hello, World!"
Hello, World!
Expand Down
2 changes: 1 addition & 1 deletion docs/host-powershell/sample-dotnet1.1/Logic/UseRunspace.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System;
using System.Management.Automation;
Expand Down
8 changes: 4 additions & 4 deletions docs/host-powershell/sample-dotnet1.1/MyApp/Program.cs
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/

using System.Management.Automation;
using System.Reflection;

namespace Application.Test
{
public class Program
public class Program
{
/// <summary>
/// Managed entry point shim, which starts the actual program
/// </summary>
public static int Main(string[] args)
{
// Application needs to use PowerShell AssemblyLoadContext if it needs to create powershell runspace
// PowerShell engine depends on PS ALC to provide the necessary assembly loading/searching support that is missing from .NET Core
// PowerShell engine depends on PS ALC to provide the necessary assembly loading/searching support that is missing from .NET Core
string appBase = System.IO.Path.GetDirectoryName(typeof(Program).GetTypeInfo().Assembly.Location);
System.Console.WriteLine("\nappBase: {0}", appBase);

// Initialize the PS ALC and let it load 'Logic.dll' and start the execution
return (int)PowerShellAssemblyLoadContextInitializer.
InitializeAndCallEntryMethod(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System;
using System.Management.Automation;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/

using System.Management.Automation;
using System.Reflection;

namespace Application.Test
{
public class Program
public class Program
{
/// <summary>
/// Managed entry point shim, which starts the actual program
/// </summary>
public static int Main(string[] args)
{
// Application needs to use PowerShell AssemblyLoadContext if it needs to create powershell runspace
// PowerShell engine depends on PS ALC to provide the necessary assembly loading/searching support that is missing from .NET Core
// PowerShell engine depends on PS ALC to provide the necessary assembly loading/searching support that is missing from .NET Core
string appBase = System.IO.Path.GetDirectoryName(typeof(Program).GetTypeInfo().Assembly.Location);
System.Console.WriteLine("\nappBase: {0}", appBase);

// Initialize the PS ALC and let it load 'Logic.dll' and start the execution
return (int)PowerShellAssemblyLoadContextInitializer.
InitializeAndCallEntryMethod(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/

using System;
using System.Management.Automation;

namespace Application.Test
{
public class Program
public class Program
{
/// <summary>
/// Managed entry point shim, which starts the actual program
Expand Down
Loading

0 comments on commit 4bc52d2

Please sign in to comment.