Skip to content

Instantly share code, notes, and snippets.

using System.Web.Mvc;
namespace DemoApp.Areas.Demo
{
public class DemoAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
@rccnw-gist
rccnw-gist / MSTEST-FindConflictingReferences.cs
Last active December 29, 2015 06:59 — forked from brianlow/FindConflictingReferences.cs
Using this to try to solve this VS2013 warning: Found conflicts between different versions of the same dependent assembly that could not be resolved.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.Diagnostics;
namespace MyProject
{
Test my rccnw-gist account