mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
74 lines
3.5 KiB
XML
74 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{679659B8-25D0-4279-B632-56EF8F94ADC0}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>Aaru.Core</RootNamespace>
|
|
<AssemblyName>Aaru.Core</AssemblyName>
|
|
<Title>Aaru.Core</Title>
|
|
<Description>Contains core algorithms used by the Aaru Data Preservation Suite.</Description>
|
|
<PackageProjectUrl>https://github.com/aaru-dps/</PackageProjectUrl>
|
|
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
|
<RepositoryUrl>https://github.com/aaru-dps/Aaru</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' ">
|
|
<InternalsVisibleTo Include="Aaru.Tests"/>
|
|
<InternalsVisibleTo Include="Aaru.Tests.Devices"/>
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Aaru.Archives\Aaru.Archives.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Logging\Aaru.Logging.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Database\Aaru.Database.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Decryption\Aaru.Decryption.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Dto\Aaru.Dto.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Filesystems\Aaru.Filesystems.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Localization\Aaru.Localization.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Partitions\Aaru.Partitions.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Images\Aaru.Images.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Filters\Aaru.Filters.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Settings\Aaru.Settings.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Devices\Aaru.Devices.csproj"/>
|
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Checksums\Aaru.Checksums.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Decoders\Aaru.Decoders.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Helpers\Aaru.Helpers.csproj"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Devices\"/>
|
|
<Folder Include="Devices\Scanning\"/>
|
|
<Folder Include="Devices\Dumping\"/>
|
|
<Folder Include="Devices\Report\"/>
|
|
<Folder Include="Sidecar\"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="..\LICENSE">
|
|
<Link>LICENSE</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Humanizer.Core"/>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection"/>
|
|
<PackageReference Include="Sentry"/>
|
|
<PackageReference Include="SkiaSharp"/>
|
|
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Condition="$([MSBuild]::IsOSPlatform('Linux'))"/>
|
|
<PackageReference Include="Spectre.Console"/>
|
|
<PackageReference Include="Spectre.Console.Json"/>
|
|
<PackageReference Include="System.ValueTuple"/>
|
|
</ItemGroup>
|
|
</Project>
|