Skip to content

Commit

Permalink
License header
Browse files Browse the repository at this point in the history
  • Loading branch information
mstama committed Jul 26, 2017
1 parent 29cdbd6 commit 7bc700b
Show file tree
Hide file tree
Showing 18 changed files with 69 additions and 14 deletions.
4 changes: 4 additions & 0 deletions Divisors.licenseheader
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,20 @@
extensions: .cs .cpp .h
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

extensions: .aspx .ascx
<%--
Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
Licensed under the MIT License. See LICENSE in the project root for license information.

--%>
extensions: .vb
'Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
'Licensed under the MIT License. See LICENSE in the project root for license information.

extensions: .xml .config .xsd
<!--
Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
Licensed under the MIT License. See LICENSE in the project root for license information.

-->
5 changes: 4 additions & 1 deletion Divisors/Exceptions/DivisorsException.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;

namespace Divisors.Exceptions
{
Expand Down
5 changes: 4 additions & 1 deletion Divisors/Interfaces/ICalculator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;
using System.Collections.Generic;

namespace Divisors.Interfaces
Expand Down
5 changes: 4 additions & 1 deletion Divisors/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Divisors.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Interfaces;
using Divisors.Services;
using System;
using System.Collections.Generic;
Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/AbstractCalculator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Divisors.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;
Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/Brute.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Divisors.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Interfaces;
using System;
using System.Collections.Generic;

Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/BruteSqrt.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Divisors.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Interfaces;
using System;
using System.Collections.Generic;

Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/CommonDivisor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Divisors.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Interfaces;
using System;
using System.Collections.Generic;

Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/NumbersParser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;

namespace Divisors.Services
{
Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/ProgressConsole.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;
using System.Text;
using System.Threading;

Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/ProgressConsoleDecorator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Divisors.Interfaces;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Interfaces;
using System;
using System.Collections.Generic;

Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/ProgressEmpty.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;
using System.Collections.Generic;
using System.Text;

Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/TimeLapseDecorator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Divisors.Exceptions;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Exceptions;
using Divisors.Interfaces;
using System;
using System.Collections.Generic;
Expand Down
5 changes: 4 additions & 1 deletion Divisors/Services/TimeoutDecorator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Divisors.Exceptions;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Exceptions;
using Divisors.Interfaces;
using System;
using System.Collections.Generic;
Expand Down
3 changes: 3 additions & 0 deletions UnitTests/BruteSqrtTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Services;
using Xunit;

Expand Down
3 changes: 3 additions & 0 deletions UnitTests/BruteTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Services;
using Xunit;

Expand Down
3 changes: 3 additions & 0 deletions UnitTests/CommonDivisorTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Divisors.Services;
using Xunit;

Expand Down
5 changes: 4 additions & 1 deletion UnitTests/TestData.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System.Collections;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System.Collections;
using System.Collections.Generic;

namespace UnitTests
Expand Down

0 comments on commit 7bc700b

Please sign in to comment.