Forum member

arkiaconsulting

34 posts

Posts by arkiaconsulting

  1. Can no longer build after VS2022 17.14.0 Preview 3.0 update

    Hi Remco, thanks for your quick reply. I just re-upgraded VS2022 to 17.14.0 Preview 3.0 and installed your NCrunch version above. I tested the example solution I uploaded above, and a more real life solution as well. I can confirm it now works normally. Side note: many thanks for your work …

  2. Can no longer build after VS2022 17.14.0 Preview 3.0 update

    Hi Remco, just sent the sample solution using the contact form.

  3. Can no longer build after VS2022 17.14.0 Preview 3.0 update

    Hi Remco, I downgraded VS in order to work. I'll send a sample solution on week-end.

  4. Can no longer build after VS2022 17.14.0 Preview 3.0 update

    After upgrading VS2022 to the latest version (17.14.0 Preview 3), NCrunch is unable to build the project. It's failing at the very first project down the dependency tree, with the following: [quote] The type 'IMyType' in 'D:\NCrunchWorkspace\48952\5\shared\Domain\Commands\IMyType.cs' conflicts w…

  5. Cannot build Azure Function having reference to Microsoft.Azure.Functions.Worker.Sdk 1.17.3

    Thanks @Remco. I just tested with the 5.10.0.1 with success. As I side note, I also tested this NCrunch version with the version 1.17.0 of the Microsoft.Azure.Functions.Worker.Sdk package, and I got the following build error: [quote] ..\..\..\..\program files\microsoft visual studio\2022\p…

  6. Cannot build Azure Function having reference to Microsoft.Azure.Functions.Worker.Sdk 1.17.3

    @Remco. Thanks ! done

  7. Cannot build Azure Function having reference to Microsoft.Azure.Functions.Worker.Sdk 1.17.3

    Ncrunch is unable to build an Azure Function (net 8 isolated) when it references Microsoft.Azure.Functions.Worker.Sdk with version 1.17.3 or 1.17.4. Here is the error: [quote] C:\Program Files\dotnet\sdk\8.0.400-preview.0.24324.5\Sdks\Microsoft.NET.Sdk\targets\Microsoft.PackageDependencyResolution…

  8. Stuck at "ncrunch engine is initialising"

    Even better workaround: you may disable the preview feature: [quote]Use the project cache to speed solution load[/quote]. That way, the file [quote]***.metadata.v2[/quote] under the folder [quote].vs/ProjectEvaluation[/quote] (which is actually the reason why nCrunch is unable to load) doesn't ge…

  9. Stuck at "ncrunch engine is initialising"

    Looks like there is a workaround: - Close VS - Remove the `.vs` hidden solution folder - re-launch VS And nCrunch is back (tested on 17.2.0 Preview 2.0)

  10. Stuck at "ncrunch engine is initialising"

    [quote=arkiaconsulting;16033]Now working in 17.2.0 Preview 2.0[/quote] Actually, it's been working for one day only... :-(

  11. Stuck at "ncrunch engine is initialising"

    Now working in 17.2.0 Preview 2.0

  12. Problems with Visual Studio 2022

    Thanks Remco, I confirm that this is resolved in 4.11.0.2. PS: It's always a pleasure to pay for an NCrunch license !

  13. Building precompiled C# Azure Function fails

    A workaroud: see here: https://forum.ncrunch.net/yaf_postst2767_Azure-Function---build-issue.aspx

  14. Azure Function : build issue

    I succeeded in having a Function App build within NCrunch by adding the following to the Function csproj: <Target Name="NCrunchBuild" AfterTargets="_GenerateFunctionsPostBuild" Condition=" '$(Configuration)' == 'Debug' "> <Exec Command="xcopy /y &quot;$(TargetDir)bin\$(TargetName).*&quot; &quot…