Skip to content

Commit 801f630

Browse files
RiverPhillipsasosMikeGore
authored andcommitted
Update to latest cosmos libraries (#39)
* Update to use Microsoft.Azure.DocumentDb 2.4.0 * Use Microsoft.Azure.DocumentDB for .net 4.5.2 * Refactor to remove unnescessary awaits and usings * Revert "Refactor to remove unnescessary awaits and usings" This reverts commit e2a974f.
1 parent 1f9f306 commit 801f630

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/SimpleEventStore/SimpleEventStore.AzureDocumentDb.Tests/SimpleEventStore.AzureDocumentDb.Tests.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
</Content>
1010
</ItemGroup>
1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.Azure.DocumentDB" Version="2.1.2" Condition="'$(TargetFramework)' == 'net452'" />
13-
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="2.1.2" Condition="'$(TargetFramework)' == 'netcoreapp2.0'" />
12+
<PackageReference Include="Microsoft.Azure.DocumentDB" Version="2.4.0" Condition="'$(TargetFramework)' == 'net452'" />
13+
<PackageReference Include="Microsoft.Azure.DocumentDB" Version="2.4.0" />
14+
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="2.4.0" Condition="'$(TargetFramework)' == 'netcoreapp2.0'" />
1415
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.0.0.0" Condition="'$(TargetFramework)' == 'net452'" />
1516
<PackageReference Include="Microsoft.Extensions.Configuration" Version="1.1.2" />
1617
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.2" />

src/SimpleEventStore/SimpleEventStore.AzureDocumentDb/SimpleEventStore.AzureDocumentDb.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
<BuildVersion>1.0.0</BuildVersion>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Microsoft.Azure.DocumentDB" Version="2.1.2" Condition="'$(TargetFramework)' == 'net452'" />
9-
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="2.1.2" Condition="'$(TargetFramework)' == 'netstandard1.6'" />
8+
<PackageReference Include="Microsoft.Azure.DocumentDB" Version="2.4.0" Condition="'$(TargetFramework)' == 'net452'" />
9+
<PackageReference Include="Microsoft.Azure.DocumentDB" Version="2.4.0" />
10+
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="2.4.0" Condition="'$(TargetFramework)' == 'netstandard1.6'" />
1011
</ItemGroup>
1112
<ItemGroup>
1213
<ProjectReference Include="..\SimpleEventStore\SimpleEventStore.csproj" />

0 commit comments

Comments
 (0)