Skip to content

Commit 63fd19b

Browse files
committed
net5.0
1 parent 30de30e commit 63fd19b

13 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ Run, including running the tests that assume you've got a local EventStore and p
522522
Continually reads and writes very small events across multiple streams on .NET Full Framework
523523

524524
dotnet pack -c Release ./build.proj
525-
& ./tools/Equinox.Tool/bin/Release/net6.0/eqx.exe run -f 2500 -C -U es
525+
& ./tools/Equinox.Tool/bin/Release/net5.0/eqx.exe run -f 2500 -C -U es
526526

527527
### Run EventStore benchmark on .NET Core (when provisioned)
528528

@@ -549,7 +549,7 @@ The CLI can drive the Store and TodoBackend samples in the `samples/Web` ASP.NET
549549
$env:EQUINOX_COSMOS_DATABASE="equinox-test"
550550
$env:EQUINOX_COSMOS_CONTAINER="equinox-test"
551551

552-
tools/Equinox.Tool/bin/Release/net6.0/eqx run `
552+
tools/Equinox.Tool/bin/Release/net5.0/eqx run `
553553
cosmos -s $env:EQUINOX_COSMOS_CONNECTION -d $env:EQUINOX_COSMOS_DATABASE -c $env:EQUINOX_COSMOS_CONTAINER
554554
dotnet run -p tools/Equinox.Tool -- run `
555555
cosmos -s $env:EQUINOX_COSMOS_CONNECTION -d $env:EQUINOX_COSMOS_DATABASE -c $env:EQUINOX_COSMOS_CONTAINER

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "6.0",
3+
"version": "5.0.200",
44
"rollForward": "latestFeature"
55
}
66
}

samples/Infrastructure/Storage.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module Cosmos =
8686

8787
/// Standing up an Equinox instance is necessary to run for test purposes; You'll need to either:
8888
/// 1) replace connection below with a connection string or Uri+Key for an initialized Equinox instance with a database and collection named "equinox-test"
89-
/// 2) Set the 3x environment variables and create a local Equinox using tools/Equinox.Tool/bin/Release/net6.0/eqx.exe `
89+
/// 2) Set the 3x environment variables and create a local Equinox using tools/Equinox.Tool/bin/Release/net5.0/eqx.exe `
9090
/// init -ru 1000 cosmos -s $env:EQUINOX_COSMOS_CONNECTION -d $env:EQUINOX_COSMOS_DATABASE -c $env:EQUINOX_COSMOS_CONTAINER
9191
open Equinox.CosmosStore
9292
open Serilog

samples/Store/Domain.Tests/Domain.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<WarningLevel>5</WarningLevel>
77
</PropertyGroup>

samples/Store/Integration/Integration.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<WarningLevel>5</WarningLevel>
77
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>

samples/Web/Web.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

tests/Equinox.CosmosStore.Integration/Equinox.CosmosStore.Integration.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<WarningLevel>5</WarningLevel>
77
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>

tests/Equinox.EventStore.Integration/Equinox.EventStore.Integration.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<WarningLevel>5</WarningLevel>
77
<DefineConstants>$(DefineConstants);STORE_EVENTSTORE</DefineConstants>

tests/Equinox.MemoryStore.Integration/Equinox.MemoryStore.Integration.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<WarningLevel>5</WarningLevel>
77
</PropertyGroup>

tests/Equinox.SqlStreamStore.MsSql.Integration/Equinox.SqlStreamStore.MsSql.Integration.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<WarningLevel>5</WarningLevel>
77
<DefineConstants>$(DefineConstants);STORE_MSSQL</DefineConstants>

0 commit comments

Comments
 (0)