-
Notifications
You must be signed in to change notification settings - Fork 20
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
The build artifacts for the PR #69, seems to not have made it into the nuget package.
The published nuget package contains the wrong IL code for CasbinAuthorizeAttribute constructors.
e.g:
Build artifact (from CI):
_values = new StringRequestValues(value1, "", "", "", "", "", "", "", "", "", "", "", "", "");
// 14 parameters (value1 + 13 empty strings)
Official NuGet package:
_values = new StringRequestValues(value1, "", "", "", "", "", "", "", "", "", "", "");
// 12 parameters (value1 + 11 empty strings)
I suspect it has to do with these warnings in the log:
I'm not sure if I can contribute a PR to fix this, as it would involve triggering the release workflow?
Reactions are currently unavailable
Metadata
Metadata
Labels
bugSomething isn't workingSomething isn't working