I am evaluating ncruch for our project. I get into f[img]null[/img]ew troubles while using ncrunch. One of them is that on every change, ncruch runs git.exe, don't know why which is ver annoying as it opens the command window every time.
Remco NCrunch Developer
#16547
17 Mar 2023 22:20 UTC
Hi, thanks for posting.
NCrunch doesn't call git.exe itself, but if this is being invoked by your build system or test code, then it can be triggered in response to actions by NCrunch.
Most likely you have a build step that is performing this action. I suggest checking through your projects for any build steps that could be doing this. It's possible they may have a dependency on a Nuget package that can do this.
NCrunch doesn't call git.exe itself, but if this is being invoked by your build system or test code, then it can be triggered in response to actions by NCrunch.
Most likely you have a build step that is performing this action. I suggest checking through your projects for any build steps that could be doing this. It's possible they may have a dependency on a Nuget package that can do this.
Do have some Git Version type of MS Build Task running on build?
If it is gitversion then you can you can set the ms build property DisableGitVersionTask to true, when NCrunch is running.
If it is gitversion then you can you can set the ms build property DisableGitVersionTask to true, when NCrunch is running.
<PropertyGroup Condition="'$(NCrunch)' == '1'">
<DisableGitVersionTask>true</DisableGitVersionTask>
</PropertyGroup>
Edited 23 Mar 2023 17:25 UTC
Deleted post
#16638
28 Apr 2023 11:22 UTC
Deleted post
#17564
25 Aug 2024 03:13 UTC
Post a reply
Log in to reply.