-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathDemo-SkiaSharp.csproj
25 lines (22 loc) · 1.1 KB
/
Demo-SkiaSharp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Net.Codecrete.QrCodeGenerator.Demo</RootNamespace>
<PackageId>Net.Codecrete.QrCodeGenerator.Demo</PackageId>
<Version>2.0.6</Version>
<Authors>Manuel Bleichenbacher, Project Nayuki</Authors>
<Product>QR Code Generator for .NET</Product>
<Description>Demo application for QR Code Generation</Description>
<Copyright>Copyright Manuel Bleichenbacher and Project Nayuki (MIT License)</Copyright>
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/manuelbl/QrCodeGenerator</PackageProjectUrl>
<RepositoryUrl>https://github.com/manuelbl/QrCodeGenerator</RepositoryUrl>
<Company>Codecrete</Company>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Net.Codecrete.QrCodeGenerator" Version="2.*" />
<PackageReference Include="SkiaSharp" Version="2.*" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.*" />
</ItemGroup>
</Project>