In a project where i am using the TaskScheduler Lib i cannot create an Unit test becuase of the CS0433 error
The type <type> exists in both DLLs
This is because i need to fake the System.dll but cannot, because your lib is implementing the IReadOnlyCollection and IReadOnlyList with the same namespace..
Is there any way to fix this issue?
Comments: ** Comment from web user: dahall **
The type <type> exists in both DLLs
This is because i need to fake the System.dll but cannot, because your lib is implementing the IReadOnlyCollection and IReadOnlyList with the same namespace..
Is there any way to fix this issue?
Comments: ** Comment from web user: dahall **
Those interfaces are only defined in the builds for the library that are compiled with versions of the .NET framework that do not yet support them (pre 4.5). In the .zip file, or the NuGet package, use the 4.5.2 compiled version of the library and you will not find those interfaces implemented.