mkemper

Stories submitted by mkemper

Project to File Reference Switcher for Visual Studio(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 8 months, 2 days ago

Switching from project to file references in visual studio has always been a pain. Once you add a project to the solution you have to go find all the locations the assembly is referenced by file path and remove and update to a project reference. On top of playing hide and seek with references, the actual act of changing references is a slow and painful experience. So I decided to experiment and write my first visual studio extension, "Reference Switcher" read more...

1 comment |category: |Views: 13

tags: another

Unit Testing – MsBuild Series - Marks asp.net / mvc blog:(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 1 year, 7 months ago

This post is going to walk through the steps of adding unit testing to our build script. This post is assuming that you already have a MsBuild script setup that you can run from the command line. Otherwise you might want to look at my previous post on setting up a build file for Visual Studio: Create a Build File for a Visual Studio Solution - MsBuild Series1) Change the output path for Test projectsThe first thing to do is to change the output path for the test project (or projects). We do this so that... read more...

add a comment |category: |Views: 115

tags: another

Creating a NuPack package using a Build File - Automating your build P(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 1 year, 7 months ago

This post is going to walk through the steps of creating a NuPack package as part of an automated build file. Previously we have created an automated build file to clean, version, compile, zip-binaries and zip-source code. If you’re now familiar with creating build files then you may want to catch up by reading these: Create a Build File for a Visual Studio Solution - MsBuild SeriesMercurial Revision No to Version your AssemblyInfo - MsBuild SeriesZipping Build Outputs using a Build File - MsBuld Se... read more...

add a comment |category: |Views: 131

tags: another

Marks asp.net / mvc blog: Zipping Build Outputs using a Build File - A(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 1 year, 7 months ago

We are continuing ths msbuild series, this post will focus on zipping the outputs of the build. To recap so far we have setup a batch file that can build and version our project. The output of this build is placed inside a folder called "build" at the top of projects directory structure. We will zip up the outputs of the build so they can be easily distributed. To do this, the Zip build task that is part of the “MsBuld.Community.Tasks” library will be used. If you are not familiar with this library a... read more...

add a comment |category: |Views: 61

tags: another

Mercurial Revision No to Version your AssemblyInfo - MsBuild Series(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 1 year, 7 months ago

This post is going to focus on getting our version number automatically updated during the build process. We are going to use the AssemblyInfo task from the “MSBuild.Community.Tasks” library and the HgVersion task from the “MSBuild.Mercurial” library. The HgVersion task will get the revision number from our Mercurial source control repository so we can include it in our assemblyInfo file. The AssemblyI... read more...

add a comment |category: |Views: 172

tags: another

Create a Build File for a Visual Studio Solution - MsBuild Series(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 1 year, 7 months ago

A build file automates the process of building, testing, analyzing, packaging, & deploying your project. Build files can be used to give you a single click solution to perform mundane tasks in a consistent way. read more...

add a comment |category: |Views: 278

tags: another

Jobping Url Shortener – Version 0.6(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 1 year, 7 months ago

New version of Jobping Url Shortener. read more...

add a comment |category: |Views: 71

tags: another

StickyBeak Version 0.3 Released(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 1 year, 7 months ago

StickyBeak is a logging utility for asp.net websites which can log every request to your site. It provides similar features as IIS log files but provides additional logging information (which just isn’t possible with IIS logs) and easy viewing of logs via a admin page. You can also use the StickyBeak log file parser in your own code. read more...

add a comment |category: |Views: 109

tags: another

Introduction to StickyBeak(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 1 year, 11 months ago

StickyBeak records all the details of each request made to your web site. Very useful for bug investigations and recover of lost data. read more...

add a comment |category: |Views: 393

tags: another

Set Default Outgoing Repository with hg (Mercurial)(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 2 years ago

When creating a hg repository locally, at some point later, I often need to set the default outgoing repository to push out my changes. read more...

add a comment |category: |Views: 8

tags: another

Quickly Trim all your model's string properties – Speed results(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 2 years ago

With my Quickly Trim all your model's string properties post causing quite a stir (2 comments), I have decided to post a follow up and actually test the speed. read more...

add a comment |category: |Views: 25

tags: another

Jobping Open Source URL Shortener. Goes to Version 0.5(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 2 years ago

Bare bones url shortener, now with style. read more...

add a comment |category: |Views: 18

tags: another

Quickly Trim all your model's string properties(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 2 years ago

Short code snippet to save time when Trimming your string properties. read more...

add a comment |category: |Views: 18

tags: another

Announcing: Jobping URL Shortener. Open source MVC.NET 2 C#(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 2 years ago

Open source MVC.NET 2 C# Url Shortener read more...

add a comment |category: |Views: 343

tags: another

ASP.NET Force the Browser to Really CACHE Content (xsation.blogspot.com)

submitted by mkempermkemper(518) 2 years, 1 month ago

Getting the browser to really cache a file (not request that file for the duration specified) is something that always takes some time to get right. read more...

add a comment |category: |Views: 7

tags: another

Mvc.Net preview 3 validation - server and client side(xsation.blogspot.com)

submitted by mkempermkemper(518) 3 years, 11 months ago

Mvc validation sample, server and client side rules defined in the model. read more...

add a comment |category: |Views: 50

tags: another