2018-08-05 19:37:39 +01:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-03-07 07:36:44 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<RootNamespace>Aaru.Database</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Aaru.Database</AssemblyName>
|
|
|
|
|
|
<ReleaseVersion>$(Version)</ReleaseVersion>
|
|
|
|
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
|
|
|
|
<Version>6.0.0-alpha8</Version>
|
|
|
|
|
|
<Company>Claunia.com</Company>
|
|
|
|
|
|
<Copyright>Copyright © 2011-2022 Natalia Portillo</Copyright>
|
|
|
|
|
|
<Product>Aaru Data Preservation Suite</Product>
|
|
|
|
|
|
<Title>Aaru.Database</Title>
|
|
|
|
|
|
<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>
|
2022-03-07 07:36:44 +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>
|
|
|
|
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
2022-11-13 17:13:10 +00:00
|
|
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
2022-03-07 07:36:44 +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:18 +00:00
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests"/>
|
|
|
|
|
|
<InternalsVisibleTo Include="Aaru.Tests.Devices"/>
|
|
|
|
|
|
</ItemGroup>
|
2022-03-07 07:36:44 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<NrtRevisionFormat>$(Version)+{chash:8}</NrtRevisionFormat>
|
|
|
|
|
|
<NrtResolveSimpleAttributes>true</NrtResolveSimpleAttributes>
|
|
|
|
|
|
<NrtShowRevision>true</NrtShowRevision>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Include="..\LICENSE.LGPL">
|
|
|
|
|
|
<Link>LICENSE.LGPL</Link>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:35:50 +00:00
|
|
|
|
<PackageReference Include="EntityFramework" Version="6.4.4" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.0">
|
2022-03-07 07:36:44 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2022-11-13 14:35:50 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Design" Version="2.0.0-preview1-final" />
|
2022-11-13 14:50:27 +00:00
|
|
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all" />
|
2022-03-07 07:36:44 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:35:50 +00: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\20211208214543_AddNesHeaders.cs" />
|
|
|
|
|
|
<Compile Include="Migrations\20211208214543_AddNesHeaders.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\NesHeaderInfo.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" />
|
2022-03-07 07:36:44 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2022-11-13 14:35:50 +00:00
|
|
|
|
<ProjectReference Include="..\Aaru.CommonTypes\Aaru.CommonTypes.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Aaru.Decoders\Aaru.Decoders.csproj" />
|
2022-03-07 07:36:44 +00:00
|
|
|
|
</ItemGroup>
|
2018-08-05 19:37:39 +01:00
|
|
|
|
</Project>
|