Skip to content

Commit

Permalink
(GH-16) Update copyright information
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorkstromm committed Jun 6, 2017
1 parent d7564ce commit 70a6292
Show file tree
Hide file tree
Showing 74 changed files with 368 additions and 99 deletions.
27 changes: 13 additions & 14 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
MIT License
The MIT License (MIT)

Copyright (c) 2017 Martin Björkström
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 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:
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
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
SOFTWARE.
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.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
# cake-server
Cake server for code generation and script analysis

## 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).
6 changes: 5 additions & 1 deletion src/Cake.Bakery.IntegrationTests/IntegrationFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using System.Diagnostics;
// 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.Diagnostics;
using System.IO;
using Cake.Scripting.Abstractions;
using Cake.Scripting.Abstractions.Models;
Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Bakery.IntegrationTests/IntegrationTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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.Scripting.Abstractions.Models;
using Xunit;

Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Bakery.Tests/Unit/Arguments/ArgumentParserTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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.Bakery.Arguments;
using Xunit;

Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Bakery/Arguments/ArgumentParser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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 System.Collections.Generic;
using System.Linq;
using Cake.Core;
Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Bakery/Configuration/CakeConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using Cake.Core.Configuration;
// 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.Configuration;

namespace Cake.Bakery.Configuration
{
Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Bakery/Constants.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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;

namespace Cake.Bakery
{
Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Bakery/Diagnostics/CakeLog.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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 System.Collections.Generic;
using Cake.Core.Diagnostics;
using Microsoft.Extensions.Logging;
Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Bakery/Packaging/DefaultPackageInstaller.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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 System.Collections.Generic;
using System.Linq;
using Cake.Core;
Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Bakery/Polyfill/EnvironmentHelper.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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;

namespace Cake.Bakery.Polyfill
{
Expand Down
8 changes: 6 additions & 2 deletions src/Cake.Bakery/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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 System.Diagnostics;
using System.Linq;
using System.Threading;
Expand Down Expand Up @@ -96,4 +100,4 @@ public static int Main()
return 0;
}
}
}
}
6 changes: 5 additions & 1 deletion src/Cake.Bakery/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
using System.Runtime.CompilerServices;
// 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.Runtime.CompilerServices;

[assembly: InternalsVisibleTo("Cake.Bakery.Tests")]
6 changes: 5 additions & 1 deletion src/Cake.Scripting.Abstractions/IScriptGenerationService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using Cake.Scripting.Abstractions.Models;
// 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.Scripting.Abstractions.Models;

namespace Cake.Scripting.Abstractions
{
Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Scripting.Abstractions/Models/CakeScript.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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;

namespace Cake.Scripting.Abstractions.Models
{
Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Scripting.Abstractions/Models/FileChange.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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 System.Collections.ObjectModel;

namespace Cake.Scripting.Abstractions.Models
Expand Down
8 changes: 6 additions & 2 deletions src/Cake.Scripting.Abstractions/Models/LineChange.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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;

namespace Cake.Scripting.Abstractions.Models
{
Expand Down Expand Up @@ -42,4 +46,4 @@ public override int GetHashCode()
* (37 + EndColumn));
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,4 @@ public static void NonGeneric_ExtensionMethodWithReservedKeywordParameter(this I
throw new NotImplementedException();
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ public static int Cached_Obsolete_ExplicitError_WithMessage(this ICakeContext co
throw new NotImplementedException();
}
}
}
}
6 changes: 5 additions & 1 deletion src/Cake.Scripting.Tests/Extensions/FileSystemExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using System.IO;
// 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.IO;
using Cake.Core.IO;

namespace Cake.Scripting.Tests.Extensions
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Scripting.Tests/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ public static string NormalizeGeneratedCode(this string text)
.TrimEnd('\r', '\n');
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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.Diagnostics;
using Cake.Core.IO;
using Cake.Scripting.IO;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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 System.Collections.Generic;
using System.IO;
using System.Linq;
Expand Down Expand Up @@ -72,4 +76,4 @@ public string Generate(string name)
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ protected override CakeMethodAliasGenerator CreateGenerator()
return new CakeMethodAliasGenerator(typeEmitter, parameterEmitter);
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using Cake.Scripting.CodeGen.Generators;
// 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.Scripting.CodeGen.Generators;
using Cake.Scripting.Reflection.Emitters;

namespace Cake.Scripting.Tests.Fixtures
Expand All @@ -12,4 +16,4 @@ protected override CakePropertyAliasGenerator CreateGenerator()
return new CakePropertyAliasGenerator(new TypeEmitter());
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ public void Should_Return_Correct_Generated_Code_For_Obsolete_Methods(string nam
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using Cake.Scripting.Tests.Fixtures;
// 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.Scripting.Tests.Fixtures;
using Xunit;

namespace Cake.Scripting.Tests.Unit.CodeGen
Expand Down
6 changes: 5 additions & 1 deletion src/Cake.Scripting.Tests/Unit/IO/BufferedFileSystemTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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 System.Collections.Generic;
using System.IO;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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 System.IO;
using System.Reflection;
using Cake.Scripting.Abstractions.Models;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
namespace Cake.Scripting.Transport.Tests.Fixtures.Serialization
// 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.

namespace Cake.Scripting.Transport.Tests.Fixtures.Serialization
{
public sealed class FileChangeSerializerFixture : SerializerFixture
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// 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 System.IO;

Expand Down Expand Up @@ -34,4 +38,4 @@ public void Dispose()
Reader?.Dispose();
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using Cake.Scripting.Abstractions;
// 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.Scripting.Abstractions;
using Cake.Scripting.Transport.Tcp.Client;
using Cake.Scripting.Transport.Tcp.Server;
using Microsoft.Extensions.Logging;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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.Scripting.Abstractions;
using Cake.Scripting.Abstractions.Models;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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.Scripting.Abstractions.Models;
using Cake.Scripting.Transport.Tcp.Client;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
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.Scripting.Abstractions.Models;
using Cake.Scripting.Transport.Serialization;
using Cake.Scripting.Transport.Tests.Fixtures.Serialization;
Expand Down
Loading

0 comments on commit 70a6292

Please sign in to comment.