ASP.NET 5 comes with the default runtime environment called KRE. KRE is K runtime environment which contains compilation, SDK and native CLR host. K runtime bootstraps the environment and runs on different operating systems.
KVM is K version manager for installing different versions of KRE.Different commands related to KVM- single command line that downloads and […]
This post outlines the new features that are added to the C# new version 6.0.
Enhancement to Auto Properties: currently auto properties are needed to have setters. This puts disadvantage to immutable data types. Now C# 6 allows only getters on auto properties.C# 6 also allows initializers to auto properties as shown in the following […]
Visual Studio has been a most productivity tool IDE for developers and introduced many new features in latest version Visual Studio 2015. This post outlines the features introduced in VS 2015.VS 2015 bringing the seem less experience for all the new devices existing like dense screens (touch capability and high-resolution screens).
Touch gesture for Visual Studio […]
This post shows improvements that made in Visual Studio 2015 to debugging.
When you set a break point inside VS 2015 editor then you will notice there is toolbar pops up as shown in the following picture
Using the toolbar either you can open the settings or enable or disable the break-point. You can […]
The main goal of Visual Studio 2015 development is to give wonderful developer experience for visual studio users. VS 2015 provides command to tools to support mixed environment. For example, if you have 10 team members and 8 of those using visual studio and the other two are using different tool set on mac. […]
When you working on project if you need to find or access the file in the project, open visual studio 2013 and inside the IDE go to the one of the tabs in code window as shown in the following picture
Right click on the code window to see the options, there will find the […]
You build the web API and decided to sell number of API calls like selling the data behind it, another example is you partners may want to integrate your product into their environment.Microsoft making easy way using Azure API management to discover, use and manage easy way to access resources. Azure Web API has got […]
Visual Studio 2013 automatically uses the boot strap as default template. How to customize the template generation. This applies for MVC developers and Web form developers. Boot strap is open source and it is just html, java script and css.
Bootstrap is the most popular HTML, CSS and JS Framework for developing responsive, mobile […]
Visual Studio 14 CTP 3 and .NET Framework vNext was released on August 18th. You can get it from Microsoft Download center or you can use VM in AZURE. Complete list of features can be read here. .NET Framework vNext is currently only available on VS 2014 CTP3. It is an in place update on […]
For XML clause in Select Query allows you to return the query results in XML format. You can specify Auto, RAW, EXPLICIT and PATH in For XML clause. This post shows an example on Auto Mode. Auto Mode generates the nested XML as a result based on the column name order that you have specified […]