Forum member

yizhou

3 posts

Posts by yizhou

  1. Build failure when MSBuildProjectExtensionsPath is set

    Thanks, Remco, for the information. Currently our workaround is to import the nuget props explicitly in csproj for NCrunch. [code=xml]<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net472</TargetFramework> </PropertyGroup> <Import Project="$(MSBuildProjectExte…

  2. Build failure when MSBuildProjectExtensionsPath is set

    Thanks Remco. Our build system relies on setting this MSBuildProjectExtensionsPath property. I've tried suppressing it for NCrunch before, but I got this error that [b]obj\project.assets.json[/b] is not found. The generated files are in [b].pkgref[/b] folder as we set in MSBuildProjectExtensionsPa…

  3. Build failure when MSBuildProjectExtensionsPath is set

    When [b]MSBuildProjectExtensionsPath[/b] is set in [i]Directory.Build.props[/i], the nuget props file (nuget.g.props, which defines Pkg* variables) are not read by NCrunch, so references using Pkg* variable are missing. Seems that NCrunch is using [b]BaseIntermediateOutputPath[/b] to read the nuget…