Initial commit

This commit is contained in:
lordmilko
2023-07-22 22:26:44 +10:00
commit 01f2f14907
31 changed files with 1772 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Runtime.InteropServices;
using DllExports;
namespace MultiTarget
{
public class Class1
{
[DllExport("MyExport")]
public static void InternalName()
{
}
}
}