Skip to content

Instantly share code, notes, and snippets.

@WolfyUK
WolfyUK / Heartbeart.Contracts\TestCommand.cs
Last active April 24, 2018 08:25
NServiceBus Heartbeat
using System;
using NServiceBus;
namespace Heartbeat.Contracts
{
public class TestCommand : ICommand
{
public DateTime Now { get; set; }
}
}
@WolfyUK
WolfyUK / App.config
Last active April 5, 2018 06:59
App.config XML transform from NuGet Package (https://stackoverflow.com/q/49654426/504477)
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1" />
</startup>
</configuration>
@WolfyUK
WolfyUK / Flip.css
Created October 4, 2013 10:29 — forked from smockle/Flip.css
/* entire container, keeps perspective */
body .flip-container {
width: 100%;
}
body .flip-container .flipper {
position: relative;
}
/* hide back of pane during swap */
.ui-dialog-background {
opacity: 0.5;
display: block !important;
}
.ui-dialog-background.pop.in {
opacity: 1;
}
.ui-dialog {