2018-08-05 19:37:39 +01:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2020-02-27 00:33:26 +00:00
|
|
|
|
<RootNamespace>Aaru.Database</RootNamespace>
|
2020-02-26 19:24:06 +00:00
|
|
|
|
<AssemblyName>Aaru.Database</AssemblyName>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
|
|
|
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2022-12-23 00:14:16 +00:00
|
|
|
|
<Version>5.3.2</Version>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
<Company>Claunia.com</Company>
|
2025-08-14 02:49:52 +01:00
|
|
|
|
<Copyright>Copyright © 2011-2025 Natalia Portillo</Copyright>
|
2020-02-27 11:27:52 +00:00
|
|
|
|
<Product>Aaru Data Preservation Suite</Product>
|
2020-02-27 00:39:33 +00:00
|
|
|
|
<Title>Aaru.Database</Title>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
2025-08-14 02:46:10 +01:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2020-07-19 21:44:32 +01:00
|
|
|
|
<LangVersion>8</LangVersion>
|
2020-12-20 22:59:31 +00:00
|
|
|
|
<Description>Database models 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>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup>
|
2020-12-20 22:59:31 +00:00
|
|
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2021-08-17 21:23:10 +01:00
|
|
|
|
<Reference Include="System"/>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Include="..\LICENSE.LGPL">
|
|
|
|
|
|
<Link>LICENSE.LGPL</Link>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2021-08-17 21:23:10 +01:00
|
|
|
|
<PackageReference Include="EntityFramework" Version="6.4.4"/>
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.5"/>
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="3.1.5"/>
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.5"/>
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Design" Version="1.1.6"/>
|
2020-12-20 22:59:31 +00:00
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.3.0" PrivateAssets="all"/>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2021-08-17 21:23:10 +01:00
|
|
|
|
<Compile Include="Context.cs"/>
|
|
|
|
|
|
<Compile Include="ContextFactory.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181126222301_DeviceReportV2.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181126222301_DeviceReportV2.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181127001622_AddDeviceBasicFields.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181127001622_AddDeviceBasicFields.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181127013131_CorrectReportsDbSet.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181127013131_CorrectReportsDbSet.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221015906_NameValueStatistics.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221015906_NameValueStatistics.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221032605_MediaStatistics.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221032605_MediaStatistics.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221034941_SeenDevicesStatistics.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221034941_SeenDevicesStatistics.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221040408_OperatingSystemStatistics.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221040408_OperatingSystemStatistics.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221041242_VersionStatistics.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221041242_VersionStatistics.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221125353_AddStatsCounters.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181221125353_AddStatsCounters.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181223183913_FixUnsignedFields.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181223183913_FixUnsignedFields.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181223214411_UseBinaryDataForIdentifyInquiryAndModesInReports.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181223214411_UseBinaryDataForIdentifyInquiryAndModesInReports.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181224044809_StoreUsbIdsInDatabase.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181224044809_StoreUsbIdsInDatabase.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181224172147_FixUsbIdsAndIndexes.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181224172147_FixUsbIdsAndIndexes.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181225002740_AddCdOffsets.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181225002740_AddCdOffsets.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181225152947_StoreMmcGetConfigurationResponse.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181225152947_StoreMmcGetConfigurationResponse.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181225214500_StoreReadResultsInReportDatabase.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20181225214500_StoreReadResultsInReportDatabase.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20190102061236_AddMultisessionLeadTest.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20190102061236_AddMultisessionLeadTest.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20190102230036_AddOptimalReadMultipleCount.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20190102230036_AddOptimalReadMultipleCount.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20190108013456_AddChangeableScsiModes.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20190108013456_AddChangeableScsiModes.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20190525183723_IdForDensityCode.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20190525183723_IdForDensityCode.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20191103000828_MakeFieldsUnsigned.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20191103000828_MakeFieldsUnsigned.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20191207175444_SyncWithServerChanges.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20191207175444_SyncWithServerChanges.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20191207183522_AddNameCountModel.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20191207183522_AddNameCountModel.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20191207184342_AddRemoteStats.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20191207184342_AddRemoteStats.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710140320_FixIndexes.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710140320_FixIndexes.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710164101_AddCanReadGdRomUsingSwapDisc.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710164101_AddCanReadGdRomUsingSwapDisc.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710170129_AddGdRomSwapDiscCapabilities.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710170129_AddGdRomSwapDiscCapabilities.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710192426_MakeCanReadGdRomUsingSwapDiscNullable.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710192426_MakeCanReadGdRomUsingSwapDiscNullable.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710194507_AddAudioFieldsToGdromReadCapabilities.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200710194507_AddAudioFieldsToGdromReadCapabilities.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200711182425_AddFieldsForF1hCommand06hSubcommand.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200711182425_AddFieldsForF1hCommand06hSubcommand.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200711230202_FixGdRomCapabilitiesFieldName.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\20200711230202_FixGdRomCapabilitiesFieldName.Designer.cs"/>
|
|
|
|
|
|
<Compile Include="Migrations\AaruContextModelSnapshot.cs"/>
|
|
|
|
|
|
<Compile Include="Models\BaseModel.cs"/>
|
|
|
|
|
|
<Compile Include="Models\BaseOperatingSystem.cs"/>
|
|
|
|
|
|
<Compile Include="Models\CdOffset.cs"/>
|
|
|
|
|
|
<Compile Include="Models\Command.cs"/>
|
|
|
|
|
|
<Compile Include="Models\Device.cs"/>
|
|
|
|
|
|
<Compile Include="Models\DeviceStat.cs"/>
|
|
|
|
|
|
<Compile Include="Models\Filesystem.cs"/>
|
|
|
|
|
|
<Compile Include="Models\Filter.cs"/>
|
|
|
|
|
|
<Compile Include="Models\Media.cs"/>
|
|
|
|
|
|
<Compile Include="Models\MediaFormat.cs"/>
|
|
|
|
|
|
<Compile Include="Models\NameCountModel.cs"/>
|
|
|
|
|
|
<Compile Include="Models\OperatingSystem.cs"/>
|
|
|
|
|
|
<Compile Include="Models\Partition.cs"/>
|
|
|
|
|
|
<Compile Include="Models\RemoteApplication.cs"/>
|
|
|
|
|
|
<Compile Include="Models\RemoteArchitecture.cs"/>
|
|
|
|
|
|
<Compile Include="Models\RemoteOperatingSystem.cs"/>
|
|
|
|
|
|
<Compile Include="Models\Report.cs"/>
|
|
|
|
|
|
<Compile Include="Models\UsbProduct.cs"/>
|
|
|
|
|
|
<Compile Include="Models\UsbVendor.cs"/>
|
|
|
|
|
|
<Compile Include="Models\Version.cs"/>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2021-08-17 21:23:10 +01:00
|
|
|
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj"/>
|
|
|
|
|
|
<ProjectReference Include="..\Aaru.Decoders\Aaru.Decoders.csproj"/>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|