Skip to content

Commit

Permalink
Merge pull request #90 from seniorquico/master
Browse files Browse the repository at this point in the history
Revert RegistrationStrategy change and upgrade to Orleans 3.1.2
  • Loading branch information
seniorquico authored Mar 5, 2020
2 parents 13e3921 + 8fd0cf6 commit 18e7960
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/OrleansTestKit/OrleansTestKit.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
Expand All @@ -15,7 +15,7 @@
<PackageTags>Orleans Cloud-Computing Actor-Model Actors Distributed-Systems C# .NET Test Testing</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>3.1.0</Version>
<Version>3.1.1</Version>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -31,7 +31,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Orleans.OrleansRuntime" Version="3.1.1" />
<PackageReference Include="Microsoft.Orleans.OrleansRuntime" Version="3.1.2" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
6 changes: 4 additions & 2 deletions src/OrleansTestKit/TestGrainActivationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@

namespace Orleans.TestKit
{
public sealed class TestGrainActivationContext :
IGrainActivationContext
public sealed class TestGrainActivationContext : IGrainActivationContext
{
public IServiceProvider ActivationServices { get; set; }

Expand All @@ -23,5 +22,8 @@ public sealed class TestGrainActivationContext :
public IDictionary<object, object> Items => throw new NotImplementedException();

public IGrainLifecycle ObservableLifecycle { get; set; }

[SuppressMessage("Microsoft.Design", "CA1065:DoNotRaiseExceptionsInUnexpectedLocations")]
public IMultiClusterRegistrationStrategy RegistrationStrategy => throw new NotImplementedException();
}
}

0 comments on commit 18e7960

Please sign in to comment.