8000 Update Copyright notice to remove year by kwiknick · Pull Request #3204 · PowerShell/PowerShell · GitHub
[go: up one dir, main page]

Skip to content

Update Copyright notice to remove year #3204

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Mar 5, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

10000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
using System.Management.Automation.Runspaces;
using System.Management.Automation.Tracing;
using System.Globalization;

#if CORECLR
using System.Runtime.InteropServices;
#endif
Expand Down Expand Up @@ -109,7 +110,7 @@ public int Start(string consoleFilePath, string[] args)
try
{
#if CORECLR
var banner = ManagedEntranceStrings.ShellBannerNonWindowsPowerShell;
var banner = ManagedEntranceStrings.ShellBannerNonWindowsPowerShell;
#else
var banner = ManagedEntranceStrings.ShellBanner;
#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@
</resheader>
<data name="ShellBanner" xml:space="preserve">
<value>Windows PowerShell
Copyright (C) 2016 Microsoft Corporation. All rights reserved.</value>
Copyright (C) Microsoft Corporation. All rights reserved.</value>
</data>
<data name="ShellBannerNonWindowsPowerShell" xml:space="preserve">
<value>PowerShell
Copyright (C) 2016 Microsoft Corporation. All rights reserved.</value>
Copyright (C) Microsoft Corporation. All rights reserved.</value>
</data>
<data name="ShellHelp" xml:space="preserve">
<value>PowerShell[.exe] [-PSConsoleFile &lt;file&gt; | -Version &lt;version&gt;]
Expand Down
0