Skip to content

Commit

Permalink
Cake joins the .NET Foundation
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Jun 9, 2016
1 parent c11fca2 commit eb2e1d8
Show file tree
Hide file tree
Showing 1,072 changed files with 5,084 additions and 1,879 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

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

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
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,13 @@ Cake is provided as-is under the MIT license. For more information see [LICENSE]
## Thanks

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.

## Code of Conduct

This project has adopted the code of conduct defined by the [Contributor Covenant](http://contributor-covenant.org/)
to clarify expected behavior in our community.
For more information see the [.NET Foundation Code of Conduct](http://www.dotnetfoundation.org/code-of-conduct).

## .NET Foundation

This project is supported by the [.NET Foundation](http://www.dotnetfoundation.org).
2 changes: 1 addition & 1 deletion nuspec/Cake.Common.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<projectUrl>https://github.com/cake-build/cake</projectUrl>
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
<tags>Cake Script Build</tags>
<developmentDependency>true</developmentDependency>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion nuspec/Cake.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<projectUrl>https://github.com/cake-build/cake</projectUrl>
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
<tags>Cake Script Build</tags>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion nuspec/Cake.Portable.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<!--<mailingListUrl></mailingListUrl>-->
<bugTrackerUrl>https://github.com/cake-build/cake/issues</bugTrackerUrl>
<tags>Cake Script Build</tags>
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
<licenseUrl>https://github.com/cake-build/cake/blob/develop/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
Expand Down
2 changes: 1 addition & 1 deletion nuspec/Cake.Testing.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<projectUrl>https://github.com/cake-build/cake</projectUrl>
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
<tags>Cake Script Build</tags>
<dependencies>
<dependency id="Cake.Core" version="$version$" />
Expand Down
2 changes: 1 addition & 1 deletion nuspec/Cake.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<projectUrl>https://github.com/cake-build/cake</projectUrl>
<iconUrl>https://raw.githubusercontent.com/cake-build/graphics/master/png/cake-medium.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright (c) Patrik Svensson, Mattias Karlsson, Gary Ewan Park and contributors</copyright>
<copyright>Copyright (c) .NET Foundation and Contributors</copyright>
<tags>Cake Script Build</tags>
</metadata>
<files>
Expand Down
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/AssemblyInfoFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Solution.Project.Properties;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Solution.Project.Properties;
using Cake.Core;
using Cake.Core.Diagnostics;
using Cake.Core.IO;
Expand Down Expand Up @@ -44,4 +47,4 @@ public string CreateAndReturnContent()
}
}
}
}
}
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/AssemblyInfoParserFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System.Collections.Generic;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using Cake.Common.Solution.Project.Properties;
using Cake.Core;
using Cake.Core.Diagnostics;
Expand Down Expand Up @@ -117,4 +120,4 @@ private void CreateAssemblyInfoOnDisk(FilePath path)
creator.Create(path, settings);
}
}
}
}
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/Build/AppVeyorFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Build.AppVeyor;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.AppVeyor;
using Cake.Core;
using Cake.Core.IO;
using NSubstitute;
Expand Down Expand Up @@ -29,4 +32,4 @@ public AppVeyorProvider CreateAppVeyorService()
return new AppVeyorProvider(Environment, ProcessRunner);
}
}
}
}
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/Build/AppVeyorInfoFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Build.AppVeyor.Data;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.AppVeyor.Data;
using Cake.Core;
using NSubstitute;

Expand Down Expand Up @@ -84,4 +87,4 @@ public AppVeyorEnvironmentInfo CreateEnvironmentInfo()
return new AppVeyorEnvironmentInfo(Environment);
}
}
}
}
5 changes: 4 additions & 1 deletion src/Cake.Common.Tests/Fixtures/Build/BambooFixture.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.Bamboo;
using Cake.Core;
using NSubstitute;
Expand Down Expand Up @@ -25,4 +28,4 @@ public BambooProvider CreateBambooService()
return new BambooProvider(Environment);
}
}
}
}
5 changes: 4 additions & 1 deletion src/Cake.Common.Tests/Fixtures/Build/BambooInfoFixture.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.Bamboo.Data;
using Cake.Core;
using NSubstitute;
Expand Down Expand Up @@ -70,4 +73,4 @@ public BambooEnvironmentInfo CreateEnvironmentInfo()
return new BambooEnvironmentInfo(Environment);
}
}
}
}
5 changes: 4 additions & 1 deletion src/Cake.Common.Tests/Fixtures/Build/BitriseFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Build.Bitrise;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.Bitrise;
using Cake.Core;
using Cake.Core.IO;
using NSubstitute;
Expand Down
5 changes: 4 additions & 1 deletion src/Cake.Common.Tests/Fixtures/Build/BitriseInfoFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Build.Bitrise.Data;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.Bitrise.Data;
using Cake.Core;
using NSubstitute;

