-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathModReloader.csproj
More file actions
42 lines (34 loc) · 1.25 KB
/
ModReloader.csproj
File metadata and controls
42 lines (34 loc) · 1.25 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<!-- Import tModLoader mod properties -->
<Import Project="..\tModLoader.targets" />
<!-- General -->
<PropertyGroup>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'" />
<ItemGroup>
<AdditionalFiles Remove="Common\Systems\**" />
<Compile Remove="Common\Systems\**" />
<EmbeddedResource Remove="Common\Systems\**" />
<None Remove="Common\Systems\**" />
</ItemGroup>
<ItemGroup>
<!-- dnlib for publicizer ?-->
<Reference Include="dnlib">
<HintPath>lib\dnlib.dll</HintPath>
</Reference>
<Reference Include="DragonLens">
<HintPath>lib\DragonLens.dll</HintPath>
</Reference>
<Reference Include="CheatSheet">
<HintPath>lib\CheatSheet.dll</HintPath>
</Reference>
</ItemGroup>
<!-- References -->
<ItemGroup>
<PackageReference Include="Krafs.Publicizer" PrivateAssets="true" Version="2.2.1" />
<Publicize Include="tModLoader" IncludeVirtualMembers="false" IncludeCompilerGeneratedMembers="false" />
<Publicize Include="DragonLens" IncludeVirtualMembers="false" IncludeCompilerGeneratedMembers="false" />
</ItemGroup>
</Project>