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
// *********************************************************************** | |
// Assembly : RabbitExpress | |
// Author : Rene Windegger | |
// Created : 05-01-2019 | |
// | |
// Last Modified By : Rene Windegger | |
// Last Modified On : 05-01-2019 | |
// *********************************************************************** | |
// <copyright file="IExpressSerializer.cs" company="Rene Windegger"> | |
// Copyright (c) Rene Windegger. All rights reserved. |
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
// *********************************************************************** | |
// Assembly : RabbitExpress.ExampleWorker | |
// Author : Rene Windegger | |
// Created : 04-30-2019 | |
// | |
// Last Modified By : Rene Windegger | |
// Last Modified On : 04-30-2019 | |
// *********************************************************************** | |
// <copyright file="Program.cs" company="Rene Windegger"> | |
// Copyright (c) Rene Windegger. All rights reserved. |
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
// *********************************************************************** | |
// Assembly : RabbitExpress.ExamplePublisher | |
// Author : Rene Windegger | |
// Created : 04-30-2019 | |
// | |
// Last Modified By : Rene Windegger | |
// Last Modified On : 04-30-2019 | |
// *********************************************************************** | |
// <copyright file="Program.cs" company="Rene Windegger"> | |
// Copyright (c) Rene Windegger. All rights reserved. |
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.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 | |
{ |
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.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 | |
{ |
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.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace wtf.windegger.addinframework | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace wtf.windegger.addinframework | |
{ | |
public interface IAddin | |
{ | |
void WriteSomething(); |
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
// <copyright file="AddinLoader.cs" company="Rene Windegger"> | |
// Copyright (c) 2013 Rene Windegger. All rights reserved. | |
// </copyright> | |
// <author>Rene Windegger</author> | |
// <date>23.12.2013</date> | |
// <summary>Implements the addin loader class</summary> | |
namespace wtf.windegger.addinframework | |
{ | |
using System; | |
using System.Collections.Generic; |
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
// <copyright file="Addin.cs" company="Rene Windegger"> | |
// Copyright (c) 2013 Rene Windegger. All rights reserved. | |
// </copyright> | |
// <author>Rene Windegger</author> | |
// <date>23.12.2013</date> | |
// <summary>Implements the addin class</summary> | |
namespace wtf.windegger.addinframework | |
{ | |
using System; | |
using System.Collections.Generic; |
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
// <copyright file="AddinIdentifierAttribute.cs" company="Rene Windegger"> | |
// Copyright (c) 2013 Rene Windegger. All rights reserved. | |
// </copyright> | |
// <author>Rene Windegger</author> | |
// <date>23.12.2013</date> | |
// <summary>Implements the addin identifier attribute class</summary> | |
namespace wtf.windegger.addinframework | |
{ | |
using System; | |
using System.Collections.Generic; |
NewerOlder