Expand Down
5 changes: 4 additions & 1 deletion src/Cake.Common.Tests/Fixtures/Build/ContinuaCIFixture.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.ContinuaCI;
using Cake.Core;
using NSubstitute;
Expand Down Expand Up @@ -25,4 +28,4 @@ public ContinuaCIProvider CreateContinuaCIService()
return new ContinuaCIProvider(Environment);
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.ContinuaCI.Data;
using Cake.Core;
using NSubstitute;
Expand Down Expand Up @@ -92,4 +95,4 @@ public ContinuaCIChangesetInfo CreateChangesetInfo()
return new ContinuaCIChangesetInfo(Environment, "ContinuaCI.Build.LatestChangeset");
}
}
}
}
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/Build/JenkinsFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Build.Jenkins;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.Jenkins;
using Cake.Core;
using NSubstitute;

Expand All @@ -18,7 +21,7 @@ public void IsRunningOnJenkins()
{
Environment.GetEnvironmentVariable("JENKINS_URL").Returns("http://localhost:8080/view/All/builds");
}

public JenkinsProvider CreateJenkinsProvider()
{
return new JenkinsProvider(Environment);
Expand Down
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/Build/JenkinsInfoFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Build.Jenkins.Data;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.Jenkins.Data;
using Cake.Core;
using NSubstitute;

Expand All @@ -7,7 +10,7 @@ namespace Cake.Common.Tests.Fixtures.Build
internal sealed class JenkinsInfoFixture
{
public ICakeEnvironment Environment { get; set; }

public JenkinsInfoFixture()
{
Environment = Substitute.For<ICakeEnvironment>();
Expand Down
5 changes: 4 additions & 1 deletion src/Cake.Common.Tests/Fixtures/Build/TeamCityFixture.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.TeamCity;
using Cake.Core;
using Cake.Testing;
Expand Down Expand Up @@ -28,4 +31,4 @@ public TeamCityProvider CreateTeamCityService()
return new TeamCityProvider(Environment, Log);
}
}
}
}
5 changes: 4 additions & 1 deletion src/Cake.Common.Tests/Fixtures/Build/TravisCIFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Build.TravisCI;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.TravisCI;
using Cake.Core;
using Cake.Testing;
using NSubstitute;
Expand Down
5 changes: 4 additions & 1 deletion src/Cake.Common.Tests/Fixtures/Build/TravisCIInfoFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Build.TravisCI.Data;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Build.TravisCI.Data;
using Cake.Core;
using NSubstitute;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using Cake.Core;
using Cake.Core.Diagnostics;
using NSubstitute;
Expand Down Expand Up @@ -33,4 +36,4 @@ public LogActionFixture(string format = "Hello {0}!", object[] args = null, Verb
Context = context;
}
}
}
}
5 changes: 4 additions & 1 deletion src/Cake.Common.Tests/Fixtures/IO/FileCopyFixture.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using Cake.Core;
using Cake.Core.IO;
Expand Down Expand Up @@ -70,4 +73,4 @@ private void CreateTargetFile(FilePath sourcePath, FilePath targetPath)
TargetFilePaths.Add(targetPath);
}
}
}
}
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/IO/FileDeleteFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System.Collections.Generic;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using Cake.Core;
using Cake.Core.IO;
using NSubstitute;
Expand Down Expand Up @@ -68,4 +71,4 @@ private void CreatFile(FilePath relativePath, FilePath absolutePath)
_lookup.Add(absolutePath.FullPath, file);
}
}
}
}
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/IO/FileSystemFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Core;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Core;
using Cake.Core.IO;
using Cake.Testing;

Expand Down Expand Up @@ -42,4 +45,4 @@ private static FakeFileSystem CreateFileSystem(ICakeEnvironment environment)
return fileSystem;
}
}
}
}
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/ProcessFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Core;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Core;
using Cake.Core.IO;
using NSubstitute;

Expand Down Expand Up @@ -51,4 +54,4 @@ public IProcess StartNewProcess(string filename, ProcessSettings settings)
return Context.StartAndReturnProcess(filename, settings);
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Solution.Project;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Solution.Project;
using Cake.Common.Tests.Properties;
using Cake.Core;
using Cake.Core.Diagnostics;
Expand Down
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/TextTransformationFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Text;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Text;
using Cake.Core;
using Cake.Core.Text;
using Cake.Testing;
Expand Down Expand Up @@ -29,4 +32,4 @@ public TextTransformation<ITextTransformationTemplate> CreateTextTransformation(
FileSystem, Environment, TransformationTemplate);
}
}
}
}
7 changes: 5 additions & 2 deletions src/Cake.Common.Tests/Fixtures/Tools/CakeRunnerFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Cake.Common.Tools.Cake;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Common.Tools.Cake;
using Cake.Core.IO;
using Cake.Testing;
using Cake.Testing.Fixtures;
Expand Down Expand Up @@ -31,4 +34,4 @@ protected override void RunTool()
runner.ExecuteScript(ScriptPath, Settings);
}
}
}
}
Loading

0 comments on commit eb2e1d8

Please sign in to comment.