mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 11:14:25 +00:00
83 lines
3.8 KiB
XML
83 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{D7016DF2-5A5E-4524-B40D-BA2D59576688}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>Aaru.Filesystems</RootNamespace>
|
|
<AssemblyName>Aaru.Filesystems</AssemblyName>
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
|
<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.Filesystems</Title>
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<NoWarn>CS0649</NoWarn>
|
|
<LangVersion>11</LangVersion>
|
|
<Description>Filesystem implementations 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>
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
|
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
|
|
</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>
|
|
<PackageReference Include="Claunia.Encoding" Version="1.9.2" />
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Aaru.Checksums\Aaru.Checksums.csproj" />
|
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj" />
|
|
<ProjectReference Include="..\Aaru.Helpers\Aaru.Helpers.csproj" />
|
|
<ProjectReference Include="..\Aaru.Partitions\Aaru.Partitions.csproj" />
|
|
<ProjectReference Include="..\Aaru.Images\Aaru.Images.csproj" />
|
|
<ProjectReference Include="..\Aaru.Console\Aaru.Console.csproj" />
|
|
<ProjectReference Include="..\Aaru.Decoders\Aaru.Decoders.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="LisaFS\" />
|
|
<Folder Include="UCSDPascal\" />
|
|
<Folder Include="AppleMFS\" />
|
|
<Folder Include="CPM\" />
|
|
<Folder Include="AppleDOS\" />
|
|
<Folder Include="ISO9660\" />
|
|
<Folder Include="ISO9660\Structs\" />
|
|
<Folder Include="ISO9660\Consts\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="..\LICENSE.LGPL">
|
|
<Link>LICENSE.LGPL</Link>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="CPM\cpmdefs.json" />
|
|
<EmbeddedResource Update="Localization\Localization.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Localization.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Aaru.Generators\Aaru.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
</ItemGroup>
|
|
</Project> |