Skip to content

Commit

Permalink
Code Quality: Update source to show .NET Foundation copyright (#1813)
Browse files Browse the repository at this point in the history
* Change package company to .NET Foundation in `Directory.Build.props`

* Update package manufacturer in WIX project

* Update copyright in `sys` module
  • Loading branch information
Lamparter authored Nov 27, 2024
1 parent 94565b4 commit b48e24b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<AssemblyFileRevision Condition="'$(ReleaseLevel)' == 'final'">1000</AssemblyFileRevision>

<Product>IronPython</Product>
<Company>IronPython Team</Company>
<CopyrightIronPython Contributors</Copyright>
<Company>.NET Foundation</Company>
<Copyright.NET Foundation and Contributors</Copyright>
<AssemblyVersion>$(MajorVersion).$(MinorVersion).$(MicroVersion).$(AssemblyRevision)</AssemblyVersion>
<FileVersion>$(MajorVersion).$(MinorVersion).$(MicroVersion).$(AssemblyFileRevision)</FileVersion>
<InformationalVersion>$(MSBuildProjectName) $(MajorVersion).$(MinorVersion).$(MicroVersion) $(ReleaseLevel) $(ReleaseSerial)</InformationalVersion>
Expand Down
2 changes: 1 addition & 1 deletion Package/msi/Version.wxi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Include Id="VersionNumberInclude" xmlns="http://wixtoolset.org/schemas/v4/wxs">
<?define ProductShortName = "IronPython" ?>
<?define Manufacturer = "IronPython Team" ?>
<?define Manufacturer = ".NET Foundation" ?>
</Include>
2 changes: 1 addition & 1 deletion Src/IronPython/Modules/sys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static class SysModule {
// argv is set by PythonContext and only on the initial load
public static readonly string byteorder = BitConverter.IsLittleEndian ? "little" : "big";
// builtin_module_names is set by PythonContext and updated on reload
public const string copyright = "Copyright (c) IronPython Team";
public const string copyright = "Copyright (c) .NET Foundation and Contributors";

private static string GetPrefix() {
string prefix;
Expand Down

0 comments on commit b48e24b

Please sign in to comment.