Skip to content

Commit ee749e3

Browse files
Merge pull request #26 from CommunityToolkit/update-version
Update Versions and Fix CI
2 parents 61b88db + 120cc61 commit ee749e3

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

ColorCode.UWP/ColorCode.UWP.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="MSBuild.Sdk.Extras">
22

33
<PropertyGroup>
4-
<TargetFramework>uap10.0.18362</TargetFramework>
4+
<TargetFramework>uap10.0.17763</TargetFramework>
55
<RootNamespace>ColorCode</RootNamespace>
66
<AssemblyName>ColorCode.UWP</AssemblyName>
77
<Title>ColorCode.UWP</Title>

ColorCode.WinUI/ColorCode.WinUI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0-windows10.0.18362.0</TargetFramework>
4+
<TargetFramework>net5.0-windows10.0.17763.0</TargetFramework>
55
<SupportedOSPlatformVersion>$(TargetPlatformMinVersion)</SupportedOSPlatformVersion>
66
<RootNamespace>ColorCode</RootNamespace>
77
<AssemblyName>ColorCode.WinUI</AssemblyName>

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<!-- UWP Config -->
2222
<PropertyGroup Condition="'$(IsUwpProject)' == 'true'">
2323
<TargetPlatformVersion>10.0.18362.0</TargetPlatformVersion>
24-
<TargetPlatformMinVersion>10.0.18362.0</TargetPlatformMinVersion>
24+
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
2525
</PropertyGroup>
2626

2727
<!-- WinUI Config -->
@@ -62,7 +62,7 @@
6262
<Choose>
6363
<When Condition="'$(IsWinUIProject)' == 'true'">
6464
<ItemGroup>
65-
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.0.0" />
65+
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.1.4" />
6666
</ItemGroup>
6767
</When>
6868
</Choose>

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ steps:
3636
displayName: Set Version
3737

3838
- task: UseDotNet@2
39-
displayName: 'Install .NET Core SDK'
39+
displayName: 'Install .NET SDK'
4040
inputs:
41-
version: 5.0.403
41+
version: 6.0.400
4242
performMultiLevelLookup: true
4343

4444
# Workaround for VS2022 in CI Builds

readme.md

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

33
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.
44

5-
This Project can currently produce HTML, and Render to UWP RichTextBlocks.
5+
This Project can currently produce HTML, and Render to UWP and WindowsAppSDK RichTextBlocks.
66

77
## Usage
88

@@ -53,6 +53,7 @@ To get the Programming Language manually, you can provide the identifier name, w
5353
```C#
5454
var language = ColorCode.Languages.FindById("java");
5555
```
56+
5657
See [LanguageId.cs](ColorCode.Core/Common/LanguageId.cs) for the list of available Languages to parse.
5758

5859
## Packages
@@ -68,6 +69,7 @@ See [LanguageId.cs](ColorCode.Core/Common/LanguageId.cs) for the list of availab
6869
Please use [GitHub issues](https://github.com/WilliamABradley/ColorCode-Universal/issues) for bug reports and feature requests.
6970

7071
## Contributing
72+
7173
Want to help out and add some more parsing support, or add a new Formatter platform? Submit a PR!
7274

7375
## License

0 commit comments

Comments
 (0)