NCrunch cannot compile my project whereas VS can.
The project is this one :
https://github.com/hybri...FCore.Integration.Tests
Got a huge stacktrace like this one :
Error while discovering test 'CQELight.DAL.EFCore.Integration.Tests.Adapters.EFCoreDataWriterAdapterTests.Physical_Deletion_ById':System.Exception: System.TypeLoadException: Method 'GetAsync' in type 'CQELight.DAL.EFCore.EFRepository`1' from assembly 'CQELight.DAL.EFCore, Version=1.2.2.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
at nCrunch.TestExecution.Reflection.Clr.ClrAssembly.GetTypes()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.GetFlattenedTypes()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.get_TypesByFullName()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.GetTypeByFullName(String typeFullName)
at nCrunch.Module.XUnit2.Integration.XUnitNCrunchDiscoveredTestContainer.StoreDiscoveredTest(ITestCase testCase, TestName testName)
at nCrunch.Module.XUnit2.Integration.XUnitDiscoveryMessageSink.discoverTest(ITestCase testCase)
Error while discovering test 'CQELight.DAL.EFCore.Integration.Tests.Adapters.EFCoreDataWriterAdapterTests.Logical_Deletion_ById':System.Exception: System.TypeLoadException: Method 'GetAsync' in type 'CQELight.DAL.EFCore.EFRepository`1' from assembly 'CQELight.DAL.EFCore, Version=1.2.2.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
at nCrunch.TestExecution.Reflection.Clr.ClrAssembly.GetTypes()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.GetFlattenedTypes()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.get_TypesByFullName()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.GetTypeByFullName(String typeFullName)
at nCrunch.Module.XUnit2.Integration.XUnitNCrunchDiscoveredTestContainer.StoreDiscoveredTest(ITestCase testCase, TestName testName)
at nCrunch.Module.XUnit2.Integration.XUnitDiscoveryMessageSink.discoverTest(ITestCase testCase)
Error while discovering test 'CQELight.DAL.EFCore.Integration.Tests.Adapters.EFCoreDataWriterAdapterTests.Physical_Deletion':System.Exception: System.TypeLoadException: Method 'GetAsync' in type 'CQELight.DAL.EFCore.EFRepository`1' from assembly 'CQELight.DAL.EFCore, Version=1.2.2.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
at nCrunch.TestExecution.Reflection.Clr.ClrAssembly.GetTypes()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.GetFlattenedTypes()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.get_TypesByFullName()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.GetTypeByFullName(String typeFullName)
at nCrunch.Module.XUnit2.Integration.XUnitNCrunchDiscoveredTestContainer.StoreDiscoveredTest(ITestCase testCase, TestName testName)
at nCrunch.Module.XUnit2.Integration.XUnitDiscoveryMessageSink.discoverTest(ITestCase testCase)
Error while discovering test 'CQELight.DAL.EFCore.Integration.Tests.Adapters.EFCoreDataWriterAdapterTests.EFRepository_Logical_Deletion':System.Exception: System.TypeLoadException: Method 'GetAsync' in type 'CQELight.DAL.EFCore.EFRepository`1' from assembly 'CQELight.DAL.EFCore, Version=1.2.2.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
at nCrunch.TestExecution.Reflection.Clr.ClrAssembly.GetTypes()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.GetFlattenedTypes()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.get_TypesByFullName()
at nCrunch.TestExecution.Reflection.ReflectedAssembly.GetTypeByFullName(String typeFullName)
at nCrunch.Module.XUnit2.Integration.XUnitNCrunchDiscoveredTestContainer.StoreDiscoveredTest(ITestCase testCase, TestName testName)
at nCrunch.Module.XUnit2.Integration.XUnitDiscoveryMessageSink.discoverTest(ITestCase testCase)
at nCrunch.Module.XUnit2.Integration.XUnit2DiscoveryEnvironment.FindFrameworkTestsInAssembly(ReflectedAssembly assembly, FilePath assemblyFilePath, IList`1 referencedAssemblyFilePaths, ComponentUniqueName testComponentUniqueName, PlatformType platformType, DynamicProxy[] dynamicProxies)
at nCrunch.TestExecution.TestFinder.<>c__DisplayClass0_2.<FindTestsForFrameworks>b__1()
at nCrunch.Common.PerformanceTracking.PerfTracker.TrackActivity(String name, Action activity)
at nCrunch.TestExecution.TestFinder.<>c__DisplayClass0_0.<FindTestsForFrameworks>b__0()
at nCrunch.Common.PerformanceTracking.PerfTracker.TrackActivity(String name, Action activity)
at nCrunch.TestExecution.TestFinder.FindTestsForFrameworks(ReflectedAssembly assembly, FilePath assemblyFilePath, IList`1 referencedAssemblyFilePaths, DescribedTestFrameworkDiscoverer[] describedDiscoverers, ComponentUniqueName testComponentUniqueName, PlatformType platformType, DynamicProxy[] dynamicProxies)
at nCrunch.TestExecution.RemoteTaskRunner.AnalyseAssembly(DescribedTestFrameworkDiscoverer[] applicableFrameworks, ComponentUniqueName testComponentUniqueName, PerfTracker perfTracker)
...
Any help would be appreciated !