Skip to content

Instantly share code, notes, and snippets.

@rfennell
rfennell / RemoveXAMLBuildController
Last active December 29, 2016 21:46
Tool to remove a XAML build controller from a VSTS instance
using Microsoft.TeamFoundation.Build.Client;
using Microsoft.TeamFoundation.Client;
using System;
using System.Linq;
// Needs the Nuget package Microsoft.TeamFoundationServer.ExtendedClient
namespace RemoveXAMLBuildController
{
class Program
{
@rfennell
rfennell / RMTransform.cs
Last active December 20, 2016 16:41
Transform tool for transferring TFS 2015.3 Release Templates to VSTS
using Newtonsoft.Json.Linq;
using System;
using System.IO;
using System.Linq;
namespace RMTransform
{
class Program
{
static void Main(string[] args)
@rfennell
rfennell / ReleaseNotesWithFilter.ps1
Created August 23, 2016 11:01
How to add filters to release note generation
function Get-Mode
{
Param(
$line
)
$returnvalue = "" | Select-Object -Property mode, skipLogic
$mode = [Mode]::BODY