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
// Get data | |
let wb = WorldBankData.GetDataContext() | |
[<Literal>] | |
let Path = __SOURCE_DIRECTORY__ + "\example.json" | |
type Venues = JsonProvider<Path> | |
let rest = Venues.GetSample() | |
// Parse venue data |
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
// https://groups.google.com/forum/#!topic/dddcqrs/qGYC6qZEqOI | |
public interface IMessage | |
{ | |
Guid Id { get; set; } | |
/// <summary> | |
/// Copy of the CorrelationId of the message to whom this message responds to | |
/// </summary> | |
Guid CorrelationId { get; set; } |
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
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"options": { | |
// Setup via console the first time: | |
// mkdir build-ninja | |
// cmake -G Ninja ../pwt | |
"cwd": "${workspaceRoot}/../build-ninja" | |