토네이도 연결 및 송출 확인

This commit is contained in:
2026-04-14 14:36:03 +09:00
parent 28e2806678
commit e29267c530
10 changed files with 703 additions and 35 deletions

View File

@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Platforms>x64</Platforms>
<PlatformTarget>x64</PlatformTarget>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<KarismaSdkDir Condition="'$(KarismaSdkDir)'==''">C:\Karisma SDK</KarismaSdkDir>
</PropertyGroup>
<ItemGroup>
<Reference Include="Interop.KAsyncEngineLib">
<HintPath>$(KarismaSdkDir)\Bin\C#\Interop.KAsyncEngineLib.dll</HintPath>
<Private>true</Private>
</Reference>
</ItemGroup>
</Project>