Skip to content

Commit

Permalink
upgrade to NET6, update nugets and remove non-production providers
Browse files Browse the repository at this point in the history
* Libs are still .netstandard 2.x but all netcore 3 projects migrated to net6
* update direct nuget packages to latest
* remove experimental pravega provider, no demand, not worth maintaining
* remove postgres provider, was never solid
* remove SqlStreamStore provider
  • Loading branch information
rofr committed Dec 10, 2022
1 parent c2796e9 commit 7d5eaa3
Show file tree
Hide file tree
Showing 46 changed files with 28 additions and 1,973 deletions.
1 change: 0 additions & 1 deletion src/Memstate.All/Memstate.All.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<ItemGroup>
<ProjectReference Include="..\Memstate.EventStore\Memstate.EventStore.csproj" />
<ProjectReference Include="..\Memstate.JsonNet\Memstate.JsonNet.csproj" />
<ProjectReference Include="..\Memstate.Postgresql\Memstate.Postgres.csproj" />
<ProjectReference Include="..\Memstate.AppMetrics\Memstate.AppMetrics.csproj" />
<ProjectReference Include="..\Memstate.Core\Memstate.Core.csproj" />
<ProjectReference Include="..\Memstate.Wire\Memstate.Wire.csproj" />
Expand Down
3 changes: 1 addition & 2 deletions src/Memstate.Benchmarks/Memstate.Benchmarks.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="benchmarkdotnet" Version="0.12.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Memstate.EventStore\Memstate.EventStore.csproj" />
<ProjectReference Include="..\Memstate.JsonNet\Memstate.JsonNet.csproj" />
<ProjectReference Include="..\Memstate.Postgresql\Memstate.Postgres.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json" CopyToOutputDirectory="PreserveNewest" />
Expand Down
2 changes: 0 additions & 2 deletions src/Memstate.Benchmarks/MemstateBenchmarks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Memstate.EventStore;
using Memstate.Models;
using Memstate.Models.KeyValue;
using Memstate.Postgres;

namespace Memstate.Benchmarks
{
Expand All @@ -21,7 +20,6 @@ public class MemstateBenchmarks

[Params(
//typeof(InMemoryStorageProvider),
typeof(PostgresProvider),
typeof(EventStoreProvider))]
public Type StorageProviderTypes { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<StartupObject></StartupObject>
<ApplicationIcon />
</PropertyGroup>

<ItemGroup>
<PackageReference Include="microsoft.net.test.sdk" Version="16.6.1" />
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1">
<PackageReference Include="nunit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
3 changes: 1 addition & 2 deletions src/Memstate.Host/Memstate.Host.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Authors>Devrex Labs</Authors>
<Company>Devrex Labs</Company>
<Product>Memstate</Product>
Expand All @@ -27,7 +27,6 @@
<ProjectReference Include="..\Memstate.EventStore\Memstate.EventStore.csproj" />
<ProjectReference Include="..\Memstate.JsonNet\Memstate.JsonNet.csproj" />
<ProjectReference Include="..\Memstate.MsConfig\Memstate.MsConfig.csproj" />
<ProjectReference Include="..\Memstate.Postgresql\Memstate.Postgres.csproj" />
<ProjectReference Include="..\Memstate.Wire\Memstate.Wire.csproj" />
<ProjectReference Include="..\Memstate.AppMetrics\Memstate.AppMetrics.csproj" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Memstate.JsonNet/Memstate.JsonNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<Compile Remove="SurrogateConverter.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Memstate.Core\Memstate.Core.csproj" />
Expand Down
29 changes: 0 additions & 29 deletions src/Memstate.Postgresql.Tests/Domain/Create.cs

This file was deleted.

21 changes: 0 additions & 21 deletions src/Memstate.Postgresql.Tests/Domain/Resolve.cs

This file was deleted.

17 changes: 0 additions & 17 deletions src/Memstate.Postgresql.Tests/Domain/Task.cs

This file was deleted.

10 changes: 0 additions & 10 deletions src/Memstate.Postgresql.Tests/Domain/Todo.cs

This file was deleted.

105 changes: 0 additions & 105 deletions src/Memstate.Postgresql.Tests/JournalReaderTests.cs

This file was deleted.

20 changes: 0 additions & 20 deletions src/Memstate.Postgresql.Tests/Memstate.Postgres.Test.csproj

This file was deleted.

Loading

0 comments on commit 7d5eaa3

Please sign in to comment.