Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.NET 5 issues? #105

Closed
ffMathy opened this issue Nov 23, 2020 · 75 comments
Closed

.NET 5 issues? #105

ffMathy opened this issue Nov 23, 2020 · 75 comments
Labels

Comments

@ffMathy
Copy link
Contributor

ffMathy commented Nov 23, 2020

Disclaimer: Not fully sure this is due to .NET 5.

But after using .NET 5 and adding AltCover, I get the following error in all my tests:

System.InvalidProgramException : Common Language Runtime detected an invalid program.

@SteveGilham
Copy link
Owner

New compiler versions, new IL -- I'm not entirely surprised by this, as the call tracking -- effectively wrapping the indicated method in a try/finally -- has to be surprisingly intrusive where it fixes up all the places that the function returns.

A simple repro would be much appreciated, as none of the previous awkward cases I've kept as regression testing for this class of error showed any issues with the .net 5 build (though some of the other parts of the test suite showed changes due to the IL being generated being different).

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 23, 2020

The dilemma is that it's a client code base that I can't share with anyone - I'm under NDA.

However, it's using NUnit if that's any help?

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 23, 2020

Hmmm, in addition, it works just fine for tests that follow one of the following conditions:

  • async task test methods that have a NUnit TestCase attributes on it in addition to the mandatory Test attribute.
  • void test methods (non-async).

The failing tests have none of the above conditions, and are all async tasks.

So perhaps it has something to do with async tests?

@ericsink
Copy link

FWIW, in my LLVM to CIL project, I am finding that .NET 5 is much stricter about IL. There are places I was generating IL that wasn't quite right and .NET Core 3.1 would let me get away with it, but .NET 5 does not. I'm just starting to work through these problems so I don't have more specifics yet.

@SteveGilham
Copy link
Owner

Async tests is a possibility -- that's not something I've played with. Cutting down a known-bad test to just its essentials (of which the system under test is not one) and seeing what does and doesn't work would at least make some progress towards having a clean repro case.

@SteveGilham
Copy link
Owner

Yes that's it -- this is enough to provoke the IPE

using NUnit.Framework;
using System.Threading.Tasks;

namespace NUnitTestProject1
{
  public class Tests
  {
    [SetUp]
    public void Setup()
    {
    }

    [Test]
    public async Task AddAsync_Returns_The_Sum_Of_X_And_Y()
    {
      int result = await AddAsync(1, 1);
      Assert.AreEqual(2, result);
    }

    public async Task<int> AddAsync(int x, int y)
    {
      // simulate long calculation
      await Task.Delay(100).ConfigureAwait(false);
      // the answer to life, the universe and everything.
      return 42;
    }
  }
}

@SteveGilham
Copy link
Owner

Also, thinking about it, the use of async is going to break some of the assumptions behind the call tracking implementation, to wit,

  1. that the test is completed when the instrumented method exits (as we pop the tracking ID off the stack at that point)
  2. that a test is single-threaded even if the test runner is running multiple tests concurrently (the stacks of tracking IDs are held as thread-local values)

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 23, 2020

Can an AsyncLocal help here?

@SteveGilham
Copy link
Owner

AsyncLocal could be part of a solution; and that would be the point at which I am forced to finally abandon CLR2 support (which would simplify things elsewhere). Still not sure how to say when an async test has finished, though.

At the moment, I'm still trying to figure out what's wrong with the IL, as PEVerify isn't giving any hints -- both the original and instrumented giving [HRESULT 0x80070002] - The system cannot find the file specified. 4 times over

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 23, 2020

