-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modernize NuGet packages to fit Akka.NET 1.5.18 #228
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
- task: UseDotNet@2 | ||
displayName: 'Use .NET Core Runtime 6.0.x' | ||
inputs: | ||
packageType: runtime | ||
version: 6.0.x | ||
- task: UseDotNet@2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -1,6 +1,6 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFrameworks>$(NetCoreTestVersion);$(NetTestVersion)</TargetFrameworks> | |||
<TargetFramework>$(NetTestVersion)</TargetFramework> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
using TestCaseStarting = Xunit.Sdk.TestCaseStarting; | ||
|
||
namespace Akka.MultiNode.TestAdapter.Tests | ||
{ | ||
internal class TestSink : IMessageSink, IDisposable | ||
internal class TestSink : LongLivedMarshalByRefObject, IMessageSink, IDisposable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, interesting - this must be one of the things we needed to do to make sure the TRX reporter works correctly.
Modernize NuGet packages to keep in-step with Akka.NET 1.5.18
Changes