Skip to content

Commit

Permalink
License header
Browse files Browse the repository at this point in the history
  • Loading branch information
mstama committed Jul 27, 2017
1 parent 3bc5b99 commit 68c831a
Show file tree
Hide file tree
Showing 19 changed files with 74 additions and 17 deletions.
5 changes: 4 additions & 1 deletion Track/Extensions/ICollectionExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System.Collections.Generic;
// 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.Generic;

namespace Track.Extensions
{
Expand Down
5 changes: 4 additions & 1 deletion Track/Extensions/ICollectionTalkExtensions.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;
using Track.Models;
Expand Down
5 changes: 4 additions & 1 deletion Track/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System.Text.RegularExpressions;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System.Text.RegularExpressions;

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

using Track.Models;

namespace Track.Interfaces
{
Expand Down
5 changes: 4 additions & 1 deletion Track/Interfaces/ITrackDayBuilder.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System.Collections.Generic;
// 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.Generic;
using Track.Models;

namespace Track.Interfaces
Expand Down
5 changes: 4 additions & 1 deletion Track/Models/AfternoonSession.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.Globalization;

namespace Track.Models
Expand Down
5 changes: 4 additions & 1 deletion Track/Models/MorningSession.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.Globalization;

namespace Track.Models
Expand Down
5 changes: 4 additions & 1 deletion Track/Models/Session.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.Collections.ObjectModel;
using System.Collections.Specialized;
Expand Down
5 changes: 4 additions & 1 deletion Track/Models/Talk.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace Track.Models
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

namespace Track.Models
{
/// <summary>
/// Represents a talk
Expand Down
5 changes: 4 additions & 1 deletion Track/Models/TrackDay.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace Track.Models
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

namespace Track.Models
{
/// <summary>
/// Represents a track day
Expand Down
5 changes: 4 additions & 1 deletion Track/Program.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.IO;
using Track.Interfaces;
Expand Down
5 changes: 4 additions & 1 deletion Track/Services/TalkParser.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.Linq;
using Track.Extensions;
using Track.Interfaces;
Expand Down
5 changes: 4 additions & 1 deletion Track/Services/TalkRegexParser.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.RegularExpressions;
using Track.Interfaces;
using Track.Models;
Expand Down
5 changes: 4 additions & 1 deletion Track/Services/TrackDayBuilder.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System.Collections.Generic;
// 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.Generic;
using System.Linq;
using Track.Interfaces;
using Track.Models;
Expand Down
5 changes: 4 additions & 1 deletion UnitTests/AfternoonSessionTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Track.Models;
// Copyright (c) 2017 Marcos Tamashiro. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using Track.Models;
using Xunit;

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

using Track.Models;
using Xunit;

namespace UnitTests
Expand Down
3 changes: 3 additions & 0 deletions UnitTests/TalkParserTests.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 Track.Services;
using Xunit;

Expand Down
3 changes: 3 additions & 0 deletions UnitTests/TalkRegexParserTests.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 Track.Services;
using Xunit;

Expand Down
5 changes: 4 additions & 1 deletion UnitTests/TrackDayBuilderTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System.Collections.Generic;
// 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.Generic;
using Track.Models;
using Track.Services;
using Xunit;
Expand Down

0 comments on commit 68c831a

Please sign in to comment.