rd-net/Test.RdFramework/Mocks.cs (13 lines of code) (raw):
#if NETCOREAPP
using System;
using System.Threading;
namespace Test.RdFramework
{
public class ApartmentAttribute : Attribute
{
// ReSharper disable once UnusedParameter.Local
public ApartmentAttribute(ApartmentState state)
{
}
}
}
#endif