2019-01-01 16:43:34 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
|
<ProjectGuid>{F4399FF5-9BD0-475A-9EA7-3DAE45291FE2}</ProjectGuid>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2020-02-27 00:33:25 +00:00
|
|
|
|
<RootNamespace>Aaru.Dto</RootNamespace>
|
2020-02-26 19:24:05 +00:00
|
|
|
|
<AssemblyName>Aaru.Dto</AssemblyName>
|
2022-02-15 11:03:18 +00:00
|
|
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
2019-01-01 16:43:34 +00:00
|
|
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2021-12-08 21:48:35 +00:00
|
|
|
|
<Version>6.0.0-alpha8</Version>
|
2019-01-01 16:43:34 +00:00
|
|
|
|
<Company>Claunia.com</Company>
|
2022-02-18 10:02:43 +00:00
|
|
|
|
<Copyright>Copyright © 2011-2022 Natalia Portillo</Copyright>
|
2020-02-27 11:27:52 +00:00
|
|
|
|
<Product>Aaru Data Preservation Suite</Product>
|
2020-02-27 00:39:32 +00:00
|
|
|
|
<Title>Aaru.Dto</Title>
|
2019-01-01 16:43:34 +00:00
|
|
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
2022-11-13 12:46:18 +00:00
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-11-13 12:48:42 +00:00
|
|
|
|
<LangVersion>11</LangVersion>
|
2020-12-20 22:59:31 +00:00
|
|
|
|
<Description>Data transfer objects used to interchange data between Aaru and Aaru.Server.</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>
|
2022-03-07 07:36:43 +00:00
|
|
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
2022-11-13 17:13:10 +00:00
|
|
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
2019-01-01 16:43:34 +00:00
|
|
|
|
</PropertyGroup>
|
2022-11-13 13:19:57 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
|
<NoWarn>CS1591;CS1574</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
2022-11-13 16:38:17 +00:00
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests"/>
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests.Devices"/>
|
|
|
|
|
|
</ItemGroup>
|
2019-01-01 16:43:34 +00:00
|
|
|
|
<PropertyGroup>
|
2022-03-07 07:36:43 +00:00
|
|
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
2019-01-01 16:43:34 +00:00
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Include="..\LICENSE.LGPL">
|
|
|
|
|
|
<Link>LICENSE.LGPL</Link>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:50:27 +00:00
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all" />
|
2019-01-01 16:43:34 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:50:27 +00:00
|
|
|
|
<Compile Include="CdOffsetDto.cs" />
|
|
|
|
|
|
<Compile Include="DeviceDto.cs" />
|
|
|
|
|
|
<Compile Include="NesHeaderDto.cs" />
|
|
|
|
|
|
<Compile Include="SyncDto.cs" />
|
|
|
|
|
|
<Compile Include="UsbProductDto.cs" />
|
|
|
|
|
|
<Compile Include="UsbVendorDto.cs" />
|
2019-01-01 16:43:34 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:50:27 +00:00
|
|
|
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj" />
|
2019-01-01 16:43:34 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|