Skip to content

Commit e1bf670

Browse files
Update cake scripts to support checking file headers
Make file headers consistent for now, TODO: find out how/where we call out .NET foundation now
1 parent 8d2b183 commit e1bf670

File tree

19 files changed

+300
-21
lines changed

19 files changed

+300
-21
lines changed

ColorCode.Core/CodeColorizerBase.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using ColorCode.Compilation;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
using ColorCode.Compilation;
24
using ColorCode.Parsing;
35
using ColorCode.Styling;
46
using System.Collections.Generic;

ColorCode.Core/Compilation/Languages/Css.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
22

33
using System.Collections.Generic;
44
using ColorCode.Common;

ColorCode.Core/Compilation/Languages/Fortran.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// Copyright (c) 2015 Christopher Pardi.
2-
31
// Copyright (c) Microsoft Corporation. All rights reserved.
42

3+
// Copyright (c) 2015 Christopher Pardi.
4+
55
using System.Collections.Generic;
66
using ColorCode.Common;
77

ColorCode.Core/Styling/StyleDictionary.DefaultDark.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using ColorCode.Common;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
using ColorCode.Common;
24

35
namespace ColorCode.Styling
46
{

ColorCode.Core/Styling/StyleDictionary.DefaultLight.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using ColorCode.Common;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
using ColorCode.Common;
24

35
namespace ColorCode.Styling
46
{

ColorCode.HTML/HtmlClassFormatter.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using System;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
using System;
24
using System.Collections.Generic;
35
using System.IO;
46
using ColorCode.Common;

ColorCode.UWP/Common/ExtensionMethods.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using System;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
using System;
24
using Windows.UI.Xaml.Media;
35

46
namespace ColorCode.UWP.Common

ColorCode.UWP/RichTextBlockFormatter.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using System.Collections.Generic;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
using System.Collections.Generic;
24
using ColorCode.Parsing;
35
using Windows.UI.Xaml.Controls;
46
using Windows.UI.Xaml.Documents;

Tests/ColorCode.BasicTests/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using System;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
using System;
24
using System.Linq;
35
using System.Threading.Tasks;
46

Tests/ColorCode.UWPTests/App.xaml.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using System;
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
3+
using System;
24
using Windows.ApplicationModel;
35
using Windows.ApplicationModel.Activation;
46
using Windows.UI.Xaml;

0 commit comments

Comments
 (0)