mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 11:14:25 +00:00
53 lines
2.4 KiB
XML
53 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{57BB2341-AB62-48FD-91B8-46F5A2F9ED51}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>Aaru.Devices</RootNamespace>
|
|
<AssemblyName>Aaru.Devices</AssemblyName>
|
|
<Title>Aaru.Devices</Title>
|
|
<Description>Media device hardware interface implementation 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>
|
|
</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="Microsoft.Extensions.DependencyInjection"/>
|
|
<PackageReference Include="Sentry"/>
|
|
<PackageReference Include="System.Management"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Logging\Aaru.Logging.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Decoders\Aaru.Decoders.csproj"/>
|
|
<ProjectReference Include="..\Aaru.Helpers\Aaru.Helpers.csproj"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="..\LICENSE.LGPL">
|
|
<Link>LICENSE.LGPL</Link>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Update="Localization\Localization.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Localization.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
</Project> |