Forum member
gieniowski
9 posts
Posts by gieniowski
-
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!
26 Aug 2026 06:09 UTC
-
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…
18 Aug 2026 07:41 UTC
-
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…
18 Mar 2026 12:15 UTC
-
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…
18 Mar 2026 11:44 UTC
-
The "ResolvePackageAssets" task failed unexpectedly.
Thank you for quick reaction! Unfortunately new build does not fix my issue...
18 Mar 2026 06:33 UTC
-
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…
17 Mar 2026 14:04 UTC
-
DateOnly serialization issue with latest xunit
Yup, did the test. Works now, thank you!
22 Jul 2023 12:20 UTC
-
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.
21 Jul 2023 14:01 UTC
-
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…
21 Jul 2023 06:23 UTC