mirror of
https://github.com/DarthAffe/HPPH.git
synced 2025-12-12 13:28:37 +00:00
81 lines
2.9 KiB
XML
81 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
|
|
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
|
|
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
<AnalysisLevel>latest-all</AnalysisLevel>
|
|
|
|
<Authors>Darth Affe</Authors>
|
|
<Company>Wyrez</Company>
|
|
<Language>en-US</Language>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<Title>HPPH</Title>
|
|
<AssemblyName>HPPH</AssemblyName>
|
|
<AssemblyTitle>HPPH</AssemblyTitle>
|
|
<PackageId>HPPH</PackageId>
|
|
<RootNamespace>HPPH</RootNamespace>
|
|
<Description>Some optimized things to perform on color-data</Description>
|
|
<Summary>High Performance Pixel Handling</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>
|
|
|
|
<ItemGroup>
|
|
<GlobalAnalyzerConfigFiles Include="../Analyzers.globalconfig" />
|
|
</ItemGroup>
|
|
|
|
<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>
|
|
<ProjectReference Include="..\HPPH.Generators\HPPH.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="$(CompilerGeneratedFilesOutputPath)/**/*.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|