Not sure if it can be used as an inspiration (and not sure if there is .NET 5 support in it), but Minicover (https://github.com/lucaslorentz/minicover) has a very simple and readable implementation, and I think they support async code.

Altcover is obviously superior, but perhaps we could get inspired by how they are solving it?

@SteveGilham
Copy link
Owner

Now I see what's wrong -- decompiling the instrumented code with ILSpy pops up a "Stack underflow" error at the end; the Task isn't being properly returned. Not so surprising, as this is the first time I've used it on methods with a non-void return type.

As for async in general, I have no problem simply instrumenting async code for visiting, although so far I do nothing by way of hiding the branches injected by the state machine implementation (see e.g. issue #97). The problem arises for call tracking, as now the time to stop tracking against that test is when the Task completes, and not simply when the test method returns.

When decompiled, the unit test above looks like

[AsyncStateMachine(typeof(<AddAsync_Returns_The_Sum_Of_X_And_Y>d__1))]
[DebuggerStepThrough]
[Test]
public Task AddAsync_Returns_The_Sum_Of_X_And_Y()
{
	<AddAsync_Returns_The_Sum_Of_X_And_Y>d__1 stateMachine = new <AddAsync_Returns_The_Sum_Of_X_And_Y>d__1();
	stateMachine.<>t__builder = AsyncTaskMethodBuilder.Create();
	stateMachine.<>4__this = this;
	stateMachine.<>1__state = -1;
	stateMachine.<>t__builder.Start(ref stateMachine);
	return stateMachine.<>t__builder.Task;
}

and when instrumented for call context

[AsyncStateMachine(typeof(<AddAsync_Returns_The_Sum_Of_X_And_Y>d__1))]
[DebuggerStepThrough]
[Test]
public Task AddAsync_Returns_The_Sum_Of_X_And_Y()
{
	Instance.Push(1);
	try
	{
		Instance.Visit("2D-C3-82-41-66-9E-20-E6-9C-BD-49-FE-12-4E-1D-17-27-AB-07-C4", 100663300);
		<AddAsync_Returns_The_Sum_Of_X_And_Y>d__1 stateMachine = new <AddAsync_Returns_The_Sum_Of_X_And_Y>d__1();
		stateMachine.<>t__builder = AsyncTaskMethodBuilder.Create();
		stateMachine.<>4__this = this;
		stateMachine.<>1__state = -1;
		stateMachine.<>t__builder.Start(ref stateMachine);
		Task task = stateMachine.<>t__builder.Task;
	}
	finally
	{
		Instance.Pop(); // <==   Not the correct time to stop tracking
	}
	return (Task); // <== return value not in scope!
}

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 23, 2020

I wonder how Minicover deals with this. They have a test for async code that works I think.

Could that help?

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 23, 2020

But if I'm reading this correctly, I also suppose net5 is not the issue, but async/await in general?

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 23, 2020

@SteveGilham
Copy link
Owner

SteveGilham commented Nov 23, 2020

That could be useful, but not for the reason that MiniCover instruments async methods. What is useful is that the IL shows that MiniCover approaches the instrumentation via a per-method context object (created via a call to MiniCover.HitServices.HitService::EnterMethod), and has to do a try {method body} finally {MiniCover.HitServices.MethodScope::Dispose()} to tidy it up.

By using the try/finally approach everywhere, that means MiniCover has some robust code for wrapping methods of any signature like that, whereas AltCover only uses a try/finally wrapper for --callContext, and has only been tested with methods with signature void DoSomething(). That's something I can borrow to solve the InvalidProgramException/stack underflow issue.

It won't resolve the problem of the Task object's completion not being at the same point in time as it being returned, or the current use of thread local context storage.

In detail whereas MiniCover's recording a visit looks like

IL_0051: ldloc.3
IL_0052: ldc.i4.2
IL_0053: callvirt System.Void MiniCover.HitServices.MethodScope::Hit(System.Int32)

AltCover just invokes a static method with the assembly ID and an assembly-level index

IL_0019: ldstr "E2-28-83-99-94-91-2C-CC-CC-49-A1-88-90-E8-5C-A2-07-6E-8A-9B"
IL_001e: ldc.i4.7
IL_001f: call void [AltCover.Recorder.g]AltCover.Recorder.Instance::Visit(string, int32)

Instrumenting the public async Task<int> Method() from that unit test in AltCover currently looks like

.method private final hidebysig newslot virtual 
	instance void MoveNext () cil managed 
{
	.override method instance void [netstandard]System.Runtime.CompilerServices.IAsyncStateMachine::MoveNext()
	// Method begins at RVA 0x20c4
	// Code size 409 (0x199)
	.maxstack 3
	.locals init (
		[0] int32,
		[1] int32,
		[2] valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter,
		[3] class ClassLibrary1.Class1/'<Method>d__0',
		[4] int32,
		[5] valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter,
		[6] class [netstandard]System.Exception
	)

	IL_0000: ldarg.0
	IL_0001: ldfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<>1__state'
	IL_0006: stloc.0
	.try
	{
		IL_0007: ldloc.0
		IL_0008: brfalse.s IL_0012

		IL_000a: br.s IL_000c

		IL_000c: ldloc.0
		IL_000d: ldc.i4.1
		IL_000e: beq.s IL_0014

		IL_0010: br.s IL_0019

		IL_0012: br.s IL_007e

		IL_0014: br IL_0108

		IL_0019: ldstr "E2-28-83-99-94-91-2C-CC-CC-49-A1-88-90-E8-5C-A2-07-6E-8A-9B"
		IL_001e: ldc.i4.7
		IL_001f: call void [AltCover.Recorder.g]AltCover.Recorder.Instance::Visit(string, int32)
		IL_0024: nop
		IL_0025: ldstr "E2-28-83-99-94-91-2C-CC-CC-49-A1-88-90-E8-5C-A2-07-6E-8A-9B"
		IL_002a: ldc.i4.6
		IL_002b: call void [AltCover.Recorder.g]AltCover.Recorder.Instance::Visit(string, int32)
		IL_0030: ldarg.0
		IL_0031: ldc.i4.0
		IL_0032: stfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<x>5__1'
		IL_0037: ldstr "E2-28-83-99-94-91-2C-CC-CC-49-A1-88-90-E8-5C-A2-07-6E-8A-9B"
		IL_003c: ldc.i4.5
		IL_003d: call void [AltCover.Recorder.g]AltCover.Recorder.Instance::Visit(string, int32)
		IL_0042: ldc.i4.5
		IL_0043: call class [netstandard]System.Threading.Tasks.Task [netstandard]System.Threading.Tasks.Task::Delay(int32)
		IL_0048: callvirt instance valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter [netstandard]System.Threading.Tasks.Task::GetAwaiter()
		IL_004d: stloc.2
		IL_004e: ldloca.s 2
		IL_0050: call instance bool [netstandard]System.Runtime.CompilerServices.TaskAwaiter::get_IsCompleted()
		IL_0055: brtrue.s IL_009a

		IL_0057: ldarg.0
		IL_0058: ldc.i4.0
		IL_0059: dup
		IL_005a: stloc.0
		IL_005b: stfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<>1__state'
		IL_0060: ldarg.0
		IL_0061: ldloc.2
		IL_0062: stfld valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter ClassLibrary1.Class1/'<Method>d__0'::'<>u__1'
		IL_0067: ldarg.0
		IL_0068: stloc.3
		IL_0069: ldarg.0
		IL_006a: ldflda valuetype [netstandard]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32> ClassLibrary1.Class1/'<Method>d__0'::'<>t__builder'
		IL_006f: ldloca.s 2
		IL_0071: ldloca.s 3
		IL_0073: call instance void valuetype [netstandard]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32>::AwaitUnsafeOnCompleted<valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter, class ClassLibrary1.Class1/'<Method>d__0'>(!!0&, !!1&)
		IL_0078: nop
		IL_0079: leave IL_0198

		IL_007e: ldarg.0
		IL_007f: ldfld valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter ClassLibrary1.Class1/'<Method>d__0'::'<>u__1'
		IL_0084: stloc.2
		IL_0085: ldarg.0
		IL_0086: ldflda valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter ClassLibrary1.Class1/'<Method>d__0'::'<>u__1'
		IL_008b: initobj [netstandard]System.Runtime.CompilerServices.TaskAwaiter
		IL_0091: ldarg.0
		IL_0092: ldc.i4.m1
		IL_0093: dup
		IL_0094: stloc.0
		IL_0095: stfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<>1__state'

		IL_009a: ldloca.s 2
		IL_009c: call instance void [netstandard]System.Runtime.CompilerServices.TaskAwaiter::GetResult()
		IL_00a1: nop
		IL_00a2: ldstr "E2-28-83-99-94-91-2C-CC-CC-49-A1-88-90-E8-5C-A2-07-6E-8A-9B"
		IL_00a7: ldc.i4.4
		IL_00a8: call void [AltCover.Recorder.g]AltCover.Recorder.Instance::Visit(string, int32)
		IL_00ad: ldarg.0
		IL_00ae: ldfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<x>5__1'
		IL_00b3: stloc.s 4
		IL_00b5: ldarg.0
		IL_00b6: ldloc.s 4
		IL_00b8: ldc.i4.1
		IL_00b9: add
		IL_00ba: stfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<x>5__1'
		IL_00bf: ldstr "E2-28-83-99-94-91-2C-CC-CC-49-A1-88-90-E8-5C-A2-07-6E-8A-9B"
		IL_00c4: ldc.i4.3
		IL_00c5: call void [AltCover.Recorder.g]AltCover.Recorder.Instance::Visit(string, int32)
		IL_00ca: ldc.i4.5
		IL_00cb: call class [netstandard]System.Threading.Tasks.Task [netstandard]System.Threading.Tasks.Task::Delay(int32)
		IL_00d0: callvirt instance valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter [netstandard]System.Threading.Tasks.Task::GetAwaiter()
		IL_00d5: stloc.s 5
		IL_00d7: ldloca.s 5
		IL_00d9: call instance bool [netstandard]System.Runtime.CompilerServices.TaskAwaiter::get_IsCompleted()
		IL_00de: brtrue.s IL_0125

		IL_00e0: ldarg.0
		IL_00e1: ldc.i4.1
		IL_00e2: dup
		IL_00e3: stloc.0
		IL_00e4: stfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<>1__state'
		IL_00e9: ldarg.0
		IL_00ea: ldloc.s 5
		IL_00ec: stfld valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter ClassLibrary1.Class1/'<Method>d__0'::'<>u__1'
		IL_00f1: ldarg.0
		IL_00f2: stloc.3
		IL_00f3: ldarg.0
		IL_00f4: ldflda valuetype [netstandard]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32> ClassLibrary1.Class1/'<Method>d__0'::'<>t__builder'
		IL_00f9: ldloca.s 5
		IL_00fb: ldloca.s 3
		IL_00fd: call instance void valuetype [netstandard]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32>::AwaitUnsafeOnCompleted<valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter, class ClassLibrary1.Class1/'<Method>d__0'>(!!0&, !!1&)
		IL_0102: nop
		IL_0103: leave IL_0198

		IL_0108: ldarg.0
		IL_0109: ldfld valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter ClassLibrary1.Class1/'<Method>d__0'::'<>u__1'
		IL_010e: stloc.s 5
		IL_0110: ldarg.0
		IL_0111: ldflda valuetype [netstandard]System.Runtime.CompilerServices.TaskAwaiter ClassLibrary1.Class1/'<Method>d__0'::'<>u__1'
		IL_0116: initobj [netstandard]System.Runtime.CompilerServices.TaskAwaiter
		IL_011c: ldarg.0
		IL_011d: ldc.i4.m1
		IL_011e: dup
		IL_011f: stloc.0
		IL_0120: stfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<>1__state'

		IL_0125: ldloca.s 5
		IL_0127: call instance void [netstandard]System.Runtime.CompilerServices.TaskAwaiter::GetResult()
		IL_012c: nop
		IL_012d: ldstr "E2-28-83-99-94-91-2C-CC-CC-49-A1-88-90-E8-5C-A2-07-6E-8A-9B"
		IL_0132: ldc.i4.2
		IL_0133: call void [AltCover.Recorder.g]AltCover.Recorder.Instance::Visit(string, int32)
		IL_0138: ldarg.0
		IL_0139: ldfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<x>5__1'
		IL_013e: stloc.s 4
		IL_0140: ldarg.0
		IL_0141: ldloc.s 4
		IL_0143: ldc.i4.1
		IL_0144: add
		IL_0145: stfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<x>5__1'
		IL_014a: ldstr "E2-28-83-99-94-91-2C-CC-CC-49-A1-88-90-E8-5C-A2-07-6E-8A-9B"
		IL_014f: ldc.i4.1
		IL_0150: call void [AltCover.Recorder.g]AltCover.Recorder.Instance::Visit(string, int32)
		IL_0155: ldarg.0
		IL_0156: ldfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<x>5__1'
		IL_015b: stloc.1
		IL_015c: leave.s IL_0178
	} // end .try
	catch [netstandard]System.Exception
	{
		IL_015e: stloc.s 6
		IL_0160: ldarg.0
		IL_0161: ldc.i4.s -2
		IL_0163: stfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<>1__state'
		IL_0168: ldarg.0
		IL_0169: ldflda valuetype [netstandard]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32> ClassLibrary1.Class1/'<Method>d__0'::'<>t__builder'
		IL_016e: ldloc.s 6
		IL_0170: call instance void valuetype [netstandard]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32>::SetException(class [netstandard]System.Exception)
		IL_0175: nop
		IL_0176: leave.s IL_0198
	} // end handler

	IL_0178: ldstr "E2-28-83-99-94-91-2C-CC-CC-49-A1-88-90-E8-5C-A2-07-6E-8A-9B"
	IL_017d: ldc.i4.0
	IL_017e: call void [AltCover.Recorder.g]AltCover.Recorder.Instance::Visit(string, int32)
	IL_0183: ldarg.0
	IL_0184: ldc.i4.s -2
	IL_0186: stfld int32 ClassLibrary1.Class1/'<Method>d__0'::'<>1__state'
	IL_018b: ldarg.0
	IL_018c: ldflda valuetype [netstandard]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32> ClassLibrary1.Class1/'<Method>d__0'::'<>t__builder'
	IL_0191: ldloc.1
	IL_0192: call instance void valuetype [netstandard]System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<int32>::SetResult(!0)
	IL_0197: nop
	IL_0198: ret
} // end of method '<Method>d__0'::MoveNext

As this one doesn't have any branching within it, nor any await calls, it's all very simple, compared with the example in issue #97 -- contrast this source and what it actually compiles to

@SteveGilham
Copy link
Owner

SteveGilham commented Nov 23, 2020

The secret sauce actually appears to be inside Mono.Cecil -- MiniCover just invokes an ILProcessor method whereas I'd been rolling my own. That makes things much simpler!

@SteveGilham
Copy link
Owner

Correction, it's a MiniCover extension method, rather than part of Cecil, so I shall have to port it rather than just add an invocation. Still, it's well encapsulated, which makes things simple enough.

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 23, 2020

Exciting stuff! Seems like you're headed in the right direction. Thanks for sharing all this so extensively.

Let me know if I can be of assistance. By the way, I accepted your Skype invitation.

@SteveGilham
Copy link
Owner

The InvalidProgramException should be fixed in the latest pre-release GitHub build; as I had hoped, it was a case of just adding a dozen lines of code to handle non-void returns.

That is enough to show some of the limitations mentioned above -- from actual data gathered from the same test case as before

            <Method visited="true" cyclomaticComplexity="3" nPathComplexity="0" sequenceCoverage="100" branchCoverage="0" isConstructor="false" isStatic="false" isGetter="false" isSetter="false" crapScore="3">
              <Summary numSequencePoints="4" visitedSequencePoints="4" numBranchPoints="1" visitedBranchPoints="0" sequenceCoverage="100" branchCoverage="0" maxCyclomaticComplexity="3" minCyclomaticComplexity="3" visitedClasses="0" numClasses="0" visitedMethods="1" numMethods="1" minCrapScore="3" maxCrapScore="3" />
              <MetadataToken>100663308</MetadataToken>
              <Name>System.Void NUnitTestProject1.Tests/&lt;AddAsync&gt;d__2::MoveNext()</Name>
              <FileRef uid="2" />
              <SequencePoints>
                <SequencePoint vc="1" uspid="14" ordinal="0" offset="14" sl="21" sc="5" el="21" ec="6" bec="0" bev="0" fileid="2">
                  <Times />
                  <TrackedMethodRefs>
                    <TrackedMethodRef uid="1" vc="1" />
                  </TrackedMethodRefs>
                </SequencePoint>
                <SequencePoint vc="1" uspid="13" ordinal="1" offset="15" sl="23" sc="7" el="23" ec="51" bec="0" bev="0" fileid="2">
                  <Times />
                  <TrackedMethodRefs>
                    <TrackedMethodRef uid="1" vc="1" />
                  </TrackedMethodRefs>
                </SequencePoint>
                <SequencePoint vc="1" uspid="12" ordinal="2" offset="119" sl="24" sc="7" el="24" ec="29" bec="0" bev="0" fileid="2" />
                <SequencePoint vc="1" uspid="11" ordinal="3" offset="171" sl="25" sc="5" el="25" ec="6" bec="0" bev="0" fileid="2" />
              </SequencePoints>
              <BranchPoints />
              <MethodPoint xsi:type="SequencePoint" vc="1" uspid="14" ordinal="0" offset="14" sl="21" sc="5" el="21" ec="6" bec="0" bev="0" fileid="2" />
            </Method>

where we would expect that the whole method would be tracked.

I have strategies for resolving those issues, so I'll be in coding haze for probably another couple of days before I come up for air and take the Skype off the hook.

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 24, 2020

Alright, sounds great! Keep me posted @SteveGilham - you're a champ.

Thanks to your product, I can release 1.0 of mine soon as well!

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 27, 2020

It's great that you're making branches for each feature (https://github.com/SteveGilham/altcover/compare/develop/github/issue-105). Fun to follow along.

Again, let me know if there's anything I can do to assist or help.

Can't wait until this is released!

@SteveGilham
Copy link
Owner

Interim CI build with the async test tracking here. Onto #106 now, I guess.

@ffMathy
Copy link
Contributor Author

ffMathy commented Nov 30, 2020

Woah, that was quick for such a crazy feature! 😳 Is it on nuget?

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 1, 2020

Or perhaps there's even a private NuGet server somewhere where it can be fetched? I'd love to test it out already tonight.

@SteveGilham
Copy link
Owner

My apologies. I see that the artifacts link is private, as well as being obscure -- I'd expected it to be obscure, but public, like the AppVeyor ones are.

As I'm wrapping up #106 at the moment, I expect to release properly tomorrow (assuming no more enhancement requests).

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 1, 2020

No worries, and perfect with tomorrow's release! 🙏

@SteveGilham
Copy link
Owner

Should be resolved in release 7.2.800

@SteveGilham
Copy link
Owner

Actually, here's a version with some more logging as well (in case of something truly weird going on)

altcover.7.2.7643.13649.nupkg.zip

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 4, 2020

Hah, okay. I just tested the other one. I saw your comment pop up live :D

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 4, 2020

I'll check with the latest one.

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 4, 2020

Here's the latest logs (truncated at beginning):

C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly AltCover.Recorder or directory = "(empty)" filename = "7hYys8S+d4PyhVBjJ2+GFj2DxYTz7yxk5WqG1xl+pjc=" extension = ".Recorder" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\tools\netcoreapp2.0\AltCover.Recorder.dll or directory = "kVhWQo6mdaGknhOJt6/SnGuRQ3AZZ2gbFEhUKpnOCgU=" filename = "cJPuhQMj0aLhhM88bt+4ZhFFEW4HNHAyDTibZcbLe1w=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\steve\Documents\GitHub\altcover\_Intermediate\AltCover.Recorder\Release+AnyCPU\net20\AltCover.Recorder.pdb or directory = "J61cNLWZY2B3D/dG+IfzcqOoB9patIqClBfyHHJRzCo=" filename = "cJPuhQMj0aLhhM88bt+4ZhFFEW4HNHAyDTibZcbLe1w=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be AltCover.Recorder.pdb or cJPuhQMj0aLhhM88bt+4ZhFFEW4HNHAyDTibZcbLe1w=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (fallback) C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\tools\netcoreapp2.0\AltCover.Recorder.dll or directory = "kVhWQo6mdaGknhOJt6/SnGuRQ3AZZ2gbFEhUKpnOCgU=" filename = "cJPuhQMj0aLhhM88bt+4ZhFFEW4HNHAyDTibZcbLe1w=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getSymbolsByFolder filename = "cJPuhQMj0aLhhM88bt+4ZhFFEW4HNHAyDTibZcbLe1w=" extension = ".dll" with directory C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\tools\netcoreapp2.0 or "kVhWQo6mdaGknhOJt6/SnGuRQ3AZZ2gbFEhUKpnOCgU=" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly System.Linq.Async or directory = "(empty)" filename = "KeR4rx7QQ1h5jHSMAeBbc5iDsvdWv43u9X/M7o8w634=" extension = ".Async" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\System.Linq.Async.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage System.Linq.Async.pdb or directory = "(empty)" filename = "t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be System.Linq.Async.pdb or t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\System.Linq.Async.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\System.Linq.Async.dll
                  <=  System.Linq.Async, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly System.Linq.Async or directory = "(empty)" filename = "KeR4rx7QQ1h5jHSMAeBbc5iDsvdWv43u9X/M7o8w634=" extension = ".Async" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\System.Linq.Async.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage System.Linq.Async.pdb or directory = "(empty)" filename = "t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be System.Linq.Async.pdb or t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\System.Linq.Async.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage System.Linq.Async.pdb or directory = "(empty)" filename = "t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be System.Linq.Async.pdb or t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "t5i0oZoVAHzvP2FYhJ5Vd1isrCvB1PvuVuBwSP+Q1Pc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Pipelines.Sockets.Unofficial or directory = "(empty)" filename = "361KwUvh7bd+xXj7Jt8z/Hul/rwts5qCpMANzO6ACQ0=" extension = ".Unofficial" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Pipelines.Sockets.Unofficial.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage Pipelines.Sockets.Unofficial.pdb or directory = "(empty)" filename = "U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Pipelines.Sockets.Unofficial.pdb or U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Pipelines.Sockets.Unofficial.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Pipelines.Sockets.Unofficial.dll
                  <=  Pipelines.Sockets.Unofficial, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Pipelines.Sockets.Unofficial or directory = "(empty)" filename = "361KwUvh7bd+xXj7Jt8z/Hul/rwts5qCpMANzO6ACQ0=" extension = ".Unofficial" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Pipelines.Sockets.Unofficial.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage Pipelines.Sockets.Unofficial.pdb or directory = "(empty)" filename = "U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Pipelines.Sockets.Unofficial.pdb or U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Pipelines.Sockets.Unofficial.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage Pipelines.Sockets.Unofficial.pdb or directory = "(empty)" filename = "U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Pipelines.Sockets.Unofficial.pdb or U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "U9KxtPfdEMkWcMTOfZG+fFVhNPcxpgYrAYFYUK+z1+8=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly NUnit3.TestAdapter or directory = "(empty)" filename = "SRDXvyLkj1B2rpZtmEBmX526DjNDnAIcteZal1ZN5T4=" extension = ".TestAdapter" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\NUnit3.TestAdapter.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage D:\repos\NUnit\nunit3-vs-adapter\src\NUnitTestAdapter\obj\Release\netcoreapp2.1\NUnit3.TestAdapter.pdb or directory = "GdY4PHq+WimHn1NVO1DSiqBF8aZOpQ+EFvxQNfzBwvE=" filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be NUnit3.TestAdapter.pdb or UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (fallback) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\NUnit3.TestAdapter.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getSymbolsByFolder filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".dll" with directory C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved or "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\NUnit3.TestAdapter.dll
                  <=  NUnit3.TestAdapter, Version=3.17.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly NUnit3.TestAdapter or directory = "(empty)" filename = "SRDXvyLkj1B2rpZtmEBmX526DjNDnAIcteZal1ZN5T4=" extension = ".TestAdapter" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\NUnit3.TestAdapter.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage D:\repos\NUnit\nunit3-vs-adapter\src\NUnitTestAdapter\obj\Release\netcoreapp2.1\NUnit3.TestAdapter.pdb or directory = "GdY4PHq+WimHn1NVO1DSiqBF8aZOpQ+EFvxQNfzBwvE=" filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be NUnit3.TestAdapter.pdb or UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (fallback) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\NUnit3.TestAdapter.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getSymbolsByFolder filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".dll" with directory C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved or "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage D:\repos\NUnit\nunit3-vs-adapter\src\NUnitTestAdapter\obj\Release\netcoreapp2.1\NUnit3.TestAdapter.pdb or directory = "GdY4PHq+WimHn1NVO1DSiqBF8aZOpQ+EFvxQNfzBwvE=" filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be NUnit3.TestAdapter.pdb or UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "UcPJXMnv5eWAffr6Vj6VMQpPcIGFYjnmHNMjEAjKryo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly BouncyCastle.Crypto or directory = "(empty)" filename = "sVmaT/rV/K9hiex3ecXQzXd0whpPGHS3yltprIvvGYs=" extension = ".Crypto" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\BouncyCastle.Crypto.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage BouncyCastle.Crypto.pdb or directory = "(empty)" filename = "crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be BouncyCastle.Crypto.pdb or crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\BouncyCastle.Crypto.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\BouncyCastle.Crypto.dll
                  <=  BouncyCastle.Crypto, Version=1.8.1.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly BouncyCastle.Crypto or directory = "(empty)" filename = "sVmaT/rV/K9hiex3ecXQzXd0whpPGHS3yltprIvvGYs=" extension = ".Crypto" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\BouncyCastle.Crypto.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage BouncyCastle.Crypto.pdb or directory = "(empty)" filename = "crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be BouncyCastle.Crypto.pdb or crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\BouncyCastle.Crypto.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage BouncyCastle.Crypto.pdb or directory = "(empty)" filename = "crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be BouncyCastle.Crypto.pdb or crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "crI577C3gdE9eX6GVKOn1RZy7+6I4rqw2ZmqyUcfLoo=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Ben.Demystifier or directory = "(empty)" filename = "Aw11YoblnyKkZMNuH7/2BqeV38cKrwEIvYbyqhk9BfQ=" extension = ".Demystifier" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Ben.Demystifier.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage Ben.Demystifier.pdb or directory = "(empty)" filename = "vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Ben.Demystifier.pdb or vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Ben.Demystifier.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Ben.Demystifier.dll
                  <=  Ben.Demystifier, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Ben.Demystifier or directory = "(empty)" filename = "Aw11YoblnyKkZMNuH7/2BqeV38cKrwEIvYbyqhk9BfQ=" extension = ".Demystifier" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Ben.Demystifier.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage Ben.Demystifier.pdb or directory = "(empty)" filename = "vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Ben.Demystifier.pdb or vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Ben.Demystifier.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage Ben.Demystifier.pdb or directory = "(empty)" filename = "vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Ben.Demystifier.pdb or vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "vVY0+0jIoovznyOGndlP2Ex4FLk1m/B3JO79X9gZUZc=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly StackExchange.Redis or directory = "(empty)" filename = "UxMygeMMabvGhLmchN5p3E9fr9fDtL8tywYAwNItANc=" extension = ".Redis" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\StackExchange.Redis.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage StackExchange.Redis.pdb or directory = "(empty)" filename = "TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be StackExchange.Redis.pdb or TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\StackExchange.Redis.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\StackExchange.Redis.dll
                  <=  StackExchange.Redis, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly StackExchange.Redis or directory = "(empty)" filename = "UxMygeMMabvGhLmchN5p3E9fr9fDtL8tywYAwNItANc=" extension = ".Redis" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\StackExchange.Redis.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage StackExchange.Redis.pdb or directory = "(empty)" filename = "TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be StackExchange.Redis.pdb or TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\StackExchange.Redis.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage StackExchange.Redis.pdb or directory = "(empty)" filename = "TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be StackExchange.Redis.pdb or TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "TpQ+Y6/4hBFuUk0e888g0BJI/yxqGJz5pEF9/exiDqQ=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Anonymized.BusinessLogic or directory = "(empty)" filename = "xzvp2itIrbMvDH4zDN/WkQrDh9cJpO6fCLlUxpPftOw=" extension = ".BusinessLogic" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.BusinessLogic\obj\Debug\net5.0\Anonymized.BusinessLogic.pdb or directory = "AqpXkJfq3ykSNVQzS8JwHYDWl37Jes+y+Zgd/A0Qa4s=" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.BusinessLogic.pdb or hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Anonymized.BusinessLogic.dll
                  <=  Anonymized.BusinessLogic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Anonymized.BusinessLogic or directory = "(empty)" filename = "xzvp2itIrbMvDH4zDN/WkQrDh9cJpO6fCLlUxpPftOw=" extension = ".BusinessLogic" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.BusinessLogic\obj\Debug\net5.0\Anonymized.BusinessLogic.pdb or directory = "AqpXkJfq3ykSNVQzS8JwHYDWl37Jes+y+Zgd/A0Qa4s=" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.BusinessLogic.pdb or hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.BusinessLogic\obj\Debug\net5.0\Anonymized.BusinessLogic.pdb or directory = "AqpXkJfq3ykSNVQzS8JwHYDWl37Jes+y+Zgd/A0Qa4s=" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.BusinessLogic.pdb or hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Anonymized.EventHandler.Jobs or directory = "(empty)" filename = "h1MKbqWtJeXXxG5JKr5KEHLaFcNY8B5x+433os1aeWw=" extension = ".Jobs" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs\obj\Debug\net5.0\Anonymized.EventHandler.Jobs.pdb or directory = "wqtwXpuDccb+PDdJX5mQ5s55liOf6EIf4mYwLxuBaS4=" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.EventHandler.Jobs.pdb or 0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Anonymized.EventHandler.Jobs.dll
                  <=  Anonymized.EventHandler.Jobs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Anonymized.EventHandler.Jobs or directory = "(empty)" filename = "h1MKbqWtJeXXxG5JKr5KEHLaFcNY8B5x+433os1aeWw=" extension = ".Jobs" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs\obj\Debug\net5.0\Anonymized.EventHandler.Jobs.pdb or directory = "wqtwXpuDccb+PDdJX5mQ5s55liOf6EIf4mYwLxuBaS4=" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.EventHandler.Jobs.pdb or 0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs\obj\Debug\net5.0\Anonymized.EventHandler.Jobs.pdb or directory = "wqtwXpuDccb+PDdJX5mQ5s55liOf6EIf4mYwLxuBaS4=" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.EventHandler.Jobs.pdb or 0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Anonymized.BusinessLogic.Tests or directory = "(empty)" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".Tests" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.Tests.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.BusinessLogic.Tests\bin\Debug\net5.0\Anonymized.BusinessLogic.Tests.pdb or directory = "0CjLFWap3c4VVNKJPp4l+bsaeL4siar5pTtXfNZV7tE=" filename = "h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.BusinessLogic.Tests.pdb or h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.Tests.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Anonymized.BusinessLogic.Tests.dll
                  <=  Anonymized.BusinessLogic.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Anonymized.BusinessLogic.Tests or directory = "(empty)" filename = "hdCRmAr4jOaDtXPaKEFWVocsK9HIcruEFcgjZvxMQ8g=" extension = ".Tests" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.Tests.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.BusinessLogic.Tests\bin\Debug\net5.0\Anonymized.BusinessLogic.Tests.pdb or directory = "0CjLFWap3c4VVNKJPp4l+bsaeL4siar5pTtXfNZV7tE=" filename = "h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.BusinessLogic.Tests.pdb or h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.Tests.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.BusinessLogic.Tests\bin\Debug\net5.0\Anonymized.BusinessLogic.Tests.pdb or directory = "0CjLFWap3c4VVNKJPp4l+bsaeL4siar5pTtXfNZV7tE=" filename = "h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.BusinessLogic.Tests.pdb or h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "h2VpQ53NeE+udpSsrnXvihCer5C8LGbYY3asxpGKyjE=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Anonymized.EventHandler.Jobs.Tests or directory = "(empty)" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".Tests" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.Tests.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\obj\Debug\net5.0\Anonymized.EventHandler.Jobs.Tests.pdb or directory = "1XjDYm+2T2FM3wRHDILimXIue5zSjYPOy+R8suBbt5I=" filename = "LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.EventHandler.Jobs.Tests.pdb or LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.Tests.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
      C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Anonymized.EventHandler.Jobs.Tests.dll
                  <=  Anonymized.EventHandler.Jobs.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly Anonymized.EventHandler.Jobs.Tests or directory = "(empty)" filename = "0/d+xCIyEBYPytIskfYqx750TtnFvQDFmKAf2klEDHE=" extension = ".Tests" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.Tests.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\obj\Debug\net5.0\Anonymized.EventHandler.Jobs.Tests.pdb or directory = "1XjDYm+2T2FM3wRHDILimXIue5zSjYPOy+R8suBbt5I=" filename = "LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.EventHandler.Jobs.Tests.pdb or LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (from debug header) C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.Tests.dll or directory = "5z1VuCxpLNbTaCUSzfB3+inetcX65F+RH1Ktp0uJMio=" filename = "LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\obj\Debug\net5.0\Anonymized.EventHandler.Jobs.Tests.pdb or directory = "1XjDYm+2T2FM3wRHDILimXIue5zSjYPOy+R8suBbt5I=" filename = "LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be Anonymized.EventHandler.Jobs.Tests.pdb or LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : directory = "5HM/9EVFDRCcop1ZyHXgcF6UpyYOBedouZMJlz6fUZE=" filename = "LKWj/KBhy9VC0VOmYfPY0CwmrpErc/bQe03RbIGDmg0=" extension = ".dll" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath assembly AltCover.Recorder or directory = "(empty)" filename = "7hYys8S+d4PyhVBjJ2+GFj2DxYTz7yxk5WqG1xl+pjc=" extension = ".Recorder" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbPath path  or directory = "(null)" filename = "(empty)" extension = "" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbFromImage C:\Users\steve\Documents\GitHub\altcover\_Intermediate\AltCover.Recorder\Release+AnyCPU\net46\AltCover.Recorder.pdb or directory = "UEk6MwWb+GIAMm3YP0Rl6TWXOzwC9K+EeyDmAyLRW4w=" filename = "cJPuhQMj0aLhhM88bt+4ZhFFEW4HNHAyDTibZcbLe1w=" extension = ".pdb" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : Emedded symbols would be AltCover.Recorder.pdb or cJPuhQMj0aLhhM88bt+4ZhFFEW4HNHAyDTibZcbLe1w=.pdb [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getPdbWithFallback (fallback)  or directory = "(null)" filename = "(empty)" extension = "" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): warning : getSymbolsByFolder filename = "(empty)" extension = "" with directory  or "(null)" [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): error :  [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): error : ERROR *** Instrumentation phase failed [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): error :  [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): error :  [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): error : Value cannot be null. (Parameter 'path1') [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): error : Details written to C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\AltCover-2020-12-04--12-38-50.log [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.7643.13649\build\netstandard2.0\AltCover.targets(64,5): error : If this problem was detected in the pre-test instrumentation stage of `dotnet test`, then the file may have been moved to C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\AltCover-2020-12-04--12-38-50.log when the task completes. [C:\Users\Anonymized\source\repos\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]

@SteveGilham
Copy link
Owner

Thanks. Now I understand. It's a bug that affects the async --callContext behaviour when used on a machine other than the one AltCover was built on.

Expect a fix soon.

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 4, 2020

Awesome! Looking forward to it 😍

Any chance it'll make it by Sunday?

@SteveGilham
Copy link
Owner

Here's another private build, this time from GitHub Actions CI. This should resolve the issue; if as expected it is good, I can push out another full release pretty much straight away.

altcover.7.2.43-github-pre.nupkg.zip

@SteveGilham SteveGilham added the ready to close Believed addressed, waiting to hear to the contrary label Dec 4, 2020
@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 6, 2020

I'll hopefully get time to try it Sunday! 🙏

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 7, 2020

Trying it now!

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 7, 2020

New error:

  Creating folder C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved
  Saving files to C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved
  Instrumenting files in C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Ben.Demystifier.dll
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\BouncyCastle.Crypto.dll
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\NUnit3.TestAdapter.dll
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Pipelines.Sockets.Unofficial.dll
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.dll
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.BusinessLogic.Tests.dll
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.dll
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\Anonymized.EventHandler.Jobs.Tests.dll
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\StackExchange.Redis.dll
     => C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\System.Linq.Async.dll

  Coverage Report: C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\coverage.xml.tmp.pruner


      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\System.Linq.Async.dll
                  <=  System.Linq.Async, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null
      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Pipelines.Sockets.Unofficial.dll
                  <=  Pipelines.Sockets.Unofficial, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\NUnit3.TestAdapter.dll
                  <=  NUnit3.TestAdapter, Version=3.17.0.0, Culture=neutral, PublicKeyToken=null
      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\BouncyCastle.Crypto.dll
                  <=  BouncyCastle.Crypto, Version=1.8.1.0, Culture=neutral, PublicKeyToken=null
      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Ben.Demystifier.dll
                  <=  Ben.Demystifier, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null
      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\StackExchange.Redis.dll
                  <=  StackExchange.Redis, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null
      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Anonymized.BusinessLogic.dll
                  <=  Anonymized.BusinessLogic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Anonymized.EventHandler.Jobs.dll
                  <=  Anonymized.EventHandler.Jobs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Anonymized.BusinessLogic.Tests.dll
                  <=  Anonymized.BusinessLogic.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
      C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\Anonymized.EventHandler.Jobs.Tests.dll
                  <=  Anonymized.EventHandler.Jobs.Tests, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
C:\Users\Anonymized\.nuget\packages\altcover\7.2.43-github-pre\build\netstandard2.0\AltCover.targets(64,5): error :  [C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.43-github-pre\build\netstandard2.0\AltCover.targets(64,5): error : ERROR *** Instrumentation phase failed [C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.43-github-pre\build\netstandard2.0\AltCover.targets(64,5): error :  [C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.43-github-pre\build\netstandard2.0\AltCover.targets(64,5): error :  [C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.43-github-pre\build\netstandard2.0\AltCover.targets(64,5): error : An item with the same key has already been added. Key: AltCover.Recorder.g/7.2.0.0 [C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.43-github-pre\build\netstandard2.0\AltCover.targets(64,5): error : Details written to C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\__Saved\AltCover-2020-12-07--08-46-48.log [C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]
C:\Users\Anonymized\.nuget\packages\altcover\7.2.43-github-pre\build\netstandard2.0\AltCover.targets(64,5): error : If this problem was detected in the pre-test instrumentation stage of `dotnet test`, then the file may have been moved to C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\bin\Debug\net5.0\AltCover-2020-12-07--08-46-48.log when the task completes. [C:\Anonymized\Anonymized_backend\src\Anonymized.EventHandler.Jobs.Tests\Anonymized.EventHandler.Jobs.Tests.csproj]

@SteveGilham
Copy link
Owner

Now this looks like an artifact of double instrumentation -- project A gets instrumented and the recorder gets added to the JSON dependency manifest, then project B which depends on project A gets built (before the instrumentation gets rolled back), and rolls project A's manifest into its own, and then gets instrumented again, and is failing when the recorder gets added a second time.

That has been a bug waiting to happen (though clearly in a low frequency use case) since I added .net core support nearly 3 years ago.

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 7, 2020

What do I do about it though? Is it an easy fix?

@SteveGilham
Copy link
Owner

I thought this would be an easy repro & fix but I see I already have a unit test for the scenario I thought this was, and a couple of obvious variations on the current tests also ran clean.

Could I trouble you for the full stack trace?

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 7, 2020

Do you mean a larger portion of the log dump, or?

How do I retrieve this full stack trace?

@SteveGilham
Copy link
Owner

The one from the AltCover-<timestamp>.log file. Sorry for being unclear.

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 7, 2020

No worries at all - coming right up!

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 7, 2020

Here it is!

System.ArgumentException: An item with the same key has already been added. Key: AltCover.Recorder.g/7.2.0.0
   at System.Collections.Generic.Dictionary`2.TryInsert(TKey key, TValue value, InsertionBehavior behavior)
   at System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
   at Manatee.Json.JsonObject.Add(String key, JsonValue value)
   at [email protected](KeyValuePair`2 l) in D:\a\altcover\altcover\AltCover.Engine\Instrument.fs:line 442
   at Microsoft.FSharp.Collections.SeqModule.Iterate[T](FSharpFunc`2 action, IEnumerable`1 source) in F:\workspace\_work\1\s\src\fsharp\FSharp.Core\seq.fs:line 497
   at [email protected](JsonObject jsonObject) in D:\a\altcover\altcover\AltCover.Engine\Instrument.fs:line 442
   at AltCover.Instrument.I.injectJSON(String json) in D:\a\altcover\altcover\AltCover.Engine\Instrument.fs:line 473
   at [email protected](String f) in D:\a\altcover\altcover\AltCover.Engine\Instrument.fs:line 748
   at Microsoft.FSharp.Collections.SeqModule.Iterate[T](FSharpFunc`2 action, IEnumerable`1 source) in F:\workspace\_work\1\s\src\fsharp\FSharp.Core\seq.fs:line 497
   at [email protected](String instrument) in D:\a\altcover\altcover\AltCover.Engine\Instrument.fs:line 745
   at Microsoft.FSharp.Collections.SeqModule.Iterate[T](FSharpFunc`2 action, IEnumerable`1 source) in F:\workspace\_work\1\s\src\fsharp\FSharp.Core\seq.fs:line 497
   at AltCover.Instrument.I.finishVisit(InstrumentContext state) in D:\a\altcover\altcover\AltCover.Engine\Instrument.fs:line 742
   at AltCover.Instrument.I.instrumentationVisitorWrapper(FSharpFunc`2 core, InstrumentContext state, Node node) in D:\a\altcover\altcover\AltCover.Engine\Instrument.fs:line 796
   at [email protected](T node) in D:\a\altcover\altcover\AltCover.Engine\Visitor.fs:line 1112
   at Microsoft.FSharp.Primitives.Basics.List.mapToFreshConsTail[a,b](FSharpList`1 cons, FSharpFunc`2 f, FSharpList`1 x) in F:\workspace\_work\1\s\src\fsharp\FSharp.Core\local.fs:line 241
   at Microsoft.FSharp.Primitives.Basics.List.map[T,TResult](FSharpFunc`2 mapping, FSharpList`1 x) in F:\workspace\_work\1\s\src\fsharp\FSharp.Core\local.fs:line 247
   at Microsoft.FSharp.Collections.SeqModule.Fold[T,TState](FSharpFunc`2 folder, TState state, IEnumerable`1 source) in F:\workspace\_work\1\s\src\fsharp\FSharp.Core\seq.fs:line 731
   at AltCover.Visitor.visit(IEnumerable`1 visitors, IEnumerable`1 assemblies) in D:\a\altcover\altcover\AltCover.Engine\Visitor.fs:line 1100
   at [email protected](Unit unitVar0) in D:\a\altcover\altcover\AltCover.Engine\Main.fs:line 498
   at AltCover.CommandLine.I.doPathOperation[a](FSharpFunc`2 f, a defaultValue, Boolean store) in D:\a\altcover\altcover\AltCover.Engine\CommandLine.fs:line 205
ParamName = 
<null>
TargetSite = 
Void ThrowAddingDuplicateWithKeyArgumentException[T](T)
Data = 
seq []
InnerException = 
<null>
HelpLink = 
<null>
Source = 
"System.Private.CoreLib"
HResult = 
-2147024809

@SteveGilham
Copy link
Owner

Speculative fix (private build again)
altcover.7.2.7646.15327.nupkg.zip

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 7, 2020

That worked! Everything seems to be operational.

Great job!

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 7, 2020

Any ideas when we can expect it to release to NuGet?

@SteveGilham
Copy link
Owner

In the next hour or so.

@SteveGilham
Copy link
Owner

Now available v7.2.801

@ffMathy
Copy link
Contributor Author

ffMathy commented Dec 8, 2020

Thank you - that's awesome! <3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

No branches or pull requests

3 participants