This file contains 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
#!/bin/sh | |
# make-mono64-bundle.sh | |
# https://github.com/ThesaurusSoftware/Dubrovnik/blob/master/Scripts/make-mono64-bundle.sh | |
# | |
# Created by Jonathan Mitchell on 02/10/2015. | |
# | |
# See the main project README for usage. | |
# | |
# This script can be used build the Mono 64 bit framework bundle | |
# used by Dubrovnik. |
This file contains 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
// | |
// TSGridView.h | |
// | |
// Created by Jonathan Mitchell on 06/07/2015. | |
// Copyright (c) 2015 Thesaurus Software Limited. All rights reserved. | |
// | |
#import <Cocoa/Cocoa.h> | |
extern NSString *TSGridColumns; |
This file contains 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
if [ "${CONFIGURATION}" == "Release" ]; then | |
# xcode post build action for build/archive cannot directly return or log error conditions but we can: | |
# 1. put up a dialog | |
# 2. post a notification | |
# 3. say someting | |
# 4. write to the syslog | |
# 5. write to a file and open the file | |
# Execute a project folder script. |
This file contains 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
using System; | |
using System.Threading; | |
using System.Diagnostics; | |
using System.ComponentModel; | |
using System.Collections.Concurrent; | |
namespace Mono.Embedding | |
{ | |
// REF http://codereview.stackexchange.com/questions/31820/basic-single-threaded-implementation-of-synchronizationcontext | |