blob: c19cd3d5fd6c799a08221a60def8abd2dba5d142 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<AssemblyName>JopaBridge</AssemblyName>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Reference Include="TShockAPI"><HintPath>../ts/ServerPlugins/TShockAPI.dll</HintPath><Private>false</Private></Reference>
<Reference Include="TerrariaServer"><HintPath>../ts/bin/TerrariaServer.dll</HintPath><Private>false</Private></Reference>
<Reference Include="OTAPI"><HintPath>../ts/bin/OTAPI.dll</HintPath><Private>false</Private></Reference>
<Reference Include="ModFramework"><HintPath>../ts/bin/ModFramework.dll</HintPath><Private>false</Private></Reference>
</ItemGroup>
</Project>
|