Joe4evr / Discord.Addons

Useful extensions for Discord.Net
MIT License
19 stars 5 forks source link

SimplePermissions unable to update. #7

Closed lyssieth closed 7 years ago

lyssieth commented 7 years ago

Trying to update SimplePermissions from v0.7.15-a to v0.8.19-rc

Error message: image

Joe4evr commented 7 years ago

This is because the Net Standard dependency went up from 1.3 to 1.6 (which apparently doesn't have a full framework equivalent if 4.6.2 doesn't fit) because there's no way to get the loaded assembly names for the new debug command on lower versions (so bad).

If you port your code to a .NET Core project and target NETCoreApp1.0 it will work.

lyssieth commented 7 years ago

Got it to work, thanks.