Forum member

gieniowski

9 posts

Posts by gieniowski

  1. xunit.v3.mtp-v2 update to v4.0.0 makes all tests to fail

    Can confirm that new build works for me. Thank you Remco!

  2. xunit.v3.mtp-v2 update to v4.0.0 makes all tests to fail

    Hey, after updating xunit package to version 4 as shown below: [quote] <!--<PackageVersion Include="xunit.v3.mtp-v2" Version="3.2.2" />--> <PackageVersion Include="xunit.v3.mtp-v2" Version="4.0.0" />[/quote] all of my tests are failing with this message: [quote]System.Reflection.Target…

  3. The "ResolvePackageAssets" task failed unexpectedly.

    This is funny, as I had to select .net 11 preview version to make it work :D Selecting 10.0.201 or VS2026 is causing this error. I noticed that non-insiders version is using the same settings, but tests are not affected and they work too. I consider my issue solved. I am still here if you want…

  4. The "ResolvePackageAssets" task failed unexpectedly.

    I am on windows 11. Issue occurs only on VS2026 insiders (with the latest update too, because today I have installed it). I noticed this issue around 2 weeks ago. Usually I use two versions of VS, normal one and insiders. Whenever I need to focus on tests, I just open solution in not insiders instan…

  5. The "ResolvePackageAssets" task failed unexpectedly.

    Thank you for quick reaction! Unfortunately new build does not fix my issue...

  6. The "ResolvePackageAssets" task failed unexpectedly.

    Whenever I enable ncrunch (5.20.0.2) in the project in the latest visual studio 2026 insiders version (Insiders [11605.296]) I get this error immediately: [quote]System.Exception: An exception was thrown in the remote environment: System.Reflection.TargetInvocationException: Exception has been th…

  7. DateOnly serialization issue with latest xunit

    Yup, did the test. Works now, thank you!

  8. DateOnly serialization issue with latest xunit

    Thanks Remco! Just realized that I have forgot to mention that I am using visual studio 2022 and tried it with two versions of nCrunch: 4.17.0.7 and 4.18.0.3.

  9. DateOnly serialization issue with latest xunit

    Hi, ncruch fails in the scenario described below. xunit test: public class UnitTest1 { [Theory] [MemberData(nameof(Inline))] public void Test1(DateOnly date) { Assert.True(true); } public static IEnumerable<object[]> Inline() { yield return…