mirror of
https://github.com/DarthAffe/HPPH.git
synced 2025-12-12 13:28:37 +00:00
74 lines
2.6 KiB
XML
74 lines
2.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
<AnalysisLevel>latest-all</AnalysisLevel>
|
|
|
|
<Authors>Darth Affe</Authors>
|
|
<Company>Wyrez</Company>
|
|
<Language>en-US</Language>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<Title>HPPH.SkiaSharp</Title>
|
|
<AssemblyName>HPPH.SkiaSharp</AssemblyName>
|
|
<AssemblyTitle>HPPH.SkiaSharp</AssemblyTitle>
|
|
<PackageId>HPPH.SkiaSharp</PackageId>
|
|
<RootNamespace>HPPH.SkiaSharp</RootNamespace>
|
|
<Description>SkiaSharp extensions for HPPH</Description>
|
|
<Summary>SkiaSharp extensions for HPPH</Summary>
|
|
<Copyright>Copyright © Darth Affe 2024</Copyright>
|
|
<PackageCopyright>Copyright © Darth Affe 2024</PackageCopyright>
|
|
<PackageIcon>hpph.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageProjectUrl>https://github.com/DarthAffe/HPPH</PackageProjectUrl>
|
|
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
|
|
<RepositoryType>Github</RepositoryType>
|
|
<RepositoryUrl>https://github.com/DarthAffe/HPPH</RepositoryUrl>
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
|
|
<PackageReleaseNotes>
|
|
</PackageReleaseNotes>
|
|
|
|
<Version>0.0.1</Version>
|
|
<AssemblyVersion>0.0.1</AssemblyVersion>
|
|
<FileVersion>0.0.1</FileVersion>
|
|
|
|
<OutputPath>..\bin\</OutputPath>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<IncludeSource>True</IncludeSource>
|
|
<IncludeSymbols>True</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DefineConstants>$(DefineConstants);TRACE;DEBUG</DefineConstants>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DebugType>portable</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<NoWarn>$(NoWarn);CS1591;CS1572;CS1573</NoWarn>
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="hpph.png" Link="hpph.png" Pack="true" PackagePath="\" />
|
|
<None Include="..\README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SkiaSharp" Version="2.88.8" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HPPH\HPPH.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |