I opened the solution for the CrowdPlannerTool sample in VS 2017. As expected, VS tells me a NuGet package is missing. Step 4 of the instructions says to install the package using
Install-Package System.Windows.Controls.DataVisualization.Toolkit
When I try this, I get:
PM> Install-Package System.Windows.Controls.DataVisualization.Toolkit
Install-Package : Some NuGet packages are missing from the solution. The packages need to be restored in order to build the dependency graph. Restore the packages before
performing any operations.
At line:1 char:1
+ Install-Package System.Windows.Controls.DataVisualization.Toolkit
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId : NuGetMissingPackages,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand
Can anyone help me get this sample up and running? Thanks!