From 8035ad23988c7dba7ebb763d0558854c43a55270 Mon Sep 17 00:00:00 2001 From: "C. Augusto Proiete" Date: Thu, 26 Nov 2020 20:36:22 -0400 Subject: [PATCH] Add license header to source files --- src/Cake.MinVer/AddInInformation.cs | 16 +++++++++++++++- src/Cake.MinVer/IMinVerGlobalTool.cs | 16 +++++++++++++++- src/Cake.MinVer/IMinVerLocalTool.cs | 16 +++++++++++++++- src/Cake.MinVer/IMinVerTool.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerAliases.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerAutoIncrement.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerEnvironmentVariables.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerGlobalTool.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerLocalTool.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerSettings.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerSettingsExtensions.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerTool.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerToolBase.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerVerbosity.cs | 16 +++++++++++++++- src/Cake.MinVer/MinVerVersion.cs | 16 +++++++++++++++- src/Cake.MinVer/Namespaces.cs | 16 +++++++++++++++- src/Cake.MinVer/Properties/InternalsVisibleTo.cs | 16 +++++++++++++++- src/Cake.MinVer/Utils/EnvironmentProvider.cs | 16 +++++++++++++++- src/Cake.MinVer/Utils/IEnvironmentProvider.cs | 16 +++++++++++++++- .../MinVerSettingsExtensionsTests.cs | 16 +++++++++++++++- test/Cake.MinVer.Tests/MinVerSettingsTests.cs | 16 +++++++++++++++- test/Cake.MinVer.Tests/MinVerToolTests.cs | 16 +++++++++++++++- test/Cake.MinVer.Tests/MinVerVersionTests.cs | 16 +++++++++++++++- .../Support/MinVerGlobalToolFixture.cs | 16 +++++++++++++++- .../Support/MinVerLocalToolFixture.cs | 16 +++++++++++++++- .../Support/MinVerToolContext.cs | 16 +++++++++++++++- .../Support/MinVerToolFixture.cs | 16 +++++++++++++++- .../Support/MinVerToolFixtureBase.cs | 16 +++++++++++++++- .../Support/MinVerToolFixtureResult.cs | 16 +++++++++++++++- .../Support/MinVerToolOutputs.cs | 16 +++++++++++++++- test/Cake.MinVer.Tests/Support/XUnitLogger.cs | 16 +++++++++++++++- .../Utils/EnvironmentProviderTests.cs | 16 +++++++++++++++- 32 files changed, 480 insertions(+), 32 deletions(-) diff --git a/src/Cake.MinVer/AddInInformation.cs b/src/Cake.MinVer/AddInInformation.cs index 124d463..5a81b7a 100644 --- a/src/Cake.MinVer/AddInInformation.cs +++ b/src/Cake.MinVer/AddInInformation.cs @@ -1,4 +1,18 @@ -using System.Reflection; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.Reflection; using Cake.Core.Diagnostics; namespace Cake.MinVer diff --git a/src/Cake.MinVer/IMinVerGlobalTool.cs b/src/Cake.MinVer/IMinVerGlobalTool.cs index 39db583..8102083 100644 --- a/src/Cake.MinVer/IMinVerGlobalTool.cs +++ b/src/Cake.MinVer/IMinVerGlobalTool.cs @@ -1,4 +1,18 @@ -namespace Cake.MinVer +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Cake.MinVer { internal interface IMinVerGlobalTool : IMinVerTool { diff --git a/src/Cake.MinVer/IMinVerLocalTool.cs b/src/Cake.MinVer/IMinVerLocalTool.cs index 629bcc6..a224885 100644 --- a/src/Cake.MinVer/IMinVerLocalTool.cs +++ b/src/Cake.MinVer/IMinVerLocalTool.cs @@ -1,4 +1,18 @@ -namespace Cake.MinVer +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Cake.MinVer { internal interface IMinVerLocalTool : IMinVerTool { diff --git a/src/Cake.MinVer/IMinVerTool.cs b/src/Cake.MinVer/IMinVerTool.cs index 0aeefdf..727c4b0 100644 --- a/src/Cake.MinVer/IMinVerTool.cs +++ b/src/Cake.MinVer/IMinVerTool.cs @@ -1,4 +1,18 @@ -namespace Cake.MinVer +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Cake.MinVer { internal interface IMinVerTool { diff --git a/src/Cake.MinVer/MinVerAliases.cs b/src/Cake.MinVer/MinVerAliases.cs index 64fab8f..b2caf39 100644 --- a/src/Cake.MinVer/MinVerAliases.cs +++ b/src/Cake.MinVer/MinVerAliases.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using Cake.Core; using Cake.Core.Annotations; diff --git a/src/Cake.MinVer/MinVerAutoIncrement.cs b/src/Cake.MinVer/MinVerAutoIncrement.cs index 628bf9c..f47626d 100644 --- a/src/Cake.MinVer/MinVerAutoIncrement.cs +++ b/src/Cake.MinVer/MinVerAutoIncrement.cs @@ -1,4 +1,18 @@ -namespace Cake.MinVer +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Cake.MinVer { /// /// --auto-increment <VERSION_PART> diff --git a/src/Cake.MinVer/MinVerEnvironmentVariables.cs b/src/Cake.MinVer/MinVerEnvironmentVariables.cs index 87a4702..e4ad287 100644 --- a/src/Cake.MinVer/MinVerEnvironmentVariables.cs +++ b/src/Cake.MinVer/MinVerEnvironmentVariables.cs @@ -1,4 +1,18 @@ -namespace Cake.MinVer +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Cake.MinVer { internal sealed class MinVerEnvironmentVariables { diff --git a/src/Cake.MinVer/MinVerGlobalTool.cs b/src/Cake.MinVer/MinVerGlobalTool.cs index 90e3748..a484eaf 100644 --- a/src/Cake.MinVer/MinVerGlobalTool.cs +++ b/src/Cake.MinVer/MinVerGlobalTool.cs @@ -1,4 +1,18 @@ -using System.Collections.Generic; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.Collections.Generic; using Cake.Core; using Cake.Core.Diagnostics; using Cake.Core.IO; diff --git a/src/Cake.MinVer/MinVerLocalTool.cs b/src/Cake.MinVer/MinVerLocalTool.cs index 7a0417e..601a4b7 100644 --- a/src/Cake.MinVer/MinVerLocalTool.cs +++ b/src/Cake.MinVer/MinVerLocalTool.cs @@ -1,4 +1,18 @@ -using Cake.Core; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using Cake.Core; using Cake.Core.Diagnostics; using Cake.Core.IO; using Cake.Core.Tooling; diff --git a/src/Cake.MinVer/MinVerSettings.cs b/src/Cake.MinVer/MinVerSettings.cs index f7ba56a..94efb46 100644 --- a/src/Cake.MinVer/MinVerSettings.cs +++ b/src/Cake.MinVer/MinVerSettings.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using Cake.Common.Tools.DotNetCore; using Cake.Core.IO; diff --git a/src/Cake.MinVer/MinVerSettingsExtensions.cs b/src/Cake.MinVer/MinVerSettingsExtensions.cs index b47d3ad..75bcee1 100644 --- a/src/Cake.MinVer/MinVerSettingsExtensions.cs +++ b/src/Cake.MinVer/MinVerSettingsExtensions.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using System.ComponentModel; using Cake.Core.IO; using Cake.Core.Tooling; diff --git a/src/Cake.MinVer/MinVerTool.cs b/src/Cake.MinVer/MinVerTool.cs index 1776e80..a25e608 100644 --- a/src/Cake.MinVer/MinVerTool.cs +++ b/src/Cake.MinVer/MinVerTool.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using System.Globalization; using Cake.Common.Tools.DotNetCore; using Cake.Core; diff --git a/src/Cake.MinVer/MinVerToolBase.cs b/src/Cake.MinVer/MinVerToolBase.cs index cf0757a..c99a136 100644 --- a/src/Cake.MinVer/MinVerToolBase.cs +++ b/src/Cake.MinVer/MinVerToolBase.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using System.Collections.Generic; using System.Linq; using Cake.Common.Tools.DotNetCore; diff --git a/src/Cake.MinVer/MinVerVerbosity.cs b/src/Cake.MinVer/MinVerVerbosity.cs index e4c7ee4..75aefc0 100644 --- a/src/Cake.MinVer/MinVerVerbosity.cs +++ b/src/Cake.MinVer/MinVerVerbosity.cs @@ -1,4 +1,18 @@ -namespace Cake.MinVer +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Cake.MinVer { /// /// --verbosity <VERBOSITY> diff --git a/src/Cake.MinVer/MinVerVersion.cs b/src/Cake.MinVer/MinVerVersion.cs index 8ef549a..731cf76 100644 --- a/src/Cake.MinVer/MinVerVersion.cs +++ b/src/Cake.MinVer/MinVerVersion.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using System.Collections.Generic; using System.Globalization; using System.Linq; diff --git a/src/Cake.MinVer/Namespaces.cs b/src/Cake.MinVer/Namespaces.cs index 9fe8916..27a3998 100644 --- a/src/Cake.MinVer/Namespaces.cs +++ b/src/Cake.MinVer/Namespaces.cs @@ -1,4 +1,18 @@ -using System.Runtime.CompilerServices; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.Runtime.CompilerServices; namespace Cake.MinVer { diff --git a/src/Cake.MinVer/Properties/InternalsVisibleTo.cs b/src/Cake.MinVer/Properties/InternalsVisibleTo.cs index b6fd8db..fcec42f 100644 --- a/src/Cake.MinVer/Properties/InternalsVisibleTo.cs +++ b/src/Cake.MinVer/Properties/InternalsVisibleTo.cs @@ -1,3 +1,17 @@ -using System.Runtime.CompilerServices; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Cake.MinVer.Tests")] diff --git a/src/Cake.MinVer/Utils/EnvironmentProvider.cs b/src/Cake.MinVer/Utils/EnvironmentProvider.cs index fb94be1..8fdd568 100644 --- a/src/Cake.MinVer/Utils/EnvironmentProvider.cs +++ b/src/Cake.MinVer/Utils/EnvironmentProvider.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using System.Collections.Generic; using Cake.Core; using Cake.Core.IO; diff --git a/src/Cake.MinVer/Utils/IEnvironmentProvider.cs b/src/Cake.MinVer/Utils/IEnvironmentProvider.cs index 319ed87..d038290 100644 --- a/src/Cake.MinVer/Utils/IEnvironmentProvider.cs +++ b/src/Cake.MinVer/Utils/IEnvironmentProvider.cs @@ -1,4 +1,18 @@ -using System.Collections.Generic; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.Collections.Generic; using Cake.Core.IO; namespace Cake.MinVer.Utils diff --git a/test/Cake.MinVer.Tests/MinVerSettingsExtensionsTests.cs b/test/Cake.MinVer.Tests/MinVerSettingsExtensionsTests.cs index 96d5acb..6e5a3a2 100644 --- a/test/Cake.MinVer.Tests/MinVerSettingsExtensionsTests.cs +++ b/test/Cake.MinVer.Tests/MinVerSettingsExtensionsTests.cs @@ -1,4 +1,18 @@ -using FluentAssertions; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using FluentAssertions; using Xunit; namespace Cake.MinVer.Tests diff --git a/test/Cake.MinVer.Tests/MinVerSettingsTests.cs b/test/Cake.MinVer.Tests/MinVerSettingsTests.cs index be0cc7f..a4a3286 100644 --- a/test/Cake.MinVer.Tests/MinVerSettingsTests.cs +++ b/test/Cake.MinVer.Tests/MinVerSettingsTests.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using System.Collections.Generic; using System.Linq; using System.Reflection; diff --git a/test/Cake.MinVer.Tests/MinVerToolTests.cs b/test/Cake.MinVer.Tests/MinVerToolTests.cs index 2422155..dda41e0 100644 --- a/test/Cake.MinVer.Tests/MinVerToolTests.cs +++ b/test/Cake.MinVer.Tests/MinVerToolTests.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using FluentAssertions; using Xunit; using Xunit.Abstractions; diff --git a/test/Cake.MinVer.Tests/MinVerVersionTests.cs b/test/Cake.MinVer.Tests/MinVerVersionTests.cs index 26580ae..33e4d3e 100644 --- a/test/Cake.MinVer.Tests/MinVerVersionTests.cs +++ b/test/Cake.MinVer.Tests/MinVerVersionTests.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using FluentAssertions; using Xunit; diff --git a/test/Cake.MinVer.Tests/Support/MinVerGlobalToolFixture.cs b/test/Cake.MinVer.Tests/Support/MinVerGlobalToolFixture.cs index 64eb894..9e1499b 100644 --- a/test/Cake.MinVer.Tests/Support/MinVerGlobalToolFixture.cs +++ b/test/Cake.MinVer.Tests/Support/MinVerGlobalToolFixture.cs @@ -1,4 +1,18 @@ -using Cake.Core.IO; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using Cake.Core.IO; namespace Cake.MinVer.Tests.Support { diff --git a/test/Cake.MinVer.Tests/Support/MinVerLocalToolFixture.cs b/test/Cake.MinVer.Tests/Support/MinVerLocalToolFixture.cs index cbc375f..d301023 100644 --- a/test/Cake.MinVer.Tests/Support/MinVerLocalToolFixture.cs +++ b/test/Cake.MinVer.Tests/Support/MinVerLocalToolFixture.cs @@ -1,4 +1,18 @@ -using Cake.Core.IO; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using Cake.Core.IO; namespace Cake.MinVer.Tests.Support { diff --git a/test/Cake.MinVer.Tests/Support/MinVerToolContext.cs b/test/Cake.MinVer.Tests/Support/MinVerToolContext.cs index e293e20..d669e00 100644 --- a/test/Cake.MinVer.Tests/Support/MinVerToolContext.cs +++ b/test/Cake.MinVer.Tests/Support/MinVerToolContext.cs @@ -1,4 +1,18 @@ -using System.Threading; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.Threading; namespace Cake.MinVer.Tests.Support { diff --git a/test/Cake.MinVer.Tests/Support/MinVerToolFixture.cs b/test/Cake.MinVer.Tests/Support/MinVerToolFixture.cs index cb20776..c72de08 100644 --- a/test/Cake.MinVer.Tests/Support/MinVerToolFixture.cs +++ b/test/Cake.MinVer.Tests/Support/MinVerToolFixture.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using System.Linq; using Cake.Core.Diagnostics; using Cake.Core.IO; diff --git a/test/Cake.MinVer.Tests/Support/MinVerToolFixtureBase.cs b/test/Cake.MinVer.Tests/Support/MinVerToolFixtureBase.cs index be30ff8..6da058f 100644 --- a/test/Cake.MinVer.Tests/Support/MinVerToolFixtureBase.cs +++ b/test/Cake.MinVer.Tests/Support/MinVerToolFixtureBase.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using System.Collections.Generic; using Xunit.Sdk; using Cake.Core.IO; diff --git a/test/Cake.MinVer.Tests/Support/MinVerToolFixtureResult.cs b/test/Cake.MinVer.Tests/Support/MinVerToolFixtureResult.cs index 9a0ec40..ff7ea61 100644 --- a/test/Cake.MinVer.Tests/Support/MinVerToolFixtureResult.cs +++ b/test/Cake.MinVer.Tests/Support/MinVerToolFixtureResult.cs @@ -1,4 +1,18 @@ -using Cake.Core.IO; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using Cake.Core.IO; using Cake.Testing.Fixtures; namespace Cake.MinVer.Tests.Support diff --git a/test/Cake.MinVer.Tests/Support/MinVerToolOutputs.cs b/test/Cake.MinVer.Tests/Support/MinVerToolOutputs.cs index defa275..8d08304 100644 --- a/test/Cake.MinVer.Tests/Support/MinVerToolOutputs.cs +++ b/test/Cake.MinVer.Tests/Support/MinVerToolOutputs.cs @@ -1,4 +1,18 @@ -using System.Linq; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.Linq; namespace Cake.MinVer.Tests.Support { diff --git a/test/Cake.MinVer.Tests/Support/XUnitLogger.cs b/test/Cake.MinVer.Tests/Support/XUnitLogger.cs index 3f43b57..2f9487c 100644 --- a/test/Cake.MinVer.Tests/Support/XUnitLogger.cs +++ b/test/Cake.MinVer.Tests/Support/XUnitLogger.cs @@ -1,4 +1,18 @@ -using System; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; using Xunit.Abstractions; using Cake.Core.Diagnostics; diff --git a/test/Cake.MinVer.Tests/Utils/EnvironmentProviderTests.cs b/test/Cake.MinVer.Tests/Utils/EnvironmentProviderTests.cs index 2e7a976..61c4648 100644 --- a/test/Cake.MinVer.Tests/Utils/EnvironmentProviderTests.cs +++ b/test/Cake.MinVer.Tests/Utils/EnvironmentProviderTests.cs @@ -1,4 +1,18 @@ -using System.Collections.Generic; +// Copyright 2020 C. Augusto Proiete & Contributors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.Collections.Generic; using FluentAssertions; using Xunit; using Cake.Core;