2018-08-05 19:37:39 +01:00
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk= "Microsoft.NET.Sdk" >
<PropertyGroup >
<Configuration Condition= " '$(Configuration)' == '' " > Debug</Configuration>
<Platform Condition= " '$(Platform)' == '' " > AnyCPU</Platform>
<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>
2021-12-08 21:48:35 +00:00
<Version > 6.0.0-alpha8</Version>
2018-08-05 19:37:39 +01:00
<Company > Claunia.com</Company>
2020-12-31 23:08:23 +00:00
<Copyright > Copyright © 2011-2021 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>
2021-09-12 22:25:59 +01:00
<TargetFramework > net6</TargetFramework>
<LangVersion > 10</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>
2021-09-12 22:25:59 +01:00
<DisableImplicitNamespaceImports > true</DisableImplicitNamespaceImports>
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>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
<DebugSymbols > true</DebugSymbols>
<DebugType > full</DebugType>
<Optimize > false</Optimize>
<OutputPath > bin\Debug</OutputPath>
<DefineConstants > DEBUG;</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
<ConsolePause > false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
<DebugType > full</DebugType>
<Optimize > true</Optimize>
<OutputPath > bin\Release</OutputPath>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
<ConsolePause > false</ConsolePause>
</PropertyGroup>
<ItemGroup >
2021-09-12 22:25:59 +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-09-12 22:25:59 +01:00
<PackageReference Include= "EntityFramework" Version= "6.4.4" />
2021-11-09 01:46:07 +00:00
<PackageReference Include= "Microsoft.EntityFrameworkCore.Design" Version= "6.0.0" >
2021-09-12 22:25:59 +01:00
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2021-11-09 01:46:07 +00:00
<PackageReference Include= "Microsoft.EntityFrameworkCore.Proxies" Version= "6.0.0" />
<PackageReference Include= "Microsoft.EntityFrameworkCore.Sqlite" Version= "6.0.0" />
2021-09-12 22:25:59 +01:00
<PackageReference Include= "Microsoft.EntityFrameworkCore.Sqlite.Design" Version= "2.0.0-preview1-final" />
2021-09-12 22:53:19 +01:00
<PackageReference Include= "Unclassified.NetRevisionTask" Version= "0.4.1" PrivateAssets= "all" />
2018-08-05 19:37:39 +01:00
</ItemGroup>
<ItemGroup >
2021-09-12 22:25:59 +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" />
2021-12-08 21:46:39 +00:00
<Compile Include= "Migrations\20211208214543_AddNesHeaders.cs" />
<Compile Include= "Migrations\20211208214543_AddNesHeaders.Designer.cs" />
2021-09-12 22:25:59 +01:00
<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" />
2021-12-08 20:34:36 +00:00
<Compile Include= "Models\NesHeaderInfo.cs" />
2021-09-12 22:25:59 +01:00
<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-09-12 22:25:59 +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>
<ProjectExtensions >
<MonoDevelop >
<Properties >
<Policies >
2021-09-12 22:25:59 +01:00
<StandardHeader IncludeInNewFiles= "True" Text= "/***************************************************************************
Aaru Data Preservation Suite
----------------------------------------------------------------------------
 
Filename : ${FileName}
Author(s) : ${AuthorName} <${AuthorEmail}>

Component : Component
 
--[ Description ] ----------------------------------------------------------
 
 Description
 
--[ License ] --------------------------------------------------------------
 
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as
 published by the Free Software Foundation; either version 2.1 of the
 License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, see <http://www.gnu.org/licenses/>.

