-
Notifications
You must be signed in to change notification settings - Fork 586
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
Use Arcade 8.0, use .NET 8.0, remove old features #2355
base: main
Are you sure you want to change the base?
Conversation
b3af990
to
7b23955
Compare
bcb2946
to
dc8ce53
Compare
<PackageReference Include="Moq" Version="4.16.1" /> | ||
<PackageReference Include="xunit" Version="2.6.3" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.5"> | ||
<PackageReference Include="Moq" Version="4.20.70" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we updating these dependencies? We should be particularly careful with this one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are development dependencies only, so I see no reason why we shouldn't keep up to date. The issue with Moq has been resolved.
@@ -405,11 +405,11 @@ private static GpioDriver GetBestDriverForBoardOnWindows() | |||
|
|||
if (baseBoardProduct == HummingBoardProduct || baseBoardProduct.StartsWith($"{HummingBoardProduct} ")) | |||
{ | |||
return new HummingBoardDriver(); | |||
throw new PlatformNotSupportedException(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consider removing entire if statement
Fixes #2353 and #2354
Microsoft Reviewers: Open in CodeFlow