Skip to content

Instantly share code, notes, and snippets.

@rwindegger
Created October 1, 2016 10:46
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/e540d7598e991cd78960c107801bb719 to your computer and use it in GitHub Desktop.
Save rwindegger/e540d7598e991cd78960c107801bb719 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.SecondAddin")]
namespace wtf.windegger.addinframework
{
public class SecondAddin : IAddin
{
#region IAddin Members
public void WriteSomething()
{
Console.WriteLine("SecondAddin loaded");
}
#endregion
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment