Forum member

LucasT

11 posts

Posts by LucasT

  1. "Auto-Detect NuGet Build Dependencies" fails when repositoryPath is overridden in nuget.config

    [quote=Remco;13473]We try to handle these sorts of situations but generally don't want to make big sacrifices for them (i.e. if we cut load time performance by 15% just to fix this issue, it just isn't worth it).[/quote] Sure, I understand that. I hope you'll manage to fix it without sacrificing pe…

  2. "Auto-Detect NuGet Build Dependencies" fails when repositoryPath is overridden in nuget.config

    Ok, thanks. I've used the "Additional files to include" setting but it's not very convenient for some packages. FYI this came up after some confusion following the removal of a NCrunch-specific workaround in Fody, which was thought to no longer be necessary (see [url=https://github.com/Fody/Fody/…

  3. "Auto-Detect NuGet Build Dependencies" fails when repositoryPath is overridden in nuget.config

    The [url=https://www.ncrunch.net/documentation/reference_project-configuration_autodetect-nuget-build-dependencies]Auto-Detect NuGet Build Dependencies[/url] feature seems to work fine only for the [i]default package repository path[/i] in the old-style project format. But if you set a custom [ur…

  4. "Error 1316. The specified account already exists." when installing for VS2019 with Chocolatey

    FWIW v3.27.0.3 fixed this issue, thanks! I guess it's related to the following changelog item: [quote]Added support for quiet installations with the NCrunch for Visual Studio 2019 installer[/quote]

  5. "Error 1316. The specified account already exists." when installing for VS2019 with Chocolatey

    Thanks for the suggestion, but that was the first time I was installing the VS 2019 version. I'll try to figure it out if the next release still has this issue.

  6. "Error 1316. The specified account already exists." when installing for VS2019 with Chocolatey

    That's a custom chocolatey script though, so I don't expect you to maintain it. I just shared the issue in case it would ring a bell.

  7. "Error 1316. The specified account already exists." when installing for VS2019 with Chocolatey

    I have the following (custom) Chocolatey script: [quote]Install-ChocolateyPackage 'ncrunch2019' 'msi' '/quiet /norestart' '\\some\network\path\to\NCrunch_VS2019_3.25.0.3.msi'[/quote] It fails with error 1316, and the MSI log contains the following: [quote] MSI (s) (18:44) [15:29:53:779]: S…

  8. Project load failure

    Yes, it was an <Import> tag. If you want to reproduce it, it's just a matter of: Install-Package JetBrains.ReSharper.SDK [url=https://github.com/controlflow/resharper-postfix/blob/d482267944ec492704a87ff5c121c716cfe78989/PostfixTemplates/PostfixTemplates.R91.csproj#L239-L268]Here's an example[…

  9. Project load failure

    OK, I finally fixed the problem. The project imports a lot of third-party target files (specifically: the JetBrains SDK). Some of these files were encoded in UTF-16... [i]without a BOM[/i]. MSBuild loads them just fine, but XDocument seems unable to cope with them. This explains the \x00 byte er…

  10. Project load failure

    The project is a C# library (so a standard XML MSBuild file), and I double-checked it's well-formed. I tried to remove the BOM but it didn't change the outcome. (my previous message was a mistake, the file was still locked by the hex editor, so VS didn't load it and NCrunch didn't complain).

  11. Project load failure

    Hi, I've successfully used NCrunch in a number of solutions so far (great product BTW), but I have one project which refuses to load (The Status column says "Load failure"). The Tests window shows the following stack trace: [code=csharp] System.Xml.XmlException: Name cannot begin with the …