Skip to content

Commit 6fc6d63

Browse files
author
Brad Robinson
committed
Removed netcoreapp2.1 support, updated to Skia/Harfbuzz 2.88.7
1 parent eb60f13 commit 6fc6d63

17 files changed

Lines changed: 85 additions & 106 deletions

.docsanity.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ project:
2222
# The assemblies for which documentation should be generated,
2323
# .xml files are expected in the same location
2424
assemblies:
25-
- ./Build/Release/Topten.RichTextKit/netcoreapp2.1/Topten.RichTextKit.dll
25+
- ./Build/Release/Topten.RichTextKit/net5.0/Topten.RichTextKit.dll
2626

2727
# Namespaces to be assumed when formatting fully qualified type names
2828
namespaces:

RichStringSandbox/App.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1" />
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
55
</startup>
66
<System.Windows.Forms.ApplicationConfigurationSection>
7-
<add key="DpiAwareness" value="PerMonitorV2" />
7+
<add key="DpiAwareness" value="PerMonitorV2"/>
88
</System.Windows.Forms.ApplicationConfigurationSection>
9-
</configuration>
9+
</configuration>

RichStringSandbox/Properties/Resources.Designer.cs

Lines changed: 19 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

RichStringSandbox/Properties/Settings.Designer.cs

Lines changed: 9 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

RichStringSandbox/RichStringSandbox.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@
88
<OutputType>WinExe</OutputType>
99
<RootNamespace>RichStringSandbox</RootNamespace>
1010
<AssemblyName>RichStringSandbox</AssemblyName>
11-
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1414
<Deterministic>true</Deterministic>
1515
<NuGetPackageImportStamp>
1616
</NuGetPackageImportStamp>
17+
<TargetFrameworkProfile />
1718
</PropertyGroup>
1819
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1920
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -96,7 +97,7 @@
9697
</ProjectReference>
9798
</ItemGroup>
9899
<ItemGroup>
99-
<PackageReference Include="SkiaSharp" Version="2.88.3" />
100+
<PackageReference Include="SkiaSharp" Version="2.88.7" />
100101
</ItemGroup>
101102
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
102103
</Project>

Sandbox/App.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1" />
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
55
</startup>
66
<System.Windows.Forms.ApplicationConfigurationSection>
7-
<add key="DpiAwareness" value="PerMonitorV2" />
7+
<add key="DpiAwareness" value="PerMonitorV2"/>
88
</System.Windows.Forms.ApplicationConfigurationSection>
9-
</configuration>
9+
</configuration>

Sandbox/Properties/Resources.Designer.cs

Lines changed: 18 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sandbox/Properties/Settings.Designer.cs

Lines changed: 9 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sandbox/Sandbox.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@
88
<OutputType>WinExe</OutputType>
99
<RootNamespace>Sandbox</RootNamespace>
1010
<AssemblyName>Sandbox</AssemblyName>
11-
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1414
<Deterministic>true</Deterministic>
1515
<NuGetPackageImportStamp>
1616
</NuGetPackageImportStamp>
17+
<TargetFrameworkProfile />
1718
</PropertyGroup>
1819
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1920
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -100,7 +101,7 @@
100101
</ProjectReference>
101102
</ItemGroup>
102103
<ItemGroup>
103-
<PackageReference Include="SkiaSharp" Version="2.88.3" />
104+
<PackageReference Include="SkiaSharp" Version="2.88.7" />
104105
</ItemGroup>
105106
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
106107
</Project>

SandboxDriver/SandboxDriver.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="SkiaSharp" Version="2.88.3" />
16+
<PackageReference Include="SkiaSharp" Version="2.88.7" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

0 commit comments

Comments
 (0)