Forum member

NuvasiveIOS

6 posts

Posts by NuvasiveIOS

  1. Could not locate the assembly "System.ValueTuple"

    Actually, trying it again once more 'Additional Files To Include' did allow me to build. In either case, the dll is being added to _ncrunchreferences. I sent a gif showing this.

  2. Could not locate the assembly "System.ValueTuple"

    Remco, Thanks for the explanation. In my case, adding the dll to 'Additional Files To Include' didn't change anything since the dll with or without it is found within _ncrunchreferences. The only thing that was different was the csproj. Unfortunately, I cannot update our build/reference process s…

  3. Could not locate the assembly "System.ValueTuple"

    michaelkroes, I tried that. It's not that the dll is not being copied over into the _ncrunchreferences directory, because it is, it is that the resulting .csproj file within %localappdata%\NCrunch\#####\#\<PROJECT>\ does not update the path. In the solution I provided, you can see the working ver…

  4. Could not locate the assembly "System.ValueTuple"

    Sent. My apologies for the delayed response. As far as I can tell, there two cases where it works and one that does not. 1. A relative path is used to the dll. This is the normal case if getting from nuget. 2. when using a variable, like $(SolutionDir), and the word "System." is not part of t…

  5. Could not locate the assembly "System.ValueTuple"

    It's ValueTuple, not ValueType. Here's the nuget package in reference: [url=https://www.nuget.org/packages/System.ValueTuple/]https://www.nuget.org/packages/System.ValueTuple/[/url] It comes by default with .net 4.7 but since I'm using 4.6.1 it needs to be referenced by the nuget package. Wha…

  6. Could not locate the assembly "System.ValueTuple"

    My project has a dependency on System.ValueTuple that is downloaded with NuGet. Everything builds fine in Visual Studio and our build server but fails to build with NUnit. It appears that the NCrunch logic is removing the reference to System.ValueTuple within the csproj because of the "System" pa…