Tag Archives: c#

TFS build not restoring/finding some nuget packages?

Apparently, when you’re using some shared project with Nuget packages, it is possible that TFS build will throw some errors at you saying that he can’t find all/some of the packages. (When inspecting the build logs, you will see the warning MSB3245 “Could not resolve this reference”. When adding packages to a project, the csproj …

Read more

Converting a LOB W8.1 app to W10 – Part 4

And we’re back with more changes between W10 and W8.1 apps. ‘Random’ error I’m getting a series of ‘random’ crashes on one of our screens. One of the errors I’m seeing is some rubbish about an error 0xC0000602 in Windows.UI.Xaml. I’ve read that this error could be occuring from IValueConverters that returned an incorrect value. …

Read more

W10: Getting a grouped variable sized GridView to do what its supposed to do.

Got a GridView with a VariableSizedWrapGrid and groups? Want it working on W10/UWP? Yea, that doesn’t quite work out of the box now does it… Took me a bit, but was able to get it to do its job. Getting a GridView up and running with some groups in an uniform grid is definitely possible …

Read more

Converting a LOB W8.1 app to W10 – Part 3

Time for more work on getting our LOB app converted to an UWP. First thing we needed to do in order to get everything to work again was adding the various build configurations again. When migrating the projects, these were lost. (I had to add them anyways to the new PCL’s, which were created from …

Read more

Converting a LOB W8.1 app to W10 – Day 2

Day 2 of the Big Port. I’m continuing with a bunch of renames and namespace adjustments due to updates to some nuget packages. Prism has the most changes with some renames. A quick overview of what I had to change for Prism (Updated from Prism 1.1.1 to 6.1.0) Namespaces: – “Microsoft.Practices.Prism” is now “Prism” – …

Read more

Converting a LOB W8.1 app to W10 – Day 1

Alrighty, a great task has befallen upon me. It’s time to upgrade our W8.1 enterprise app to run nativly on W10! We’ll see how many steps we’ll need for this as we go along the migration. But here’s step 1! Setup 1. I’ve just upgraded my work pc to W10 with a fresh install of …

Read more