Havret commented on PR #92:
URL: https://github.com/apache/activemq-nms-amqp/pull/92#issuecomment-3042227893
You can easily verify this with a quick test:
**`csproj`:**
```xml
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Apache.NMS.AMQP" Version="2.3.0" />
</ItemGroup>
</Project>
```
**`Program.cs`:**
```csharp
using System;
namespace ConsoleApp2;
class Program
{
static void Main(string[] args)
{
Console.WriteLine(typeof(System.Threading.Tasks.Dataflow.DataflowBlock).Assembly.Location);
}
}
```
Running this prints the path to the shared framework copy of
`System.Threading.Tasks.Dataflow.dll`, e.g.:
```
/usr/local/share/dotnet/shared/Microsoft.NETCore.App/8.0.0/System.Threading.Tasks.Dataflow.dll
```
This demonstrates that the type is being resolved from the .NET 8 shared
framework, not from a local NuGet package.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact