Skip to content

Commit eb2e1d8

Browse files
committed
Cake joins the .NET Foundation
1 parent c11fca2 commit eb2e1d8

File tree

1,072 files changed

+5084
-1879
lines changed

Some content is hidden

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

1,072 files changed

+5084
-1879
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors
3+
Copyright (c) .NET Foundation and Contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,13 @@ Cake is provided as-is under the MIT license. For more information see [LICENSE]
131131
## Thanks
132132

133133
A big thank you has to go to [JetBrains](https://www.jetbrains.com) who provide each of the Cake Developers with an [Open Source License](https://www.jetbrains.com/support/community/#section=open-source) for [ReSharper](https://www.jetbrains.com/resharper/) that helps with the development of Cake.
134+
135+
## Code of Conduct
136+
137+
This project has adopted the code of conduct defined by the [Contributor Covenant](http://contributor-covenant.org/)
138+
to clarify expected behavior in our community.
139+
For more information see the [.NET Foundation Code of Conduct](http://www.dotnetfoundation.org/code-of-conduct).
140+
141+
## .NET Foundation
142+
143+
This project is supported by the [.NET Foundation](http://www.dotnetfoundation.org).

nuspec/Cake.Common.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<projectUrl>https://github.com/cake-build/cake</projectUrl>
1212
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
14+
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
1515
<tags>Cake Script Build</tags>
1616
<developmentDependency>true</developmentDependency>
1717
<dependencies>

nuspec/Cake.Core.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<projectUrl>https://github.com/cake-build/cake</projectUrl>
1212
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
14+
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
1515
<tags>Cake Script Build</tags>
1616
</metadata>
1717
<files>

nuspec/Cake.Portable.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<!--<mailingListUrl></mailingListUrl>-->
1717
<bugTrackerUrl>https://github.com/cake-build/cake/issues</bugTrackerUrl>
1818
<tags>Cake Script Build</tags>
19-
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
19+
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
2020
<licenseUrl>https://github.com/cake-build/cake/blob/develop/LICENSE</licenseUrl>
2121
<requireLicenseAcceptance>false</requireLicenseAcceptance>
2222
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>

nuspec/Cake.Testing.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<projectUrl>https://github.com/cake-build/cake</projectUrl>
1212
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
14+
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
1515
<tags>Cake Script Build</tags>
1616
<dependencies>
1717
<dependency id="Cake.Core" version="$version$" />

nuspec/Cake.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<projectUrl>https://github.com/cake-build/cake</projectUrl>
1212
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
14+
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
1515
<tags>Cake Script Build</tags>
1616
</metadata>
1717
<files>

src/Cake.Common.Tests/Fixtures/AssemblyInfoFixture.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using Cake.Common.Solution.Project.Properties;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
using Cake.Common.Solution.Project.Properties;
25
using Cake.Core;
36
using Cake.Core.Diagnostics;
47
using Cake.Core.IO;
@@ -44,4 +47,4 @@ public string CreateAndReturnContent()
4447
}
4548
}
4649
}
47-
}
50+
}

src/Cake.Common.Tests/Fixtures/AssemblyInfoParserFixture.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Collections.Generic;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
using System.Collections.Generic;
25
using Cake.Common.Solution.Project.Properties;
36
using Cake.Core;
47
using Cake.Core.Diagnostics;
@@ -117,4 +120,4 @@ private void CreateAssemblyInfoOnDisk(FilePath path)
117120
creator.Create(path, settings);
118121
}
119122
}
120-
}
123+
}

src/Cake.Common.Tests/Fixtures/Build/AppVeyorFixture.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using Cake.Common.Build.AppVeyor;
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
using Cake.Common.Build.AppVeyor;
25
using Cake.Core;
36
using Cake.Core.IO;
47
using NSubstitute;
@@ -29,4 +32,4 @@ public AppVeyorProvider CreateAppVeyorService()
2932
return new AppVeyorProvider(Environment, ProcessRunner);
3033
}
3134
}
32-
}
35+
}

0 commit comments

Comments
 (0)