Skip to content

Commit

Permalink
Upgraded to the 7.0 Preview2 Toolkit.Mvvm Package
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnemaf committed Aug 12, 2020
1 parent ec952f4 commit 81def8c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
3 changes: 0 additions & 3 deletions MvvmDemo/MvvmDemoUWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,6 @@
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.2.10</Version>
</PackageReference>
<PackageReference Include="Microsoft.Toolkit.Mvvm">
<Version>7.0.0-build.149</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MvvmDemoLibrary\MvvmDemoLibrary.csproj">
Expand Down
2 changes: 1 addition & 1 deletion MvvmDemoLibrary/MvvmDemoLibrary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.0.0-build.149" />
<PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.0.0-preview2" />
</ItemGroup>

</Project>
1 change: 0 additions & 1 deletion MvvmDemoLibrary/ViewModels/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public class MainViewModel {

public static MainViewModel Current => Ioc.Default.GetService<MainViewModel>();


private readonly ILogger _logger;

public ObservableCollection<Employee> Employees { get; } = new ObservableCollection<Employee>();
Expand Down
13 changes: 9 additions & 4 deletions MvvmDemoTest/MvvmDemoTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageReference Include="coverlet.collector" Version="1.2.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 81def8c

Please sign in to comment.