2018-01-21 12:37:32 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-04-11 08:13:49 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-11-15 15:58:43 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<ProjectGuid>{858398D1-7321-4763-8BAB-56BBFEC74E29}</ProjectGuid>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
|
<RootNamespace>Aaru.Compression</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Aaru.Compression</AssemblyName>
|
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
|
|
|
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2022-12-23 17:38:04 +00:00
|
|
|
|
<Version>6.0.0-alpha9</Version>
|
2022-11-15 15:58:43 +00:00
|
|
|
|
<Company>Claunia.com</Company>
|
2024-05-01 04:17:32 +01:00
|
|
|
|
<Copyright>Copyright © 2011-2024 Natalia Portillo</Copyright>
|
2022-11-15 15:58:43 +00:00
|
|
|
|
<Product>Aaru Data Preservation Suite</Product>
|
|
|
|
|
|
<Title>Aaru Data Preservation Suite</Title>
|
|
|
|
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
2024-10-26 04:57:48 +01:00
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
|
<LangVersion>13</LangVersion>
|
2022-11-15 15:58:43 +00:00
|
|
|
|
<Description>Compression algorithms used by the Aaru Data Preservation Suite.</Description>
|
|
|
|
|
|
<PackageProjectUrl>https://github.com/aaru-dps/</PackageProjectUrl>
|
|
|
|
|
|
<PackageLicenseExpression>LGPL-2.1-only</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>
|
|
|
|
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
|
<NoWarn>CS1591;CS1574</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-10-03 22:51:02 +01:00
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests"/>
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests.Devices"/>
|
2022-11-15 15:58:43 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<DefaultItemExcludes>
|
|
|
|
|
|
$(DefaultItemExcludes);cuetools.net/**/*
|
|
|
|
|
|
</DefaultItemExcludes>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-10-03 22:51:02 +01:00
|
|
|
|
<Compile Include="ADC.cs"/>
|
|
|
|
|
|
<Compile Include="AppleRle.cs"/>
|
|
|
|
|
|
<Compile Include="BZip2.cs"/>
|
|
|
|
|
|
<Compile Include="FLAC.cs"/>
|
|
|
|
|
|
<Compile Include="LZFSE.cs"/>
|
|
|
|
|
|
<Compile Include="LZIP.cs"/>
|
|
|
|
|
|
<Compile Include="LZMA.cs"/>
|
|
|
|
|
|
<Compile Include="Native.cs"/>
|
|
|
|
|
|
<Compile Include="TeleDiskLzh.cs"/>
|
|
|
|
|
|
<Compile Include="cuetools.net/CUETools.Codecs/*.cs"/>
|
|
|
|
|
|
<Compile Include="cuetools.net/CUETools.Codecs/CommandLine/*.cs"/>
|
|
|
|
|
|
<Compile Include="cuetools.net/CUETools.Codecs/CRC/*.cs"/>
|
|
|
|
|
|
<Compile Include="cuetools.net/CUETools.Codecs/NULL/*.cs"/>
|
|
|
|
|
|
<Compile Include="cuetools.net/CUETools.Codecs/ViewModel/*.cs"/>
|
|
|
|
|
|
<Compile Include="cuetools.net/CUETools.Codecs/WAV/*.cs"/>
|
|
|
|
|
|
<Compile Include="cuetools.net/CUETools.Codecs.Flake/*.cs"/>
|
|
|
|
|
|
<Compile Include="cuetools.net/CUETools.Codecs.Flake/Properties/*.cs"/>
|
|
|
|
|
|
<Compile Include="ZSTD.cs"/>
|
2022-11-15 15:58:43 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="..\LICENSE.LGPL">
|
|
|
|
|
|
<Link>LICENSE.LGPL</Link>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-10-03 22:51:02 +01:00
|
|
|
|
<PackageReference Include="Aaru.Compression.Native" Version="6.0.0-alpha.10"/>
|
2024-05-02 04:58:36 +01:00
|
|
|
|
<PackageReference Include="AsyncFixer" Version="1.6.0">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2023-10-03 22:51:02 +01:00
|
|
|
|
<PackageReference Include="DotNetZip" Version="1.16.0"/>
|
2024-05-02 04:58:36 +01:00
|
|
|
|
<PackageReference Include="ErrorProne.NET.CoreAnalyzers" Version="0.1.2">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="ErrorProne.NET.Structs" Version="0.1.2">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.10.48">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2023-10-03 22:51:02 +01:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
|
2024-05-02 04:58:36 +01:00
|
|
|
|
<PackageReference Include="Philips.CodeAnalysis.MaintainabilityAnalyzers" Version="1.5.0">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="Roslynator.Analyzers" Version="4.12.2">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.12.2">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.12.2">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2024-05-02 02:08:01 +01:00
|
|
|
|
<PackageReference Include="SharpCompress" Version="0.37.2" />
|
2024-05-02 04:58:36 +01:00
|
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" />
|
2024-12-19 08:56:01 +00:00
|
|
|
|
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
|
2024-05-02 04:58:36 +01:00
|
|
|
|
<PackageReference Include="Text.Analyzers" Version="3.3.4">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2023-10-03 22:51:02 +01:00
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all"/>
|
2022-11-15 15:58:43 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-10-03 22:51:02 +01:00
|
|
|
|
<ProjectReference Include="..\Aaru.Helpers\Aaru.Helpers.csproj"/>
|
2022-11-15 15:58:43 +00:00
|
|
|
|
</ItemGroup>
|
2018-01-21 12:37:32 +00:00
|
|
|
|
</Project>
|