Microsoft has released next version of .NET Framework (do not get confused with .NET Core) . Though the .NET Framework 4.7 was released as part of Windows 10 Creators Update a month ago. You can now install the .NET Framework 4.7 on other versions of Windows Download the: .NET Framework 4.7 – Web installer | … Continue reading
Category: VS2012
Back to Basics : Singleton Design Pattern using System.Lazy type
This article takes you to a simpler/alternative approach in making a Singleton Design Pattern implementation using System.Lazy class rather that using our traditional approach. Singleton Design Pattern implementation without lazy initialization: This code is thread safe enabled [code language=”csharp” padlinenumbers=”true”] /// <summary> /// Singleton class /// </summary> public class AppConfig { private AppConfig() { }… Continue reading
NuGet Package – Unity.WebAPI
Today I came across this interesting Nuget Package for creating ASP.NET Web API project with Microsoft Unity Dependency Injection container. It is pretty simple to configure and install on your existing Web API project or new ones. Inorder to use it, use the respective NUGET package from below links: ASP.NET Web API v1.0 – Unity.WebAPI… Continue reading
Windows Phone Screen Sharing/Mirroring to PC
Being mobile developer and strong follower of Mobile related technologies, always admire to demonstrate my work to my friends and colleagues. All this time I was fancy about iOS Mirroring provided through apps Reflector and Air Server. With help of these tools we used to mirror our iPad/iPhone to be mirrored to a Windows/Mac and… Continue reading
Visual Studio 2012 Update 4–Released
Microsoft has today released the final RTW(Release-To-Web) version of Visual Studio 2012 Update 4 . This update is the latest in a cumulative series of feature additions and bug fixes for Visual Studio 2012. Download: Visual Studio 2012 Update 4 ( Web Install | Offline ISO ) Visual Studio Team Foundation Server 2012 with Update… Continue reading
WCF RIA Services V1.0 SP2–available
Latest update for WCF RIA Services v 1.0 includes support for Windows 8.1 and VS2010, 2012, 2013. Version: 4.1.61829.0 | Date Published: 11/5/2013 Little about WCF RIA Services “ WCF RIA Services simplifies the traditional n-tier application pattern by bringing together the ASP.NET and Silverlight platforms. RIA Services provides a pattern to write application logic… Continue reading
Kinect SDK for Windows v 1.8 Released
Microsoft has released latest version of Kinect SDK for Windows and Kinect Developer Toolkit for Windows. The Kinect for Windows Software Development Kit (SDK) enables developers to create applications that support gesture and voice recognition, using Kinect sensor technology on computers running Windows 7, Windows 8, Windows 8.1, and Windows Embedded Standard 7. News features… Continue reading
Disable Client Side validation on a button click – ASP.NET MVC
ASP.NET MVC we use client side validation using jQuery.validate plugin, which will be based on Model – Data Annotation validation attributes. In some cases we might want to disable such validation on a button click wherever it is not needed. For example: The below code block will register validation block for Title property in the… Continue reading
Visual Studio 2012.4 RC 3 Available
Microsoft has released the Visual Studio 2012.4 RC3 Update for Visual studio 2012. This update includes lots of bug fixes and improvements. Here are some informative links for you: Download – Visual Studio 2012.4 RC3 Update Visual Studio 2012.4 RC3 Update – KB Article
WP8Dev– How to identify the sensors supported on your Windows Phone
This post will give you an overview on how to identify the sensors supported on your Windows Phone. As a developer when you are developing for Windows Phone – and your application would need to interact with certain sensors in windows phone to achieve a certain functionality, you would need to verify whether the sensors… Continue reading