-
Notifications
You must be signed in to change notification settings - Fork 593
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?
Changes from all commits
e08f883
6245714
16a6cf4
a7d8229
6d61f26
f89ee1e
fe7c925
dd80ee7
b51992a
9066d70
df3758b
bf2a66e
faa546b
2cde9b4
0e034e0
2fb20b3
63e4a2b
d9a49db
df393a7
e7afb02
15e05a7
6e843ea
e8e5a2b
f56e33d
fcd800d
f3b558a
0b451e9
6ee3acf
d1e8841
dbb84f5
0f03039
5f478c5
0ba0b99
7b562d0
9c78a6e
6190c19
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Project> | ||
<!-- These references to third-party libraries are included in all projects except System.Device.Gpio and the build wrapper project --> | ||
<ItemGroup Condition="'$(MSBuildProjectName)' != 'System.Device.Gpio' And '$(MSBuildProjectName)' != 'build'"> | ||
<PackageReference Include="UnitsNet" Version="5.31.0" /> | ||
<PackageReference Include="UnitsNet" Version="5.42.0" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
|
@@ -10,13 +10,17 @@ | |
|
||
<!-- Automatically include these assemblies in all test projects --> | ||
<ItemGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))"> | ||
<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 commentThe 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 commentThe 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. |
||
<PackageReference Include="xunit" Version="2.9.0" /> | ||
<!-- Need to reference the internal package versions directly or we get package conflict errors --> | ||
<PackageReference Include="xunit.core" Version="2.9.0" /> | ||
<PackageReference Include="xunit.assert" Version="2.9.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="xunit.runner.utility" Version="2.6.3" /> | ||
<PackageReference Include="xunit.runner.utility" Version="2.9.0" /> | ||
<PackageReference Include="xunit.analyzers" Version="1.15.0" /> | ||
<PackageReference Include="Shouldly" Version="4.2.1" /> | ||
</ItemGroup> | ||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"RetryCountLimit": 1, | ||
"RetryByAnyError": false | ||
} |
This file was deleted.
This file was deleted.
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.
Have the references to Hummingboard been removed from READMEs?