----------------------------------------------------------------------------
Copyright © 2011-${Year} ${CopyrightHolder}
****************************************************************************/" />
<TextStylePolicy FileWidth= "120" TabWidth= "4" IndentWidth= "4" RemoveTrailingWhitespace= "True" NoTabsAfterNonTabs= "False" EolMarker= "Native" TabsToSpaces= "True" scope= "text/x-csharp" />
<CSharpFormattingPolicy IndentBlock= "True" IndentBraces= "False" IndentSwitchSection= "True" IndentSwitchCaseSection= "True" LabelPositioning= "OneLess" NewLinesForBracesInTypes= "True" NewLinesForBracesInMethods= "True" NewLinesForBracesInProperties= "True" NewLinesForBracesInAccessors= "True" NewLinesForBracesInAnonymousMethods= "True" NewLinesForBracesInControlBlocks= "True" NewLinesForBracesInAnonymousTypes= "True" NewLinesForBracesInObjectCollectionArrayInitializers= "True" NewLinesForBracesInLambdaExpressionBody= "True" NewLineForElse= "True" NewLineForCatch= "True" NewLineForFinally= "True" NewLineForMembersInObjectInit= "True" NewLineForMembersInAnonymousTypes= "True" NewLineForClausesInQuery= "True" SpacingAfterMethodDeclarationName= "False" SpaceWithinMethodDeclarationParenthesis= "False" SpaceBetweenEmptyMethodDeclarationParentheses= "False" SpaceAfterMethodCallName= "False" SpaceWithinMethodCallParentheses= "False" SpaceBetweenEmptyMethodCallParentheses= "False" SpaceWithinExpressionParentheses= "False" SpaceWithinCastParentheses= "False" SpaceWithinOtherParentheses= "False" SpaceAfterCast= "False" SpacesIgnoreAroundVariableDeclaration= "False" SpaceBeforeOpenSquareBracket= "False" SpaceBetweenEmptySquareBrackets= "False" SpaceWithinSquareBrackets= "False" SpaceAfterColonInBaseTypeDeclaration= "True" SpaceAfterComma= "True" SpaceAfterDot= "False" SpaceAfterSemicolonsInForStatement= "True" SpaceBeforeColonInBaseTypeDeclaration= "True" SpaceBeforeComma= "False" SpaceBeforeDot= "False" SpaceBeforeSemicolonsInForStatement= "False" SpacingAroundBinaryOperator= "Single" WrappingPreserveSingleLine= "True" WrappingKeepStatementsOnSingleLine= "True" PlaceSystemDirectiveFirst= "True" SpaceAfterControlFlowStatementKeyword= "False" scope= "text/x-csharp" />
2018-08-05 19:37:39 +01:00
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
2021-08-17 21:23:10 +01:00
<PropertyGroup Condition= "$(TargetFramework.StartsWith('net4')) and '$(OS)' == 'Unix'" >
<!-- When compiling .NET SDK 2.0 projects targeting .NET 4.x on Mono using 'dotnet build' you -->
<!-- have to teach MSBuild where the Mono copy of the reference asssemblies is -->
<!-- Look in the standard install locations -->
<BaseFrameworkPathOverrideForMono Condition= "'$(BaseFrameworkPathOverrideForMono)' == '' AND EXISTS('/Library/Frameworks/Mono.framework/Versions/Current/lib/mono')" > /Library/Frameworks/Mono.framework/Versions/Current/lib/mono</BaseFrameworkPathOverrideForMono>
<BaseFrameworkPathOverrideForMono Condition= "'$(BaseFrameworkPathOverrideForMono)' == '' AND EXISTS('/usr/lib/mono')" > /usr/lib/mono</BaseFrameworkPathOverrideForMono>
<BaseFrameworkPathOverrideForMono Condition= "'$(BaseFrameworkPathOverrideForMono)' == '' AND EXISTS('/usr/local/lib/mono')" > /usr/local/lib/mono</BaseFrameworkPathOverrideForMono>
<!-- If we found Mono reference assemblies, then use them -->
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net40'" > $(BaseFrameworkPathOverrideForMono)/4.0-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net45'" > $(BaseFrameworkPathOverrideForMono)/4.5-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net451'" > $(BaseFrameworkPathOverrideForMono)/4.5.1-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net452'" > $(BaseFrameworkPathOverrideForMono)/4.5.2-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net46'" > $(BaseFrameworkPathOverrideForMono)/4.6-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net461'" > $(BaseFrameworkPathOverrideForMono)/4.6.1-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net462'" > $(BaseFrameworkPathOverrideForMono)/4.6.2-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net47'" > $(BaseFrameworkPathOverrideForMono)/4.7-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net471'" > $(BaseFrameworkPathOverrideForMono)/4.7.1-api</FrameworkPathOverride>
<EnableFrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != ''" > true</EnableFrameworkPathOverride>
<!-- Add the Facades directory. Not sure how else to do this. Necessary at least for .NET 4.5 -->
<AssemblySearchPaths Condition= "'$(BaseFrameworkPathOverrideForMono)' != ''" > $(FrameworkPathOverride)/Facades;$(AssemblySearchPaths)</AssemblySearchPaths>
</PropertyGroup>
2018-08-05 19:37:39 +01:00
</Project>