We are developing a C# SDK on GitHub that targets the following frameworks:
<TargetFrameworks>net45;net451;net452;net46;net461;net462;net47;net471;net472;netstandard1.6;netstandard2.0</TargetFrameworks>
The VS2017 solution contains 17 projects of which 11 are test projects. We have duplicate test projects to make sure we can test for both the .NET Framework projects and for NetStandard.
Since we added net471;472
AppVeyor can no longer successfully run the tests, i keep getting the following:
Unable to acquire remote process agent
at NUnit.Engine.Runners.ProcessRunner.CreateAgentAndRunner()
at NUnit.Engine.Runners.ProcessRunner.RunTests(ITestEventListener listener, TestFilter filter)
Here is the link the the AppVeyor config file https://github.com/RHEAGROUP/CDP4-SDK-Community-Edition/blob/master/appveyor.yml and here is the AppVeyor project itself https://ci.appveyor.com/project/samatrhea/cdp4-sdk-community-edition
I doubt the problem is due to net471;net472
, but more due to the number of projects in this solution.
Some help on how to configure appveyor to make the builds successful again would be appreciated. Locally all tests are passing and we do not have the same problem
Thanks in advance on any tip!