컷별 데이터 연계

This commit is contained in:
2026-04-14 17:14:12 +09:00
parent 54c778c75d
commit e0c5f4dbfe
19 changed files with 7826 additions and 33 deletions

View File

@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net48</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<KarismaSdkDir Condition="'$(KarismaSdkDir)'==''">C:\Karisma SDK</KarismaSdkDir>
</PropertyGroup>
<ItemGroup>
<Reference Include="Interop.KAsyncEngineLib">
<HintPath>$(KarismaSdkDir)\Bin\C#\Interop.KAsyncEngineLib.dll</HintPath>
<EmbedInteropTypes>false</EmbedInteropTypes>
<Private>true</Private>
</Reference>
</ItemGroup>
</Project>