-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYourTale.csproj
26 lines (26 loc) · 915 Bytes
/
YourTale.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>YourTale</AssemblyName>
<TargetFramework>net6.0</TargetFramework>
<PlatformTarget>AnyCPU</PlatformTarget>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\Sprites\ExampleSoul.png" />
<None Remove="Assets\Sprites\Shroomite_Digging_Claw.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="tModLoader.CodeAssist" Version="0.1.*" />
</ItemGroup>
<ItemGroup>
<Folder Include="Assets\Sounds\Items\Magic\" />
<Folder Include="Items\Banners\" />
<Folder Include="Items\Dyes\" />
<Folder Include="Items\Misc\" />
<Folder Include="Items\Placeables\Furniture\" />
<Folder Include="Prefixes\Accessories\" />
<Folder Include="Tiles\Bars\" />
</ItemGroup>
</Project>