3
Answers

UWP not working in Xamarin Crossplatform project.

Desmond Miles

Desmond Miles

8y
259
1
Everytime I try and deploy UWP Project in my Cross-platform Xamarin.Forms project; a window pops out saying "The project must be deployed before it can be started" and when I take a look at UWP's files I can see un-resolved imports even though UWP SDK is properly referenced in project.json.
 
Android part of Xamarin.Forms is working just fine though.
 
I tried updating Xamarin but there wasn't any "other" option in
tools -> xamarin section where normally you would find one if you wanted to change release level or update Xamarin.
 
 
Answers (3)
0
Mahesh Bodepudi

Mahesh Bodepudi

NA 90 14.3k 9y
As of now in Controller's Action method I am using the code below to set no of records per page
 
return View(viewModel.ToList().ToPagedList(page ?? 1, 50)); 
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 9y
How you are getting data from Controller's action: AJAX or direct call to action.
 
Provide some code snippet.