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()
{
}
}
}

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DllExports" Version="*" />
</ItemGroup>
</Project>