Forum member

pbassett

7 posts

Posts by pbassett

  1. NCrunch Console Tool Requiring Unneeded Packages

    For posterity's sake, here's the work-around that I ended up going: I created a simple csproj file referencing those needed packages, and then I call dotnet restore on it before I call the ncrunch console tool. That way, the files were already there before ncrunch.exe ran, and it worked fine.

  2. NCrunch Console Tool Requiring Unneeded Packages

    Yes, the correct versions of the required packages are downloaded to c:\users\sa-buildsvr\.nuget\packages. If the packages are already there before NCrunch is run, NCrunch runs fine. If they're not there, NCrunch will download them, and then fail because it says it couldn't download them.

  3. NCrunch Console Tool Requiring Unneeded Packages

    NCrunch is being run as user sa-buildsvr. The packages are downloaded to C:\Users\sa-buildsvr\.nuget\packages

  4. Where to get a list of all Console Tool Settings

    I don't actually use the NCrunch client -- I'm a build engineer, and I only deal with the NCrunch console tool in our pipeline. Is there any way to get a list of the available settings without having to install the NCrunch client?

  5. NCrunch Console Tool Requiring Unneeded Packages

    I did some more digging, and this is what I found: NCrunch is doing an msbuild restore (not a dotnet restore) on project generated by NCrunch. That project is found in C:\Users\[username]\AppData\Local\NCrunch\[TempDir]\PackageRestore\restorePackages.csproj In my case, this is the contents of…

  6. Where to get a list of all Console Tool Settings

    When I run the console tool without any arguments, it prints out a usage guide. Part of that guide says: [quote] -'Setting' Allows individual config settings to be overridden. For example, '-LogVerbosity Detailed' will set the engine to display detailed log data. Sem…

  7. NCrunch Console Tool Requiring Unneeded Packages

    I have a .Net Standard project being built in VS 2019 Build Tools. After doing a dotnet restore and a build, I run the NCrunch Console tool on its solution. NCrunch errors complaining about missing packages. The packages that it's complaining about are not needed to build or run it, but NCrun…