MemoryStream Limits: Handling Large Files in Azure with Blob Storage Streaming

We recently deployed a new feature to a website running in Azure App Services to combine multiple files uploaded by users into a single large ZIP file. After deploying to production, we started seeing “Out of Memory” exceptions for one of our users. Our first instinct was that our smaller front-end web servers didn’t have…

Read more…

Provisioning Your First Azure Service Fabric Cluster

In preparation for an upcoming user group presentation about the benefits of the Service Fabric programming model, I needed to stand up a new cluster in Azure and deploy our demo application to it. Microsoft provides lots of great articles to help with this task, but I had to collect a lot of information to…

Read more…

Customizing Your VSTS Task Board

by 

|

in

The VSTS task board is a great way for developers and project managers to see development tasks in the current iteration. But we like to also see which tasks have been submitted and are awaiting a pull request. Here is how we customize our task board to add an additional step for work items. Creating…

Read more…

Protecting Master Branches with Policies in Visual Studio Online

At Don’t Panic Labs, we love tools that help us ensure we are writing quality code and following our development patterns and practices. We are using Visual Studio Online for many of our current projects and we have found some very useful features for protecting the master branches. Requiring pull requests for a branch On…

Read more…

TeamCity Builds with the Visual Studio 2012 Test Runner

Since we use private GitHub repositories for our code, we needed something to easily manage our builds. When we had a new project recently start up, we decided it was time to take the plunge with TeamCity. However, we found a problem with this: we use fakes for unit testing, something that requires the Visual…

Read more…