Skip to content

Instantly share code, notes, and snippets.

@rwindegger
Created October 1, 2016 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rwindegger/f1a6956ce494c955c8f2124ca9d764f8 to your computer and use it in GitHub Desktop.
Save rwindegger/f1a6956ce494c955c8f2124ca9d764f8 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
[assembly: wtf.windegger.addinframework.AddinIdentifier("wtf.windegger.addinframework.FirstAddin")]
namespace wtf.windegger.addinframework
{
public class FirstAddin : IAddin
{
#region IAddin Members
public void WriteSomething()
{
Console.WriteLine("FirstAddin Loaded.");
}
#endregion
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment