-
Notifications
You must be signed in to change notification settings - Fork 0
/
Thinf.csproj
48 lines (48 loc) · 2.13 KB
/
Thinf.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
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\references\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>Thinf</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>
<Compile Remove="Items\Accessories\Transformer.png\**" />
<Compile Remove="Items\CorruptedPoliticalPower.png\**" />
<Compile Remove="Items\Weapons\BeanBombBlaster.png\**" />
<Compile Remove="Items\Weapons\DarkstringBow.png\**" />
<Compile Remove="Items\Weapons\PlixieglassSword.png\**" />
<Compile Remove="Items\Weapons\Spacesaber.png\**" />
<EmbeddedResource Remove="Items\Accessories\Transformer.png\**" />
<EmbeddedResource Remove="Items\CorruptedPoliticalPower.png\**" />
<EmbeddedResource Remove="Items\Weapons\BeanBombBlaster.png\**" />
<EmbeddedResource Remove="Items\Weapons\DarkstringBow.png\**" />
<EmbeddedResource Remove="Items\Weapons\PlixieglassSword.png\**" />
<EmbeddedResource Remove="Items\Weapons\Spacesaber.png\**" />
<None Remove="Items\Accessories\Transformer.png\**" />
<None Remove="Items\CorruptedPoliticalPower.png\**" />
<None Remove="Items\Weapons\BeanBombBlaster.png\**" />
<None Remove="Items\Weapons\DarkstringBow.png\**" />
<None Remove="Items\Weapons\PlixieglassSword.png\**" />
<None Remove="Items\Weapons\Spacesaber.png\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DryIoc.dll" Version="4.6.0" />
<PackageReference Include="tModLoader.CodeAssist" Version="0.1.*" />
</ItemGroup>
<ItemGroup>
<Reference Include="StructureHelper">
<HintPath>lib\StructureHelper.FNA.dll</HintPath>
</Reference>
<Reference Include="SubworldLibrary">
<HintPath>lib\SubworldLibrary.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="lib\" />
</ItemGroup>
</Project>