private IInstallation m_Installation;
[Setup]
public async Task Setup()
{
using (SubscriptionCapture<PifEventArgs> capture = CaptureFactory.For(m_Events.Added))
{
m_Installation = await m_Installations.Add(InstallationHelper.CreateDefinition()).ConfigureAwait(false);
await capture.WaitForAndReset(1).ConfigureAwait(false);
}
}
Complains CS8618: Non-nullable field must contain a non-null value
Complains CS8618: Non-nullable field must contain a non-null value