-
Usually, when implementing AAD authentication in application, according to OAuth protocol, you will have to provide so called Callback-URI. This is the URL of the endpoint capable of receiving redirected request from authority. Because the specification as originally written for web applications...
-
When working with Desktop Converter, you might get following error: C:\Program Files\WindowsApps\Microsoft.DesktopAppConverter_2.0.2.0_x64__8wekyb3d8bbwe\DesktopAppConverter.ps1 : The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and...
-
Sometimes on Windows 10 start menu might be disabled. One of solutions is to switch of the option “Use Start full screen” option. Unfortunately, it is not possible to enter these settings usual way. If you want to change personalization settings while disabled Start-Menu on Windows 10, try following...
-
In a time of transition form .NET framework to .NET core, you might run into issues, which you never ha before. This is the price for open source. For example, look at following error: error APPX1706: The .winmd file 'Windows.Foundation.UniversalApiContract.winmd' contains type 'Windows.Networking...
-
Science we started with .NET Core and UAP (Universal Application Platform) we complained very often about unexpected errors, which we simply couldn’t understand. One of my favorites is this one: Microsoft.NETCore.Portable.Compatibility 1.0.0 provides a compile-time reference assembly for mscorlib on...
-
It is great time Windows 10 is released and there are huge amount of hype everywhere on the internet. I am using Windows 10 from the beginning through the Insider program, and all I can say the Windows 10 is the greatest and the best OS ever made. There are plenty of blog posts and articles about the...
-
When working with NUGET in big projects (just a bit bigger than default hello-world) you might run into following issue: Could not load file or assembly ‘…’ The prominent of this error example is : Could not load file or assembly 'Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken...
-
If you want to deploy Windows Store Apps in enterprises, Windows 8 provides a concept called “Side Loading”, which is described in this article, at least. Basically, when preparing side loading, you will have to build the package, sign it and deploy it. Please note, there are several ways do side-load...
-
Following table shows in which platform can be used some newest and some kind of architecturally most important features. You should be aware if this when designing universal applications for Microsoft multiplatform. Feature .NET Framework Windows Store Silverlight Windows Phone Core √ √ √ √ LINQ...
-
On the last //build/ few days ago, Microsoft has announced (and demonstrated) many improvements across all technology stack. Please take a look on SDK 2.3 release notes for a list of official information. If you need a more detailed recap of all important features this is the URL. You will...
-
In the previous post i described how to send messages to Service Bus queues and topic by using Java Script. In this post I will describe how to receive messages from queue and topic subscription. To illustrate this, take a look on following example. Assuming that ’queue’ is a valid queue path like ‘myorg...
-
When working with “async” I figured out, that during refactoring process in development of components statistically “async” can often and implicitly happen. That means, that small changes in method signatures can cause changing of “async” behavior. Mostly developers should and aware of...
-
When you see the title of this article, you will probably think that idea of the service which runs on device like surface sound a bit strange or even crazy. But it is not strange, it is just crazy. If you think about service as a peace of code running on some server and supposed to be consumed by some...
-
At Monday 9 th of December Microsoft Bosnia and Herzegovina is organizing TechDay 2013. This is one day conference which offers more than 10 sessions about the latest Microsoft technologies from Windows Server 2012, System Center to Developing for Windows Azure, SQL Server Office 365 etc. The conference...
-
.NET x86 JIT-er, was originally optimized to produce code quickly so that the program starts up fast. However at that point of time x64 architecture was mostly used for server, because it was just expensive. Because of that .NET 64-bit JIT-er was originally designed to produce efficient code throughout...