Forum member

MetaSam

7 posts

Posts by MetaSam

  1. NCrunch 1.36b and VB Imports Statement

    [quote=Remco;818]Interesting. Thanks for letting me know. I'm sure this is quite a rare case but I'll see what I can do about supporting it in a future revision.[/quote] Yes, I'm sure too ;-) We might just rename those projects to make it work with NCrunch. Thanks for the great support and …

  2. NCrunch 1.36b and VB Imports Statement

    I know what the real issue is... We have two projects with the same name (one of them in a subfolder), but different namespaces. NCrunch seems to ignore the second one. That would explain why the reference to types inside those projects can't be found. Renaming projects so that they all have dist…

  3. NCrunch 1.36b and VB Imports Statement

    [quote=Remco;782]Does it make any difference if you turn off the IncludeStaticReferencesInWorkspace setting for the project exhibiting the build error?[/quote] Nope, I get the same error.

  4. NCrunch 1.36b and VB Imports Statement

    Hi, I downloaded the new version of NCrunch and I have the following problem (which I didn't have previously). I have a VB Imports statement with this form: [code=vb]Imports ShortName = Some.Long.Path.To.Namespace[/code] NCrunch 1.36b doesn't seem to like it. I have the following error: …

  5. InvalidProgramException on certain tests in solution

    I'll try to work around it in the meantime by splitting into smaller methods (in 2 out of 3 cases, this is needed anyway, these methods are too long!). Thanks a lot and keep up the good work!

  6. InvalidProgramException on certain tests in solution

    Here's another isolated method which fails with the same error: [quote] Private Class SomeClass Property SomeDoubleProp As Double End Class Private Sub Test() Dim myList As New List(Of SomeClass) Dim unusedBoolValue As Boolean = False Dim intValu…

  7. InvalidProgramException on certain tests in solution

    I have a similar problem. I sent one case with the bug report tool. In this case the code which had the error was long and complicated, but I could narrow it down to: [quote] Private Class SomeClass Public Property SomeIntProperty As Integer Public Property SomeOtherIntProper…