Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

<ItemGroup>
<ProjectReference Include="..\Wolverine.RDBMS\Wolverine.RDBMS.csproj"/>
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.14.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.14.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Weasel.Postgresql" Version="8.2.0" />
<PackageReference Include="Weasel.Postgresql" Version="8.3.1" />
</ItemGroup>

<Import Project="../../../Analysis.Build.props" />
Expand Down
2 changes: 1 addition & 1 deletion src/Persistence/Wolverine.RDBMS/Wolverine.RDBMS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Weasel.Core" Version="8.2.0" />
<PackageReference Include="Weasel.Core" Version="8.3.1" />
</ItemGroup>

<Import Project="../../../Analysis.Build.props" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<EmbeddedResource Include="Schema/*.sql" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Weasel.SqlServer" Version="8.2.0" />
<PackageReference Include="Weasel.SqlServer" Version="8.3.1" />
</ItemGroup>

<Import Project="../../../Analysis.Build.props" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,22 @@ public record CSP5;

// Just need this to be explicit
[WolverineIgnore]
public static class CSP5User
public class CSP5User
{
public static IFlag? Flag { get; set; }

public static void Handle(CSP5 message, IFlag flag, IGateway gateway)
private readonly IFlag _flag;
private readonly IGateway _gateway;
public static IFlag? Flag { get; set; }

public CSP5User(IFlag flag, IGateway gateway)
{
_flag = flag;
_gateway = gateway;
}

public void Handle(CSP5 message)
{
Flag = flag;
Flag = _flag;
_gateway.ShouldNotBeNull();
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Wolverine/Wolverine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JasperFx" Version="1.11.3" />
<PackageReference Include="JasperFx.RuntimeCompiler" Version="4.2.0" />
<PackageReference Include="JasperFx.RuntimeCompiler" Version="4.3.0" />
<PackageReference Include="NewId" Version="4.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
Expand Down
Loading