Skip to content

Commit

Permalink
Fix dependencies (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
josesimoes authored Nov 25, 2024
1 parent 83a4301 commit a872f37
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
6 changes: 4 additions & 2 deletions README-BEFORE-UPDATE-REFS.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Notes on updating the project references:
Notes on updating the project references:

IMPORTANT VERSION CONSTRAINTS:
- System.Threading.Tasks.Extensions must not be updated beyond version 4.5.4
- Can't reference any library requiring System.Threading.Tasks.Extensions must not be updated beyond version 4.5.4
Reason: The VS2019 extension will fail due to a transitive dependency conflict between
Compilers.Services.Unsafe and System.Collections.Immutable.
- Can't update Polly beyond version 7.2.4 because of dependency conflicts with System.Threading.Tasks.Extensions.

2 changes: 1 addition & 1 deletion USB Test App WPF/Serial Test App WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<Version>2.0.7</Version>
</PackageReference>
<PackageReference Include="CommunityToolkit.Mvvm">
<Version>8.3.2</Version>
<Version>8.2.2</Version>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection">
<Version>6.0.2</Version>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>library</OutputType>
<TargetFrameworks>net6.0;net472</TargetFrameworks>
Expand Down Expand Up @@ -77,13 +77,10 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Polly">
<Version>8.5.0</Version>
</PackageReference>
<PackageReference Include="Polly" Version="7.2.4" />
<PackageReference Include="System.IO.Ports">
<Version>8.0.0</Version>
</PackageReference>
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>
<Import Project="..\nanoFramework.Tools.DebugLibrary.Shared\nanoFramework.Tools.DebugLibrary.Net.projitems" Label="Shared" />
</Project>

0 comments on commit a872f37

Please sign in to comment.