-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTerramon.csproj
31 lines (29 loc) · 1.09 KB
/
Terramon.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
31
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>Terramon</AssemblyName>
<LangVersion>latest</LangVersion>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<Reference Include="EasyPacketsLib">
<HintPath>lib\EasyPacketsLib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.Xna.Framework" />
<Using Include="Microsoft.Xna.Framework.Graphics" />
<Using Include="System" />
<Using Include="System.Collections.Generic" />
<Using Include="System.IO" />
<Using Include="System.Linq" />
<Using Include="System.Net.Http" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
<Using Include="Terramon.Core" />
<Using Include="Terraria" />
<Using Include="Terraria.ID" />
<Using Include="Terraria.ModLoader" />
<Using Include="Terramon.Helpers.VanillaExtensions" Static="True" />
</ItemGroup>
</Project>