-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLivestreamRecorder.DB.csproj
28 lines (28 loc) · 1.31 KB
/
LivestreamRecorder.DB.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAotCompatible>false</IsAotCompatible>
<Configurations>CouchDB;CosmosDB;AzureCosmosDB_Release;ApacheCouchDB_Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CosmosDB|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='CouchDB|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ApacheCouchDB_Release|AnyCPU'">
<DefineConstants>$(DefineConstants);COUCHDB;RELEASE</DefineConstants>
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='AzureCosmosDB_Release|AnyCPU'">
<DefineConstants>$(DefineConstants);COSMOSDB;RELEASE</DefineConstants>
<Optimize>True</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CouchDB.NET" Version="3.6.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="ValueInjecter" Version="3.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<TrimmerRootAssembly Include="ValueInjecter" />
</ItemGroup>
</Project>