mirror of
https://github.com/SoDOff-Project/sodoff-mmo.git
synced 2025-10-11 08:18:49 -07:00
18 lines
454 B
XML
18 lines
454 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<AssemblyName>SamplePlugin</AssemblyName>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Lib.Harmony" Version="2.3.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="sodoffmmo">
|
|
<HintPath>../../src/bin/Debug/net6.0/sodoffmmo.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|