Skip to content

Download

Dávid Németi edited this page Sep 5, 2013 · 6 revisions

Sarcasm has two versions:

  • Sarcasm.dll: a Class Library for .NET Framework 4.5
  • Sarcasm.PCL.dll: a Portable Class Library (PCL) for .NET Framework 4.5, Silverlight 5, Windows Phone 8, .NET for Windows Store apps, Mono for Android, MonoTouch (profile 158)

The recommended version is the PCL version even for .NET 4.5, since the WPF and Forms decoration connectors work only with the PCL version.

To use the PCL version with Xamarin.Android you should create a file called "MonoAndroid.xml" in the "C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETPortable\v4.0\Profile\Profile158\SupportedFrameworks" directory with the following content:

<?xml version="1.0" encoding="UTF-8"?> 
<Framework
    MinimumVersion="1.6"
    MaximumVersion="*"
    Profile="*"
    Identifier="MonoAndroid"
    DisplayName="Mono for Android"
/>

To use the PCL version with Xamarin.iOS you should create a file called "MonoTouch.xml" in the "C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETPortable\v4.0\Profile\Profile158\SupportedFrameworks" directory with the following content:

<?xml version="1.0" encoding="UTF-8"?> 
<Framework
    MinimumVersion="4.0"
    MaximumVersion="*"
    Profile="*"
    Identifier="MonoTouch"
    DisplayName="MonoTouch"
/>

You can download the latest version of Sarcasm SDK, Irony SDK and the Decoration Connectors from the Downloads directory.

If you are interested in a demo application that has been created to demonstrate what Irony and Sarcasm are together capable of, continue with Mystique.

Clone this wiki locally