-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCodebreaker.Data.Cosmos.csproj
More file actions
34 lines (29 loc) · 1.24 KB
/
Codebreaker.Data.Cosmos.csproj
File metadata and controls
34 lines (29 loc) · 1.24 KB
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
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>CNinnovation.Codebreaker.Cosmos</PackageId>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageTags>
Codebreaker;CNinnovation;Cosmos
</PackageTags>
<Description>
This library contains Azure Cosmos DB data access for the Codebreaker backend services.
See https://github.com/codebreakerapp for more information on the complete solution.
</Description>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageIcon>codebreaker.jpeg</PackageIcon>
<Version>3.8.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CNinnovation.Codebreaker.BackendModels" Condition="'$(UseLocalProjects)' != 'true'" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Codebreaker.GameAPIs.Models\Codebreaker.GameAPIs.Models.csproj" Condition="'$(UseLocalProjects)' == 'true'" />
</ItemGroup>
<ItemGroup>
<None Include="docs/readme.md" Pack="true" PackagePath="\" />
<None Include="Images/codebreaker.jpeg" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>