InABox.Database.csproj 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{E16ECF68-BE9B-4ABD-BC37-80271EA53CB4}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>InABox.Database</RootNamespace>
  11. <AssemblyName>InABox.Database</AssemblyName>
  12. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. <NuGetPackageImportStamp>
  16. </NuGetPackageImportStamp>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  38. <HintPath>..\..\Comal\packages\System.AppContext.4.3.0\lib\net46\System.AppContext.dll</HintPath>
  39. <Private>True</Private>
  40. <Private>True</Private>
  41. </Reference>
  42. <Reference Include="System.ComponentModel.Composition" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Numerics" />
  45. <Reference Include="System.Runtime.Serialization" />
  46. <Reference Include="System.Data.DataSetExtensions" />
  47. <Reference Include="System.Data" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="Aggregates.cs" />
  51. <Compile Include="DatabaseLicenseStore.cs" />
  52. <Compile Include="DbFactory.cs" />
  53. <Compile Include="DigitalFormStore.cs" />
  54. <Compile Include="DocumentStore.cs" />
  55. <Compile Include="IAggregate.cs" />
  56. <Compile Include="IProvider.cs" />
  57. <Compile Include="IStore.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. <Compile Include="ScriptStore.cs" />
  60. <Compile Include="Store.cs" />
  61. </ItemGroup>
  62. <ItemGroup>
  63. <None Include="..\..\.editorconfig">
  64. <Link>.editorconfig</Link>
  65. </None>
  66. <None Include="app.config" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <ProjectReference Include="..\InABox.Configuration\InABox.Configuration.csproj">
  70. <Project>{AED031C6-4D31-4778-A19F-9C930F810EB2}</Project>
  71. <Name>InABox.Configuration</Name>
  72. </ProjectReference>
  73. <ProjectReference Include="..\InABox.Core\InABox.Core.csproj">
  74. <Project>{A4AE18F1-1016-4119-8477-6A7ECC878A43}</Project>
  75. <Name>InABox.Core</Name>
  76. </ProjectReference>
  77. <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj">
  78. <Project>{702da50a-dc67-43ca-9124-fbc84e18cc21}</Project>
  79. <Name>InABox.Logging.Shared</Name>
  80. </ProjectReference>
  81. <ProjectReference Include="..\InABox.Reports.Common\InABox.Reports.Common.csproj">
  82. <Project>{26EDC095-ED1F-4F45-8782-21233CCA785E}</Project>
  83. <Name>InABox.Reports.Common</Name>
  84. </ProjectReference>
  85. <ProjectReference Include="..\InABox.Scripting\InABox.Scripting.csproj">
  86. <Project>{13917bb3-4a32-49c8-80c5-2df34a0cbbc7}</Project>
  87. <Name>InABox.Scripting</Name>
  88. </ProjectReference>
  89. </ItemGroup>
  90. <ItemGroup>
  91. <PackageReference Include="Newtonsoft.Json">
  92. <Version>13.0.1</Version>
  93. </PackageReference>
  94. <PackageReference Include="System.Collections.Immutable">
  95. <Version>6.0.0</Version>
  96. </PackageReference>
  97. </ItemGroup>
  98. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  99. </Project>