This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Script to sync a GitHub repo to Kiln to allw GitHub contributions without using Git (use Hg on your Kiln repos!). | |
.DESCRIPTION | |
Create a branch repo in Kiln specifically for for the GitHub sync and run this PS script periodically (PoSh v3 | |
scheduled jobs make this easy). | |
Merge the GitHub branch repo (using Hg!) into your main repo periodically, then push back to the GitHub branch | |
once done. This will be sync'd back to GitHub when the script next runs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace StructureMapBugRepro | |
{ | |
using System; | |
using StructureMap; | |
using StructureMapBugRepo.NS1; | |
using StructureMapBugRepo.NS2; | |
public class Program | |
{ | |
static void Main(string[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-ProjectReferences | |
{ | |
param( | |
[Parameter(Mandatory)] | |
[string]$rootFolder, | |
[string[]]$excludeProjectsContaining | |
) | |
dir $rootFolder -Filter *.csproj -Recurse | |
NewerOlder