diff --git a/ColorCode.UWP/ColorCode.UWP.csproj b/ColorCode.UWP/ColorCode.UWP.csproj index f507820..2afe496 100644 --- a/ColorCode.UWP/ColorCode.UWP.csproj +++ b/ColorCode.UWP/ColorCode.UWP.csproj @@ -1,7 +1,7 @@  - uap10.0.18362 + uap10.0.17763 ColorCode ColorCode.UWP ColorCode.UWP diff --git a/ColorCode.WinUI/ColorCode.WinUI.csproj b/ColorCode.WinUI/ColorCode.WinUI.csproj index 06cd796..a42187c 100644 --- a/ColorCode.WinUI/ColorCode.WinUI.csproj +++ b/ColorCode.WinUI/ColorCode.WinUI.csproj @@ -1,7 +1,7 @@  - net5.0-windows10.0.18362.0 + net5.0-windows10.0.17763.0 $(TargetPlatformMinVersion) ColorCode ColorCode.WinUI diff --git a/Directory.Build.props b/Directory.Build.props index 869e7f8..a590373 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -21,7 +21,7 @@ 10.0.18362.0 - 10.0.18362.0 + 10.0.17763.0 @@ -62,7 +62,7 @@ - + diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 332e63b..1f99bc1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -36,9 +36,9 @@ steps: displayName: Set Version - task: UseDotNet@2 - displayName: 'Install .NET Core SDK' + displayName: 'Install .NET SDK' inputs: - version: 5.0.403 + version: 6.0.400 performMultiLevelLookup: true # Workaround for VS2022 in CI Builds diff --git a/readme.md b/readme.md index fb9aa14..672e54d 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,7 @@ This is a port of [ColorCode](https://colorcode.codeplex.com/) to .NET Standard. The original Html only formatter has been separated from the Logic, so now it can produce Syntax Highlighted code for any output. -This Project can currently produce HTML, and Render to UWP RichTextBlocks. +This Project can currently produce HTML, and Render to UWP and WindowsAppSDK RichTextBlocks. ## Usage @@ -53,6 +53,7 @@ To get the Programming Language manually, you can provide the identifier name, w ```C# var language = ColorCode.Languages.FindById("java"); ``` + See [LanguageId.cs](ColorCode.Core/Common/LanguageId.cs) for the list of available Languages to parse. ## Packages @@ -68,6 +69,7 @@ See [LanguageId.cs](ColorCode.Core/Common/LanguageId.cs) for the list of availab Please use [GitHub issues](https://github.com/WilliamABradley/ColorCode-Universal/issues) for bug reports and feature requests. ## Contributing + Want to help out and add some more parsing support, or add a new Formatter platform? Submit a PR! ## License