forked from william-liebenberg/AzureGems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzureGems.Repository.CosmosDB.csproj
39 lines (34 loc) · 1.45 KB
/
AzureGems.Repository.CosmosDB.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
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Company>AzureGems</Company>
<Authors>William Liebenberg</Authors>
<PackageProjectUrl>https://azuregems.io</PackageProjectUrl>
<PackageTags>CosmosDB Repository</PackageTags>
<RepositoryUrl>https://github.com/william-liebenberg/AzureGems</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Description>Cosmos DB implementation for the Repository pattern.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Copyright>William Liebenberg</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
<FileVersion>2.1.0.0</FileVersion>
<Version>2.1.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AzureGems.CosmosDB" Version="2.1.0" />
<PackageReference Include="AzureGems.Repository.Abstractions" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AzureGems.CosmosDB\AzureGems.CosmosDB.csproj" />
<ProjectReference Include="..\AzureGems.Repository.Abstractions\AzureGems.Repository.Abstractions.csproj" />
</ItemGroup>
</Project>