2018-02-03 17:01:17 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-04-11 08:13:49 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-11-23 18:16:04 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
|
<ProjectGuid>{CC48B324-A532-4A45-87A6-6F91F7141E8D}</ProjectGuid>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<RootNamespace>Aaru.Checksums</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Aaru.Checksums</AssemblyName>
|
|
|
|
|
|
<Title>Aaru.Checksums</Title>
|
|
|
|
|
|
<Description>C# implementation of CRC16, CRC32, CRC64, Fletcher, MD5, SHA1, SHA2 and SpamSum.</Description>
|
|
|
|
|
|
<PackageProjectUrl>https://github.com/aaru-dps/</PackageProjectUrl>
|
|
|
|
|
|
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
|
|
|
|
|
|
<RepositoryUrl>https://github.com/aaru-dps/Aaru.Checksums</RepositoryUrl>
|
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
|
|
<Authors>Natalia Portillo <claunia@claunia.com></Authors>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
|
<NoWarn>CS1591;CS1574</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-10-03 22:45:06 +01:00
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests"/>
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests.Devices"/>
|
2022-11-23 18:16:04 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-10-03 22:45:06 +01:00
|
|
|
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj"/>
|
|
|
|
|
|
<ProjectReference Include="..\Aaru.Helpers\Aaru.Helpers.csproj"/>
|
2025-08-17 05:50:25 +01:00
|
|
|
|
<ProjectReference Include="..\Aaru.Logging\Aaru.Logging.csproj"/>
|
2022-11-23 18:16:04 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Include="..\LICENSE.LGPL">
|
|
|
|
|
|
<Link>LICENSE.LGPL</Link>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
<EmbeddedResource Include="..\LICENSE">
|
|
|
|
|
|
<Link>LICENSE</Link>
|
|
|
|
|
|
</EmbeddedResource>
|
2022-11-23 20:55:47 +00:00
|
|
|
|
<EmbeddedResource Update="Localization\Localization.resx">
|
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
|
<LastGenOutput>Localization.Designer.cs</LastGenOutput>
|
|
|
|
|
|
</EmbeddedResource>
|
2022-11-23 18:16:04 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2025-08-14 15:52:05 +01:00
|
|
|
|
<PackageReference Include="Aaru.Checksums.Native"/>
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection"/>
|
2025-11-24 20:12:10 +00:00
|
|
|
|
<PackageReference Include="Sentry"/>
|
2022-11-23 18:16:04 +00:00
|
|
|
|
</ItemGroup>
|
2022-12-14 20:56:01 +00:00
|
|
|
|
<ItemGroup>
|
2023-10-03 22:45:06 +01:00
|
|
|
|
<ProjectReference Include="..\Aaru.Generators\Aaru.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
|
2022-12-14 20:56:01 +00:00
|
|
|
|
</ItemGroup>
|
2015-10-05 18:58:13 +01:00
|
|
|
|
</Project>
|