Skip to content

Instantly share code, notes, and snippets.

View jahmai-ca's full-sized avatar

jahmai-ca

  • criticalarc
  • Sydney, Australia
View GitHub Profile
# This script can update packages.config/project.son and <ProjectReference />
param (
[Parameter(Mandatory=$true)][String]$Solution
)
$ErrorActionPreference = 'Stop'
$solutionPath = (Resolve-Path $Solution -ErrorAction SilentlyContinue)
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Project
{
public class DomainEqualityComparer : IEqualityComparer
{