You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the conventional way in nuget to provide explicit reference assemblies in a package that should be presented to the compiler instead of those found under lib/. And in particular, the _._ notation doesn't end with .dll, so they won't be provided to the compiler.
So in effect, this stops the GitHubActionsTestLogger.dll from being sent as a reference assembly while still providing a target framework-based build of your dll for copying to the output folder.
Checklist
I have looked through existing issues to make sure that this bug has not been reported before
I have provided a descriptive title for this issue
I have made sure that this bug is reproducible on the latest version of the package
I have provided all the information needed to reproduce this bug as efficiently as possible
I have sponsored this project
The text was updated successfully, but these errors were encountered:
Version
2.4.1
Platform
.NET 8
Steps to reproduce
Install the package in any project
Details
The NuGet package built by this repo is laid out with the logger dll in 4 directories:
By shipping these under lib, you're doing a few things:
I'm guessing only the first of these are intended.
The third one is semi-useful because you want to support either runtime.
Proposed: Add the following four files to your package:
This is the conventional way in nuget to provide explicit reference assemblies in a package that should be presented to the compiler instead of those found under
lib/
. And in particular, the_._
notation doesn't end with.dll
, so they won't be provided to the compiler.So in effect, this stops the GitHubActionsTestLogger.dll from being sent as a reference assembly while still providing a target framework-based build of your dll for copying to the output folder.
Checklist
The text was updated successfully, but these errors were encountered: