Forum member

kkraus

4 posts

Posts by kkraus

  1. New installation with VS2026

    I could get it to work with the workaround you suggested. Thanks a lot!

  2. New installation with VS2026

    Hello, I got a new laptop with Windows 11 and installed the latest version of VS2026 with NCrunch 5.19.0.5 Unfortunately I cannot get the builds to succeed for my dotnet 9 projects. I get blow error: [quote]NCrunch was unable to resolve dependency data for its own assemblies under your ch…

  3. Building with OpenApi generation

    Hello! Thanks for the response! I got it to work with a similar approach and using this: <PropertyGroup> <GenerateDocumentationFile>true</GenerateDocumentationFile> <OpenApiGenerateDocuments Condition="'$(NCrunch)' == '1'">false</OpenApiGenerateDocuments> <OpenApiDocumentsDirector…

  4. Building with OpenApi generation

    Hello, since dotnet9 is deprecating the old way to create OpenApi documents the recommended way is to add a package reference to <PackageReference Include="Microsoft.Extensions.ApiDescription.Server" Version="9.0.0"> Everything builds via dotnet and visual studio but building with NCrunch r…