interoptopus_csharp 0.16.4

The C# backend for Interoptopus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project Sdk="Microsoft.NET.Sdk">
    <PropertyGroup>
        <TargetFramework>net10.0</TargetFramework>
        <OutputType>Exe</OutputType>
        <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
        <Nullable>enable</Nullable>
        <!-- Conditional aot flag so dynamic code execution is allowed for debug builds but disabled when publishing the .exe -->
        <PublishAot Condition="'$(Configuration)' == 'Release'">true</PublishAot>
    </PropertyGroup>
    <ItemGroup>
        <ProjectReference Include="..\Bindings\Bindings.csproj"/>
    </ItemGroup>
    <ItemGroup>
        <PackageReference Include="xunit.v3.aot" Version="4.0.0-pre.128"/>
        <PackageReference Include="Newtonsoft.Json" Version="13.0.4"/>
    </ItemGroup>
</Project>