Skip to content

Commit

Permalink
Akka.Persistence.SqlServer v1.3.14 upgrade (#120)
Browse files Browse the repository at this point in the history
* Akka.Persistence.SqlServer v1.3.14 upgrade

* disabled serialization specs since akkadotnet/akka.net#3811

* fixed target to .NET 4.5
  • Loading branch information
Aaronontheweb authored Jul 30, 2019
1 parent d66654b commit f2175b6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ class = ""Akka.Persistence.SqlServer.Journal.BatchingSqlServerJournal, Akka.Pers
return ConfigurationFactory.ParseString(specString);
}

// TODO: hack. Replace when https://github.com/akkadotnet/akka.net/issues/3811
protected override bool SupportsSerialization => false;

protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
Expand Down
3 changes: 3 additions & 0 deletions src/Akka.Persistence.SqlServer.Tests/SqlServerJournalSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ class = ""Akka.Persistence.SqlServer.Journal.SqlServerJournal, Akka.Persistence.
return ConfigurationFactory.ParseString(specString);
}

// TODO: hack. Replace when https://github.com/akkadotnet/akka.net/issues/3811
protected override bool SupportsSerialization => false;

protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
Expand Down
6 changes: 3 additions & 3 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ Resolves https://github.com/akkadotnet/Akka.Persistence.SqlServer/issues/104 - m
</PropertyGroup>
<PropertyGroup>
<XunitVersion>2.4.1</XunitVersion>
<AkkaVersion>1.3.13</AkkaVersion>
<AkkaVersion>1.3.14</AkkaVersion>
<TestSdkVersion>15.9.0</TestSdkVersion>
<NetCoreTestVersion>netcoreapp2.1</NetCoreTestVersion>
<NetFrameworkTestVersion>net461</NetFrameworkTestVersion>
<NetStandardLibVersion>netstandard2.0</NetStandardLibVersion>
<NetFrameworkLibVersion>net452</NetFrameworkLibVersion>
<NetStandardLibVersion>netstandard1.6</NetStandardLibVersion>
<NetFrameworkLibVersion>net45</NetFrameworkLibVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
Expand Down

0 comments on commit f2175b6

Please sign in to comment.