Forum member

RichardAnderssen

5 posts

Posts by RichardAnderssen

  1. csproj targetFrameworks netstandard1.3;net461 gives error

    Adding the 'global.json' to "Additional files to include" for both net461 and netstandard1.3 in NCrunch did the trick - NCrunch compiles and runs flawlessly now! Thanks for the help! Might be good to know for others who has a mix of SDK's installed, I believe.

  2. csproj targetFrameworks netstandard1.3;net461 gives error

    A thing we noticed; In the error, seems NCrunch is reporting: C:\Program Files\dotnet\sdk\2.1.103\Sdks\Microsoft.NET.Sdk\build\Microsoft.PackageDependencyResolution.targets This should indicate that NCrunch uses SDK 2.1.103. However, global.json in solution folder, has this: { "sdk": { …

  3. csproj targetFrameworks netstandard1.3;net461 gives error

    Yeah, I reproduced the error in a small solution, with one console-project having net461, referencing a simple class library project which I tried with the different project setup-possibilities as described below. Also got fixtures for ncrunch, in a class library with net461, referencing the afore…

  4. csproj targetFrameworks netstandard1.3;net461 gives error

    Hi again, and thanks for the swift reply. The problem still persists, even after trying the steps you mentioned above. There is also now an extra line reported in NCrunch, which is an extra project failing to build, reported for netstandard 1.3: C:\Program Files\dotnet\sdk\2.1.103\Sdks\M…

  5. csproj targetFrameworks netstandard1.3;net461 gives error

    Hi! After changing a csproj-file to new format: --- [quote]<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFrameworks>netstandard1.3;net461</TargetFrameworks> <PackageId>Someproject</PackageId> </PropertyGroup> <PropertyGroup> <DocumentationFile>bin\$(Configurat…