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>
<RootNamespace > DiscImageChef.Database</RootNamespace>
<AssemblyName > DiscImageChef.Database</AssemblyName>
<ReleaseVersion > $(Version)</ReleaseVersion>
<EnableDefaultCompileItems > false</EnableDefaultCompileItems>
<GenerateAssemblyInfo > true</GenerateAssemblyInfo>
<Version > 4.5.99.1693</Version>
<Company > Claunia.com</Company>
2018-12-29 17:34:38 +00:00
<Copyright > Copyright © 2011-2019 Natalia Portillo</Copyright>
2018-08-05 19:37:39 +01:00
<Product > The Disc Image Chef</Product>
<Title > DiscImageChef.Database</Title>
<ApplicationVersion > $(Version)</ApplicationVersion>
2019-10-25 23:20:16 +01:00
<TargetFrameworks > net461;netstandard2.0;netcoreapp2.0</TargetFrameworks>
2018-08-05 19:37:39 +01:00
</PropertyGroup>
<PropertyGroup >
<NrtRevisionFormat > $(Version)-{chash:8} built by {mname} in $(Configuration){!:, modified}</NrtRevisionFormat>
<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 >
<Reference Include= "System" />
</ItemGroup>
<ItemGroup >
<EmbeddedResource Include= "..\LICENSE.LGPL" >
<Link > LICENSE.LGPL</Link>
</EmbeddedResource>
</ItemGroup>
<ItemGroup >
<PackageReference Include= "EntityFramework" Version= "6.2.0" />
2019-09-19 15:02:21 +01:00
<PackageReference Include= "Microsoft.EntityFrameworkCore.Design" Version= "2.2.6" />
<PackageReference Include= "Microsoft.EntityFrameworkCore.Sqlite" Version= "2.2.6" />
2018-08-05 19:37:39 +01:00
<PackageReference Include= "Microsoft.EntityFrameworkCore.Sqlite.Design" Version= "1.1.6" />
2019-09-19 15:02:21 +01:00
<PackageReference Include= "Unclassified.NetRevisionTask" Version= "0.3.0" />
2018-08-05 19:37:39 +01:00
</ItemGroup>
<ItemGroup >
<Compile Include= "Context.cs" />
2019-01-02 23:00:00 +00:00
<Compile Include= "ContextFactory.cs" />
2018-11-26 23:16:54 +00:00
<Compile Include= "Migrations\20181126222301_DeviceReportV2.cs" />
<Compile Include= "Migrations\20181126222301_DeviceReportV2.Designer.cs" />
2018-11-27 01:41:50 +00:00
<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" />
2018-12-21 03:17:35 +00:00
<Compile Include= "Migrations\20181221015906_NameValueStatistics.cs" />
<Compile Include= "Migrations\20181221015906_NameValueStatistics.Designer.cs" />
2018-12-21 03:34:54 +00:00
<Compile Include= "Migrations\20181221032605_MediaStatistics.cs" />
<Compile Include= "Migrations\20181221032605_MediaStatistics.Designer.cs" />
2018-12-21 03:55:56 +00:00
<Compile Include= "Migrations\20181221034941_SeenDevicesStatistics.cs" />
<Compile Include= "Migrations\20181221034941_SeenDevicesStatistics.Designer.cs" />
2018-12-21 04:08:58 +00:00
<Compile Include= "Migrations\20181221040408_OperatingSystemStatistics.cs" />
<Compile Include= "Migrations\20181221040408_OperatingSystemStatistics.Designer.cs" />
2018-12-21 04:17:14 +00:00
<Compile Include= "Migrations\20181221041242_VersionStatistics.cs" />
<Compile Include= "Migrations\20181221041242_VersionStatistics.Designer.cs" />
2018-12-21 13:25:35 +00:00
<Compile Include= "Migrations\20181221125353_AddStatsCounters.cs" />
<Compile Include= "Migrations\20181221125353_AddStatsCounters.Designer.cs" />
2018-12-23 18:49:07 +00:00
<Compile Include= "Migrations\20181223183913_FixUnsignedFields.cs" />
<Compile Include= "Migrations\20181223183913_FixUnsignedFields.Designer.cs" />
2018-12-23 23:51:06 +00:00
<Compile Include= "Migrations\20181223214411_UseBinaryDataForIdentifyInquiryAndModesInReports.cs" />
<Compile Include= "Migrations\20181223214411_UseBinaryDataForIdentifyInquiryAndModesInReports.Designer.cs" />
2018-12-24 06:29:52 +00:00
<Compile Include= "Migrations\20181224044809_StoreUsbIdsInDatabase.cs" />
<Compile Include= "Migrations\20181224044809_StoreUsbIdsInDatabase.Designer.cs" />
2018-12-24 21:13:02 +00:00
<Compile Include= "Migrations\20181224172147_FixUsbIdsAndIndexes.cs" />
<Compile Include= "Migrations\20181224172147_FixUsbIdsAndIndexes.Designer.cs" />
2018-12-25 03:04:57 +00:00
<Compile Include= "Migrations\20181225002740_AddCdOffsets.cs" />
<Compile Include= "Migrations\20181225002740_AddCdOffsets.Designer.cs" />
2018-12-25 16:15:33 +00:00
<Compile Include= "Migrations\20181225152947_StoreMmcGetConfigurationResponse.cs" />
<Compile Include= "Migrations\20181225152947_StoreMmcGetConfigurationResponse.Designer.cs" />
2018-12-26 01:15:30 +00:00
<Compile Include= "Migrations\20181225214500_StoreReadResultsInReportDatabase.cs" />
<Compile Include= "Migrations\20181225214500_StoreReadResultsInReportDatabase.Designer.cs" />
2019-01-02 22:27:02 +00:00
<Compile Include= "Migrations\20190102061236_AddMultisessionLeadTest.cs" />
<Compile Include= "Migrations\20190102061236_AddMultisessionLeadTest.Designer.cs" />
2019-01-03 16:55:15 +00:00
<Compile Include= "Migrations\20190102230036_AddOptimalReadMultipleCount.cs" />
<Compile Include= "Migrations\20190102230036_AddOptimalReadMultipleCount.Designer.cs" />
2019-01-08 20:41:18 +00:00
<Compile Include= "Migrations\20190108013456_AddChangeableScsiModes.cs" />
<Compile Include= "Migrations\20190108013456_AddChangeableScsiModes.Designer.cs" />
2019-05-26 00:44:26 +01:00
<Compile Include= "Migrations\20190525183723_IdForDensityCode.cs" />
<Compile Include= "Migrations\20190525183723_IdForDensityCode.Designer.cs" />
2019-11-03 01:41:30 +00:00
<Compile Include= "Migrations\20191103000828_MakeFieldsUnsigned.cs" />
<Compile Include= "Migrations\20191103000828_MakeFieldsUnsigned.Designer.cs" />
2019-12-07 18:08:31 +00:00
<Compile Include= "Migrations\20191207175444_SyncWithServerChanges.cs" />
<Compile Include= "Migrations\20191207175444_SyncWithServerChanges.Designer.cs" />
2018-08-05 19:37:39 +01:00
<Compile Include= "Migrations\DicContextModelSnapshot.cs" />
2018-12-25 03:04:57 +00:00
<Compile Include= "Models\CdOffset.cs" />
2018-12-21 03:17:35 +00:00
<Compile Include= "Models\Command.cs" />
2018-08-05 19:37:39 +01:00
<Compile Include= "Models\Device.cs" />
2018-12-21 03:55:56 +00:00
<Compile Include= "Models\DeviceStat.cs" />
2018-12-21 03:17:35 +00:00
<Compile Include= "Models\Filesystem.cs" />
<Compile Include= "Models\Filter.cs" />
2018-12-21 03:34:54 +00:00
<Compile Include= "Models\Media.cs" />
2018-12-21 03:17:35 +00:00
<Compile Include= "Models\MediaFormat.cs" />
2018-12-21 04:08:58 +00:00
<Compile Include= "Models\OperatingSystem.cs" />
2018-12-21 03:17:35 +00:00
<Compile Include= "Models\Partition.cs" />
2018-11-26 23:16:54 +00:00
<Compile Include= "Models\Report.cs" />
2018-12-24 06:29:52 +00:00
<Compile Include= "Models\UsbProduct.cs" />
<Compile Include= "Models\UsbVendor.cs" />
2018-12-21 04:17:14 +00:00
<Compile Include= "Models\Version.cs" />
2018-08-05 19:37:39 +01:00
</ItemGroup>
<ItemGroup >
<ProjectReference Include= "..\DiscImageChef.CommonTypes\DiscImageChef.CommonTypes.csproj" />
<ProjectReference Include= "..\DiscImageChef.Decoders\DiscImageChef.Decoders.csproj" />
</ItemGroup>
<ProjectExtensions >
<MonoDevelop >
<Properties >
<Policies >
<StandardHeader IncludeInNewFiles= "True" Text= "/***************************************************************************
The Disc Image Chef
----------------------------------------------------------------------------
 
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" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
2019-09-13 19:21:25 +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>