.NET Zone is brought to you in partnership with:
  • submit to reddit
Prashant Khandelwal05/02/13
2365 views
0 replies

Using the SkyDrive REST API

In this post, Prashant documents his self-made wrapper for the SkyDrive REST API, that can be reused in a variety of .NET applications.

Greg Duncan05/01/13
1395 views
0 replies

Microsoft Download of the Day: "Cancelling a Project (Without Cancelling Your Career)"

Discusses best practices for recognizing when a project should be cancelled and the benefits of doing so.

Alexander Beletsky04/30/13
2512 views
0 replies

Building Single Pages Applications

From technical perspective SPA means the web application, that being loaded as one HTML page and redraws it's UI without round trip to server. That sounds not so exiting, but we can see that SPA is much more than that.

Juri Strumpflohner04/29/13
8518 views
1 replies

Git Explained: For Beginners

How is Git different from other VCS (Version Control Systems)? Probably the most obvious difference is that Git is distributed (unlike SVN or TFS for instance). This means, you’ll have a local repository which lives inside a special folder named .git and you’ll normally (but not necessarily) have a remote, central repository where different collaborators may contribute their code.

Michael Crump04/28/13
1390 views
0 replies

Setting up a Command (MVVM) in Windows Phone 8 Video Tutorial

Should I use code-behind or MVVM in my application? What are the pros/cons of each and can you show me a simple example of how a Command works?

Greg Duncan04/27/13
1101 views
0 replies

You've got BIN's in My Source VCS. No, You've Got Source in My BIN VCS.

Software development produces both source code and binary artifacts, and both kinds of artifact need to be handled differently.

Toni Petrina04/26/13
1629 views
0 replies

Using Different WMAppManifest Files for Release and Debug Builds

While working on an update for already released application, you might find yourselves having both the marketplace version and developer version. Since they use (almost) the same manifest, you will have a hard time guessing which one is the marketplace version and which one is the one in development.

Den Delimarsky04/25/13
1523 views
0 replies

Authentication with Windows Azure Mobile Services on Windows Phone

Den Delimarsky describes the implementation of a basic authentication mechanism for Windows Phone applications based on Azure Mobile Services.

Robert Maclean04/25/13
1219 views
0 replies

TechEd Africa 2013: Windows Store Apps - Tips & Tricks

Robert MacLean summarizes his presentation list at TechEd Africa 2013. This year he covered the development of Windows Store apps.

Mike Hadlow04/24/13
1764 views
0 replies

Stop Your Console App The Nice Way

Mike showcases a way to properly terminate a console application, so that the user is able to exit with the help of the stock Windows cancel command.

Greg Duncan04/23/13
1575 views
0 replies

Example Using the Task Parallel Dataflow Library

With .NET 4.5, the Task Parallel Library team went another step ahead and built a little known library called Parallel Dataflow Library. This article explains why as a .NET developer, you must know about this powerful library.

Greg Duncan04/21/13
1407 views
0 replies

I Trace, You Trace, We all IntelliTrace

There’s a lot of good content on IntelliTrace and we’ve grabbed a few links here to have in one place. If you’ve got some time and want to get to know more about IntelliTrace in Visual Studio these are great places to go.

Greg Duncan04/21/13
1849 views
0 replies

WPF is To PowerShell as The PowerShell ISE is To Extensibility

We frequently get questions asking if the PowerShell ISE supports a feature that it doesn’t. For example, variable watch windows, function browsers, or “find all matches in the current document”.

Erik Ejlskov Jensen04/20/13
1480 views
0 replies

SQL Server Compact Code Snippet of the Week #11 : Detect if SQL Server Compact is Available

It can sometimes by useful to find out if SQL Server Compact is available on a system, for example in installers and if your application supports several database products.

Den Delimarsky04/19/13
1156 views
0 replies

Creating a Custom ToastPrompt Control for Windows Phone

If you ever decide that the stock MessageBox is not enough, you can always experiment with creating your own control. Here is how.

Sasha Goldshtein04/19/13
1636 views
0 replies

Windows Azure Mobile Services "Rent a Home" Sample, Part 3: Authentication

Last time around, we explored the user interface and the server script for our apartment listings application. Today we'll see how to add authentication to the mix, and limit certain operations only to authenticated users.

Greg Duncan04/18/13
1587 views
0 replies

"The Last Visibility Converter" (You'll Ever Need)

The Boolean to Visibility Converter is as close you’re going to get to bread and button in the XAML frameworks. You need it in almost every app and almost every framework has one, even the Windows 8 project templates come with one.

Douglas Rathbone04/17/13
2240 views
0 replies

Testing the Untestable with Microsoft Fakes and Visual Studio 2012 Update 2

When maintaining applications built in ways that make unit testing them high friction, difficult or down right impossible, we often turn to integration tests or no tests at all. Poking around the outside of your logic to see that the outcomes our code produces is often fiddly, brittle and in most cases so time consuming it just doesn’t happen.

G. Andrew Duthie04/16/13
1340 views
0 replies

Building Back-end Data and Services for Windows 8 Apps: Adding Authentication

There are a couple of features in Windows Azure Mobile Services (hereafter, WAMS or Mobile Services) that make it well-suited for building back-ends for mobile apps (including Windows Store apps), and provide significant advantages in getting your app working quickly, and providing additional needed services.

Greg Duncan04/15/13
1305 views
0 replies

DevOps & IntelliTrace - ALM Ranger Guidance

The ALM team shipped a new exciting project, focused on IntelliTrace, under the Visual Studio Test Tooling Guidance umbrella. This release supplements the Test Tooling Guide with the DevOps end-end scenario, giving you access to ALM end to end labs and guidance that include bug resolution using IntelliTrace.

Sasha Goldshtein04/14/13
1551 views
0 replies

Windows Azure Mobile Services "Rent a Home" Sample, Part 2: UI and Data

In the previous installment, we saw the general UI of the application. We'll now turn to see how that UI was implemented on all four platforms. If you're looking for a quick start or documentation on Mobile Services, you should take a look at the Windows Azure Mobile Developer Center.

Den Delimarsky04/12/13
1949 views
0 replies

JavaScript Gotcha: innerText

A quick tip on why innerText might be tricky when applied in a cross-browser context and a demonstration of this fact.

Jonas Gauffin04/12/13
2206 views
0 replies

What Are Exceptions?

If you have an XML file which is shipped with your product, for instance an product list, you expect it to exist. If it doesn’t, there is not much you can do about it. Hence something exceptional has happened and it needs to be handled.

Jeremy Likness04/11/13
1312 views
0 replies

Design-time Data for Windows Store Apps with C#

The great thing about design-time data is that the developer can create it programmatically when needed or the designer can generate some through Blend.

Greg Duncan04/10/13
1931 views
0 replies

Visual Studio 2012 Update 2 is RTW and It's a "Wow" Update

Visual Studio Updates are a mechanism used to provide ongoing value throughout the year to the Visual Studio and Team Foundation Server customers. These updates will provide features to support the latest software trends in the market, and also offer an easy way to deploy bug fixes.