mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 11:14:25 +00:00
89 lines
4.0 KiB
XML
89 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<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>
|
|
<Version>6.0.0-alpha9</Version>
|
|
<Company>Claunia.com</Company>
|
|
<Copyright>Copyright © 2011-2023 Natalia Portillo</Copyright>
|
|
<Product>Aaru Data Preservation Suite</Product>
|
|
<Title>Aaru Data Preservation Suite</Title>
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<LangVersion>11</LangVersion>
|
|
<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' ">
|
|
<InternalsVisibleTo Include="Aaru.Tests" />
|
|
<InternalsVisibleTo Include="Aaru.Tests.Devices" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<DefaultItemExcludes>
|
|
$(DefaultItemExcludes);cuetools.net/**/*
|
|
</DefaultItemExcludes>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<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="NonClosableStream.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" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="..\LICENSE.LGPL">
|
|
<Link>LICENSE.LGPL</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Aaru.Compression.Native" Version="6.0.0-alpha9" />
|
|
<PackageReference Include="DotNetZip" Version="1.16.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
|
<PackageReference Include="SharpCompress" Version="0.32.2" />
|
|
<PackageReference Include="System.Resources.Extensions" Version="7.0.0" />
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Aaru.Helpers\Aaru.Helpers.csproj" />
|
|
</ItemGroup>
|
|
</Project> |