Skip to content

Commit 17e1b36

Browse files
Merge pull request #12 from windows-toolkit/yaml
Moved to Azure Pipelines.
2 parents 8d2b183 + fb482e2 commit 17e1b36

25 files changed

+400
-47
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;

ColorCode.sln

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27004.2010
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30104.148
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ColorCode.HTML", "ColorCode.HTML\ColorCode.HTML.csproj", "{33A3FB96-F1EB-4AF0-94E0-F629E1F574A8}"
77
EndProject
@@ -84,7 +84,6 @@ Global
8484
{A3E27CD2-6D33-44D3-962F-E56C4CD25F10}.Debug|x86.ActiveCfg = Debug|Any CPU
8585
{A3E27CD2-6D33-44D3-962F-E56C4CD25F10}.Debug|x86.Build.0 = Debug|Any CPU
8686
{A3E27CD2-6D33-44D3-962F-E56C4CD25F10}.Release|Any CPU.ActiveCfg = Release|Any CPU
87-
{A3E27CD2-6D33-44D3-962F-E56C4CD25F10}.Release|Any CPU.Build.0 = Release|Any CPU
8887
{A3E27CD2-6D33-44D3-962F-E56C4CD25F10}.Release|ARM.ActiveCfg = Release|Any CPU
8988
{A3E27CD2-6D33-44D3-962F-E56C4CD25F10}.Release|ARM.Build.0 = Release|Any CPU
9089
{A3E27CD2-6D33-44D3-962F-E56C4CD25F10}.Release|x64.ActiveCfg = Release|Any CPU

Tests/ColorCode.BasicTests/ColorCode.BasicTests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp2.0</TargetFramework>
6+
<IsPackable>false</IsPackable>
67
</PropertyGroup>
78

89
<ItemGroup>

0 commit comments

Comments
 (0)