diff --git a/Microsoft.Toolkit.Mvvm/Microsoft.Toolkit.Mvvm.csproj b/Microsoft.Toolkit.Mvvm/Microsoft.Toolkit.Mvvm.csproj index 7105b6e..25ea121 100644 --- a/Microsoft.Toolkit.Mvvm/Microsoft.Toolkit.Mvvm.csproj +++ b/Microsoft.Toolkit.Mvvm/Microsoft.Toolkit.Mvvm.csproj @@ -19,17 +19,19 @@ <!-- .NET Standard 2.0 doesn't have the Span<T> and IAsyncEnumerable<T> types --> <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> - <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" /> + <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" /> <PackageReference Include="System.Memory" Version="4.5.4" /> </ItemGroup> <!-- .NET Standard 2.1 doesn't have the Unsafe type --> <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' "> - <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.7.1" /> + <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="5.0.0" /> </ItemGroup> <ItemGroup> - <PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" /> + + <!--Needed to support the INotifyDataErrorInfo interface--> + <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" /> </ItemGroup> </Project>