-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add back the SkiaSharp libs and Samples
- Loading branch information
1 parent
91ea9d5
commit 86ed75e
Showing
38 changed files
with
964 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"solution": { | ||
"path": "Microsoft.Maui.sln", | ||
"projects": [ | ||
"src\\Graphics\\samples\\GraphicsTester.Android\\GraphicsTester.Android.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.MacCatalyst\\GraphicsTester.MacCatalyst.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.Mac\\GraphicsTester.Mac.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.Portable\\GraphicsTester.Portable.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.Skia.Console\\GraphicsTester.Skia.Console.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.Skia.Gtk\\GraphicsTester.Skia.Gtk.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.Skia.Mac\\GraphicsTester.Skia.Mac.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.Skia.Tizen\\GraphicsTester.Skia.Tizen.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.Skia.Windows\\GraphicsTester.Skia.Windows.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.WinUI.Desktop\\GraphicsTester.WinUI.Desktop.csproj", | ||
"src\\Graphics\\samples\\GraphicsTester.iOS\\GraphicsTester.iOS.csproj", | ||
"src\\Graphics\\src\\Graphics.Skia.GtkSharp\\Graphics.Skia.GtkSharp.csproj", | ||
"src\\Graphics\\src\\Graphics.Skia.WPF\\Graphics.Skia.WPF.csproj", | ||
"src\\Graphics\\src\\Graphics.Skia\\Graphics.Skia.csproj", | ||
"src\\Graphics\\src\\Graphics.Win2D\\Graphics.Win2D.csproj", | ||
"src\\Graphics\\src\\Graphics\\Graphics.csproj", | ||
"src\\Graphics\\src\\Text.Markdig\\Graphics.Text.Markdig.csproj", | ||
"src\\Graphics\\tests\\Graphics.Benchmarks\\Graphics.Benchmarks.csproj", | ||
"src\\Graphics\\tests\\Graphics.Tests\\Graphics.Tests.csproj" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 18 additions & 17 deletions
35
src/Graphics/samples/GraphicsTester.Android/GraphicsTester.Android.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0-android</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>GraphicsTester.Android</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<LangVersion>10.0</LangVersion> | ||
<SupportedOSPlatformVersion>21.0</SupportedOSPlatformVersion> | ||
<ApplicationId>com.microsoft.maui.graphicstester</ApplicationId> | ||
<ApplicationVersion>1</ApplicationVersion> | ||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0-android</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>GraphicsTester.Android</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<LangVersion>10.0</LangVersion> | ||
<SupportedOSPlatformVersion>21.0</SupportedOSPlatformVersion> | ||
<ApplicationId>com.microsoft.maui.graphicstester</ApplicationId> | ||
<ApplicationVersion>1</ApplicationVersion> | ||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics.Skia\Microsoft.Maui.Graphics.Skia.csproj" /> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics\Microsoft.Maui.Graphics.csproj" /> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics.Text.Markdig\Microsoft.Maui.Graphics.Text.Markdig.csproj" /> | ||
<ProjectReference Include="..\GraphicsTester.Portable\GraphicsTester.Portable.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Graphics.Skia\Graphics.Skia.csproj" /> | ||
<ProjectReference Include="..\..\src\Graphics\Graphics.csproj" /> | ||
<ProjectReference Include="..\..\src\Text.Markdig\Graphics.Text.Markdig.csproj" /> | ||
<ProjectReference Include="..\GraphicsTester.Portable\GraphicsTester.Portable.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
39 changes: 17 additions & 22 deletions
39
src/Graphics/samples/GraphicsTester.Mac/GraphicsTester.Mac.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0-macos</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>GraphicsTester.Mac</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<LangVersion>10.0</LangVersion> | ||
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-macos'">10.14</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0-macos</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>GraphicsTester.Mac</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<LangVersion>10.0</LangVersion> | ||
<SupportedOSPlatformVersion>10.14</SupportedOSPlatformVersion> | ||
<IsPackable>false</IsPackable> | ||
<EnableCodeSigning>false</EnableCodeSigning> | ||
<UseSGen>false</UseSGen> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<EnableCodeSigning>false</EnableCodeSigning> | ||
<UseSGen>false</UseSGen> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<EnableCodeSigning>false</EnableCodeSigning> | ||
<UseSGen>false</UseSGen> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics.Skia\Microsoft.Maui.Graphics.Skia.csproj" /> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics\Microsoft.Maui.Graphics.csproj" /> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics.Text.Markdig\Microsoft.Maui.Graphics.Text.Markdig.csproj" /> | ||
<ProjectReference Include="..\GraphicsTester.Portable\GraphicsTester.Portable.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Graphics.Skia\Graphics.Skia.csproj" /> | ||
<ProjectReference Include="..\..\src\Graphics\Graphics.csproj" /> | ||
<ProjectReference Include="..\..\src\Text.Markdig\Graphics.Text.Markdig.csproj" /> | ||
<ProjectReference Include="..\GraphicsTester.Portable\GraphicsTester.Portable.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 15 additions & 14 deletions
29
src/Graphics/samples/GraphicsTester.MacCatalyst/GraphicsTester.MacCatalyst.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0-maccatalyst</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>GraphicsTester.MacCatalyst</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<LangVersion>10.0</LangVersion> | ||
<SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-maccatalyst'">14.2</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0-maccatalyst</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>GraphicsTester.MacCatalyst</RootNamespace> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<LangVersion>10.0</LangVersion> | ||
<SupportedOSPlatformVersion>14.2</SupportedOSPlatformVersion> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics.Skia\Microsoft.Maui.Graphics.Skia.csproj" /> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics\Microsoft.Maui.Graphics.csproj" /> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics.Text.Markdig\Microsoft.Maui.Graphics.Text.Markdig.csproj" /> | ||
<ProjectReference Include="..\GraphicsTester.Portable\GraphicsTester.Portable.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Graphics.Skia\Graphics.Skia.csproj" /> | ||
<ProjectReference Include="..\..\src\Graphics\Graphics.csproj" /> | ||
<ProjectReference Include="..\..\src\Text.Markdig\Graphics.Text.Markdig.csproj" /> | ||
<ProjectReference Include="..\GraphicsTester.Portable\GraphicsTester.Portable.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 27 additions & 26 deletions
53
src/Graphics/samples/GraphicsTester.Portable/GraphicsTester.Portable.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks> | ||
<AssemblyName>GraphicsTester.Portable</AssemblyName> | ||
<RootNamespace>GraphicsTester</RootNamespace> | ||
<Version>2.0.0</Version> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks> | ||
<AssemblyName>GraphicsTester.Portable</AssemblyName> | ||
<RootNamespace>GraphicsTester</RootNamespace> | ||
<Version>2.0.0</Version> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="Properties\**" /> | ||
<EmbeddedResource Remove="Properties\**" /> | ||
<None Remove="Properties\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="Resources\royals.png" /> | ||
<EmbeddedResource Include="Resources\swirl_pattern.png" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Markdig" Version="0.22.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Graphics\Graphics.csproj" /> | ||
<ProjectReference Include="..\..\src\Text.Markdig\Graphics.Text.Markdig.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="Properties\**" /> | ||
<EmbeddedResource Remove="Properties\**" /> | ||
<None Remove="Properties\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove="Resources\royals.png" /> | ||
<None Remove="Resources\swirl_pattern.png" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Resources\royals.png" /> | ||
<EmbeddedResource Include="Resources\swirl_pattern.png" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Markdig" Version="0.22.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics\Microsoft.Maui.Graphics.csproj" /> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics.Text.Markdig\Microsoft.Maui.Graphics.Text.Markdig.csproj" /> | ||
</ItemGroup> | ||
</Project> |
26 changes: 14 additions & 12 deletions
26
src/Graphics/samples/GraphicsTester.Skia.Console/GraphicsTester.Skia.Console.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<RootNamespace>GraphicsTester.ConsoleApp</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<RootNamespace>GraphicsTester.ConsoleApp</RootNamespace> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Microsoft.Maui.Graphics.Skia\Microsoft.Maui.Graphics.Skia.csproj" /> | ||
<ProjectReference Include="..\GraphicsTester.Portable\GraphicsTester.Portable.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="SkiaSharp" Version="2.88.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Graphics.Skia\Graphics.Skia.csproj" /> | ||
<ProjectReference Include="..\GraphicsTester.Portable\GraphicsTester.Portable.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="SkiaSharp" Version="2.88.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
src/Graphics/samples/GraphicsTester.Skia.Gtk/GraphicsTester.Skia.Gtk.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<RootNamespace>GraphicsTester.Skia.Gtk</RootNamespace> | ||
<PackageId>GraphicsTester.Skia.Gtk</PackageId> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Graphics.Skia.GtkSharp\Graphics.Skia.GtkSharp.csproj" /> | ||
<ProjectReference Include="..\..\src\Graphics\Graphics.csproj" /> | ||
<ProjectReference Include="..\GraphicsTester.Portable\GraphicsTester.Portable.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.88.0" /> | ||
<PackageReference Include="SkiaSharp.Views.Gtk3" Version="2.88.0" /> | ||
<PackageReference Include="GtkSharp" Version="3.24.24.34" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.