-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathMagicStorage.csproj
More file actions
50 lines (47 loc) · 2.55 KB
/
MagicStorage.csproj
File metadata and controls
50 lines (47 loc) · 2.55 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
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\tModLoader.targets" />
<PropertyGroup>
<AssemblyName>MagicStorage</AssemblyName>
<LangVersion>latest</LangVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>$(DefineConstants);NETPLAY</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'" />
<ItemGroup>
<PackageReference Include="Krafs.Publicizer" Version="2.2.1" PrivateAssets="all" />
<Publicize Include="tModLoader" />
<DoNotPublicize Include="tModLoader:Terraria.Main.OnResolutionChanged" />
<DoNotPublicize Include="tModLoader:Terraria.Main.OnTickForThirdPartySoftwareOnly" />
<DoNotPublicize Include="tModLoader:Terraria.ModLoader.ModType`2.CloneNewInstances" />
<DoNotPublicize Include="tModLoader:Terraria.ModLoader.ModType.InitTemplateInstance" />
<DoNotPublicize Include="tModLoader:Terraria.ModLoader.ModType.Register" />
<DoNotPublicize Include="tModLoader:Terraria.ModLoader.ModType.ValidateType" />
<DoNotPublicize Include="tModLoader:Terraria.UI.UIElement.DrawChildren" />
<DoNotPublicize Include="tModLoader:Terraria.UI.UIElement.DrawSelf" />
<DoNotPublicize Include="tModLoader:Terraria.UI.UIElement.OnLeftClick" />
<DoNotPublicize Include="tModLoader:Terraria.UI.UIElement.OnMouseOut" />
<DoNotPublicize Include="tModLoader:Terraria.UI.UIElement.OnMouseOver" />
<DoNotPublicize Include="tModLoader:Terraria.UI.UIElement.OnRightClick" />
<DoNotPublicize Include="tModLoader:Terraria.UI.UIElement.OnRightMouseDown" />
<DoNotPublicize Include="tModLoader:Terraria.UI.UIElement.OnScrollWheel" />
<DoNotPublicize Include="tModLoader:Terraria.UI.UIElement.OnUpdate" />
<DoNotPublicize Include="tModLoader:Terraria.WorldBuilding.GenPass" />
<Publicize Include="ReLogic" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Common\Systems\scramble" />
<EmbeddedResource Include="Common\Systems\unscramble" />
</ItemGroup>
<PropertyGroup>
<SerousCommonLibPath Condition="Exists('..\references\SerousCommonLib.dll')">..\references\SerousCommonLib.dll</SerousCommonLibPath>
<SerousCommonLibPath Condition="!Exists('..\references\SerousCommonLib.dll') and Exists('..\references\1.4.4\SerousCommonLib.dll')">..\references\1.4.4\SerousCommonLib.dll</SerousCommonLibPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="SerousCommonLib">
<HintPath>$(SerousCommonLibPath)</HintPath>
</Reference>
</ItemGroup>
</Project>