Skip to content

Commit

Permalink
Updated JasperFx.Core
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Feb 4, 2025
1 parent fda3f03 commit 06a68e4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/CoreTests/StoreOptionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Linq;
using System.Text.Json;
using JasperFx.CodeGeneration;
using JasperFx.Core.Descriptions;
using Marten;
using Marten.Services;
using Marten.Storage;
Expand Down Expand Up @@ -441,6 +442,13 @@ public void maybe_correct_tenant_id(TenantIdStyle style, string tenantId, string
options.MaybeCorrectTenantId(tenantId).ShouldBe(corrected);
}

[Fact]
public void can_generate_options_description()
{
// just a smoke test
var description = new OptionsDescription(new StoreOptions());
}


private class DummyNpgsqlDataSourceFactory: INpgsqlDataSourceFactory
{
Expand Down
2 changes: 1 addition & 1 deletion src/Marten/Marten.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

<ItemGroup>
<PackageReference Include="FSharp.Core" Version="9.0.100" />
<PackageReference Include="JasperFx.Core" Version="1.11.0" />
<PackageReference Include="JasperFx.Core" Version="1.12.0" />
<PackageReference Include="JasperFx.CodeGeneration" Version="3.7.2" />
<PackageReference Include="JasperFx.RuntimeCompiler" Version="3.7.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
Expand Down

0 comments on commit 06a68e4

Please sign in to comment.