-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathRuntimeExample.Client.csproj
30 lines (28 loc) · 1.06 KB
/
RuntimeExample.Client.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ModFramework" Version="1.1.13" />
</ItemGroup>
<ItemGroup>
<Reference Include="OTAPI.Runtime">
<HintPath>..\..\OTAPI.Client.Launcher\bin\Debug\$(TargetFramework)\client\OTAPI.Runtime.dll</HintPath>
</Reference>
<Reference Include="OTAPI">
<HintPath>..\..\OTAPI.Client.Launcher\bin\Debug\$(TargetFramework)\client\OTAPI.exe</HintPath>
</Reference>
<Reference Include="FNA">
<HintPath>..\..\OTAPI.Patcher\bin\Debug\$(TargetFramework)\FNA.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ImGui.NET" Version="1.91.0.1" />
</ItemGroup>
</Project>