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 SingleTarget
{
public class Class1
{
[DllExport("MyExport", CallingConvention.Cdecl)]
public static void InternalName()
{
}
}
}

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DllExports" Version="*" />
</ItemGroup>
</Project>