Showing archive results for 2014

Apr 24, 2014
Post comments count0
Post likes count0

.NET Native Performance

.NET Team
.NET Team

This post was authored by Xy Ziemba, the Program Manager for .NET Native performance, and Andrew Pardoe, Program Manager on the .NET runtime team. In our previous blog post introducing .NET Native, we talked about how .NET Native gives you the performance of C++ with the productivity of C#. Putting that in quantitative terms, Windows Store apps co...

.NET
Apr 24, 2014
Post comments count0
Post likes count0

Building NuGet 3.x

Jeff Handley
Jeff Handley

Evolution of NuGet At MonkeySpace 2013 last July, we revealed some of our thinking for the Evolution of NuGet. These were the ideas we had for what would become NuGet 3.x and they included the following areas: Package Discovery Package Trust / Incompatibility API Package Installation / Build Making Progress The f...

NuGetRoadmap
Apr 21, 2014
Post comments count0
Post likes count0

Sharing code across platforms

Immo Landwerth
Immo Landwerth

At Build we announced two great ways to re-use your code: the new Universal Windows apps, and the improved portable class libraries. They both help you reuse code across platforms. In this post, I’ll describe both options and how you can choose between them. Overview Why two options? The short answer is that shared projects are about shari...

.NET
Apr 11, 2014
Post comments count0
Post likes count0

A new search experience on the Gallery

Andrew Stanton-Nurse
Andrew Stanton-Nurse

For a while now, we've been working on some major improvements to search. Last week we deployed these improvements to production on http://www.nuget.org. In this post, I'll describe how the new service works. However, before we discuss the new service, let's step back a bit and discuss the history of Search on NuGet.org Search via SQL Our first s...

NuGetNuGet.org
Apr 10, 2014
Post comments count0
Post likes count0

Intellisense for JSON Schema in the JSON Editor

AnhPhan
AnhPhan

In the previous post, we introduced our new JSON editor in the CTP 2 release of Visual Studio 2013 Update2. In the RC version of Visual Studio 2013 Update 2, we added intellisense support for JSON Schema v3 and v4. This will make working with complex JSON structures based on a schema much easier.   Specify the schema within a JSON file using...

ASP.NET
Apr 10, 2014
Post comments count0
Post likes count0

Debugging support for .NET Native Preview apps

Immo Landwerth
Immo Landwerth

Our friends in Visual Studio have written a post about the debugging support for the .NET Native Preview. Go check it out!

.NET Framework
Apr 9, 2014
Post comments count0
Post likes count0

How your feedback is shaping .NET

Immo Landwerth
Immo Landwerth

Eight months ago we asked you to provide feedbackon the features you want us to ship. And you didn’t disappoint! Since then, we’ve seen hundreds of Tweets, blog posts and user voice votes. It’s great to be part of such a thriving community. We are fully committed to improving the .NET ecosystem by being more open. To quote Habib from his Build t...

.NET
Apr 8, 2014
Post comments count1
Post likes count0

EF Code First Migrations Deployment to an Azure Cloud Service

Tom Dykstra - MSFT
Tom Dykstra - MSFT

To deploy a Code First database to an Azure Web Site, you can use the Execute Code First Migrations check box in the Publish Web wizard: When you select that check box, Visual Studio configures the destination web site so that Entity Framework automatically deploys the database or updates it by running the MigrateDatabaseToLatestVersion initial...

ASP.NET
Apr 7, 2014
Post comments count0
Post likes count0

The JIT finally proposed. JIT and SIMD are getting married.

Immo Landwerth
Immo Landwerth

Processor speed no longer follows Moore’s law. So in order to optimize the performance of your applications, it’s increasingly important to embrace parallelization. Or, as Herb Sutter phrased it, the free lunch is over. You may think that task-based programming or offloading work to threads is already the answer. While multi-threading ...

.NET