Closed shweaver-MSFT closed 6 years ago
In the Modernize lab, Adaptive Cards section:
Step 3 of Interacting with your card has the user update the MainView.xaml.cs then F5, but the build fails.
This is because step 2 adds a reference to viewModel.UpdateNotes(notes) method, which doesn't exist.
viewModel.UpdateNotes(notes)
To fix, either remove the call to UpdateNotes or add the method to the ViewModel so that the project will build correctly.
UpdateNotes
fixed: https://github.com/MicrosoftDocs/labs-pr/commit/62018a0d1858c060c6800d4f545cc4e383416263
awaiting merge into master/live
In the Modernize lab, Adaptive Cards section:
Step 3 of Interacting with your card has the user update the MainView.xaml.cs then F5, but the build fails.
This is because step 2 adds a reference to
viewModel.UpdateNotes(notes)
method, which doesn't exist.To fix, either remove the call to
UpdateNotes
or add the method to the ViewModel so that the project will build correctly.