-
Notifications
You must be signed in to change notification settings - Fork 2
/
BuilderEssentials.csproj
72 lines (72 loc) · 3.27 KB
/
BuilderEssentials.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>BuilderEssentials</AssemblyName>
<TargetFramework>net6.0</TargetFramework>
<PlatformTarget>AnyCPU</PlatformTarget>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="tModLoader.CodeAssist" Version="0.1.*" />
</ItemGroup>
<ItemGroup>
<Compile Update="Content\Items\PaintBrush.cs">
<DependentUpon>BasePaintBrush.cs</DependentUpon>
</Compile>
<Compile Update="Content\Items\SpectrePaintBrush.cs">
<DependentUpon>BasePaintBrush.cs</DependentUpon>
</Compile>
<Compile Update="Content\Items\AutoHammer.cs">
<DependentUpon>BaseItemToggleableUI.cs</DependentUpon>
</Compile>
<Compile Update="Content\Items\MultiWand.cs">
<DependentUpon>BaseItemToggleableUI.cs</DependentUpon>
</Compile>
<Compile Update="Content\Items\BasePaintBrush.cs">
<DependentUpon>BaseItemToggleableUI.cs</DependentUpon>
</Compile>
<Compile Update="Content\Tiles\HMCraftingStation.cs">
<DependentUpon>BaseCraftingStation.cs</DependentUpon>
</Compile>
<Compile Update="Content\Tiles\MultiCraftingStation.cs">
<DependentUpon>BaseCraftingStation.cs</DependentUpon>
</Compile>
<Compile Update="Content\Tiles\PreHMCraftingStation.cs">
<DependentUpon>BaseCraftingStation.cs</DependentUpon>
</Compile>
<Compile Update="Content\Tiles\SpecCraftingStation.cs">
<DependentUpon>BaseCraftingStation.cs</DependentUpon>
</Compile>
<Compile Update="Content\Tiles\TFCraftingStation.cs">
<DependentUpon>BaseCraftingStation.cs</DependentUpon>
</Compile>
<Compile Update="Content\UI\Shapes\FillWandPanel.cs">
<DependentUpon>ShapesUIState.cs</DependentUpon>
</Compile>
<Compile Update="Content\UI\ToggleableItems\PaintBrushPanel.cs">
<DependentUpon>ToggleableItemsUIState.cs</DependentUpon>
</Compile>
<Compile Update="Content\UI\ToggleableItems\MultiWandPanel.cs">
<DependentUpon>ToggleableItemsUIState.cs</DependentUpon>
</Compile>
<Compile Update="Content\UI\ToggleableItems\AutoHammerPanel.cs">
<DependentUpon>ToggleableItemsUIState.cs</DependentUpon>
</Compile>
<Compile Update="Content\UI\Shapes\MirrorWandPanel.cs">
<DependentUpon>ShapesUIState.cs</DependentUpon>
</Compile>
<Compile Update="Content\UI\ToggleableItems\WrenchUpgradesPanel.cs">
<DependentUpon>ToggleableItemsUIState.cs</DependentUpon>
</Compile>
<Compile Update="Content\UI\Shapes\ImprovedRulerPanel.cs">
<DependentUpon>ShapesUIState.cs</DependentUpon>
</Compile>
<Compile Update="Content\UI\Shapes\ShapesDrawerPanel.cs">
<DependentUpon>ShapesUIState.cs</DependentUpon>
</Compile>
<Compile Update="Content\UI\ToggleableItems\ShapesDrawerMenuPanel.cs">
<DependentUpon>ToggleableItemsUIState.cs</DependentUpon>
</Compile>
</ItemGroup>
</Project>