terminal/src/cascadia/TerminalApp/ICardExtension.idl
Mike Griese 01d5434afa This did not work either
I tried just making a dll for JUST the card extension interface, that the TerminalApp could reference and so would the cardextension.exe. That would get rid of the need for MUX? Right?

  This runs into all sorts of weird mdmerge errors that I don't recall how I fixed so FUCK IT I'm abandonning this project
2021-10-14 11:50:59 -05:00

12 lines
194 B
Plaintext

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
namespace Microsoft.CardExtension
{
interface ICardExtension
{
String GetJson();
};
}