Skip to content

Commit a872f37

Browse files
authored
Fix dependencies (#380)
1 parent 83a4301 commit a872f37

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

README-BEFORE-UPDATE-REFS.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
Notes on updating the project references:
1+
Notes on updating the project references:
22

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

USB Test App WPF/Serial Test App WPF.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<Version>2.0.7</Version>
106106
</PackageReference>
107107
<PackageReference Include="CommunityToolkit.Mvvm">
108-
<Version>8.3.2</Version>
108+
<Version>8.2.2</Version>
109109
</PackageReference>
110110
<PackageReference Include="Microsoft.Extensions.DependencyInjection">
111111
<Version>6.0.2</Version>

nanoFramework.Tools.DebugLibrary.Net/nanoFramework.Tools.DebugLibrary.Net.csproj

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>library</OutputType>
44
<TargetFrameworks>net6.0;net472</TargetFrameworks>
@@ -77,13 +77,10 @@
7777
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
7878
<PrivateAssets>all</PrivateAssets>
7979
</PackageReference>
80-
<PackageReference Include="Polly">
81-
<Version>8.5.0</Version>
82-
</PackageReference>
80+
<PackageReference Include="Polly" Version="7.2.4" />
8381
<PackageReference Include="System.IO.Ports">
8482
<Version>8.0.0</Version>
8583
</PackageReference>
86-
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
8784
</ItemGroup>
8885
<Import Project="..\nanoFramework.Tools.DebugLibrary.Shared\nanoFramework.Tools.DebugLibrary.Net.projitems" Label="Shared" />
8986
</Project>

0 commit comments

Comments
 (0)