Skip to content

Instantly share code, notes, and snippets.

View laurentkempe's full-sized avatar
🚀
❤✨

Laurent Kempé laurentkempe

🚀
❤✨
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>D3.xml Example</title>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.v2.js"></script>
<style type="text/css">
.chart div {
font: 10px sans-serif;
background-color: steelblue;
text-align: right;
module Fake.NDepend
open Fake
open System
open System.IO
open System.Text
let getWorkingDir workingDir =
Seq.find isNotNullOrEmpty [workingDir; environVar("teamcity.build.workingDir"); "."]
|> Path.GetFullPath
@laurentkempe
laurentkempe / Bootstrapper.cs
Last active September 10, 2015 21:48 — forked from codeprogression/Bootstrapper.cs
StructureMapBootstrapper for WPF Prism Applications
using System;
using System.Windows;
using Microsoft.Practices.Prism.Modularity;
namespace CodeProgression.Common.Prism
{
public class Bootstrapper : StructureMapBootstrapper
{
protected override void ConfigureContainer()
{