-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCorePatcher.csproj
More file actions
22 lines (22 loc) · 928 Bytes
/
CorePatcher.csproj
File metadata and controls
22 lines (22 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>CorePatcher</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<PlatformTarget>AnyCPU</PlatformTarget>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Krafs.Publicizer" Version="2.2.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="tModLoader.CodeAssist" Version="0.1.*" />
</ItemGroup>
<ItemGroup>
<Publicize Include="tModLoader:Terraria.ModLoader.UI.Interface" />
<Publicize Include="tModLoader:Terraria.ModLoader.UI.Interface.infoMessage" />
<Publicize Include="tModLoader:Terraria.ModLoader.UI.UIInfoMessage.Show" />
</ItemGroup>
</Project>