-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChemistryClass.csproj
35 lines (35 loc) · 1.34 KB
/
ChemistryClass.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
32
33
34
35
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\references\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>TheChemistryMod</AssemblyName>
<TargetFramework>net45</TargetFramework>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<Target Name="BuildMod" AfterTargets="Build">
<Exec Command=""$(tMLBuildServerPath)" -build $(ProjectDir) -eac $(TargetPath) -define "$(DefineConstants)" -unsafe $(AllowUnsafeBlocks)" />
</Target>
<ItemGroup>
<PackageReference Include="tModLoader.CodeAssist" Version="0.1.*" />
</ItemGroup>
<ItemGroup>
<Folder Include="Prefixes\" />
<Folder Include="Buffs\" />
<Folder Include="Buffs\Debuffs\" />
<Folder Include="ModUtils\" />
<Folder Include="Dusts\" />
<Folder Include="Items\Weaponry\LatePHM\" />
<Folder Include="Projectiles\LatePHMFL\" />
<Folder Include="Items\Consumeables\" />
<Folder Include="Buffs\Normal\" />
<Folder Include="Projectiles\PreHMHS\" />
<Folder Include="Items\Tools\" />
<Folder Include="Items\Ammunition\" />
<Folder Include="Sounds\" />
<Folder Include="Sounds\Item\" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Projectiles\ProjHelper.cs" />
</ItemGroup>
</Project>