-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCommon.targets
More file actions
81 lines (73 loc) · 3.46 KB
/
Copy pathCommon.targets
File metadata and controls
81 lines (73 loc) · 3.46 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<Project>
<Import Project="./Unturned.targets"/>
<!-- Packages -->
<ItemGroup>
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="[6.0.0,)">
<Private>false</Private>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="[8.0.0,9.0.0)" NoWarn="NU1903">
<Private>false</Private>
</PackageReference>
<PackageReference Include="DanielWillett.StackCleaner" Version="[1.4.2,)">
<Private>false</Private>
</PackageReference>
<PackageReference Include="Lib.Harmony" Version="2.3.3">
<Private>false</Private>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3">
<Private>false</Private>
</PackageReference>
<PackageReference Include="DanielWillett.SpeedBytes" Version="[1.1.2,)">
<Private>false</Private>
</PackageReference>
<PackageReference Include="DanielWillett.SpeedBytes.Unity" Version="[1.1.1,)">
<Private>false</Private>
</PackageReference>
<PackageReference Include="DanielWillett.ReflectionTools" Version="[4.0.0,)">
<Private>false</Private>
</PackageReference>
<PackageReference Include="DanielWillett.ReflectionTools.Harmony" Version="[4.0.0,)">
<Private>false</Private>
</PackageReference>
</ItemGroup>
<!-- Global Usings -->
<ItemGroup>
<Using Remove="System.Net.Http" />
<Using Remove="System.Text" />
<Using Include="SDG.NetTransport" />
<Using Include="SDG.Unturned" />
<Using Include="Steamworks" />
<Using Include="System.Collections" />
<Using Include="UnityEngine" />
<Using Include="DevkitServer.Util" Condition="'$(AssemblyName)' != 'DevkitServer.Resources' And '$(AssemblyName)' != 'DevkitServer.Launcher'"/>
<Using Include="JetBrains.Annotations" />
<Using Include="DevkitServer.API.Logging" />
<Using Include="UnityEngine.Object">
<Alias>Object</Alias>
</Using>
<Using Include="System.Action">
<Alias>Action</Alias>
</Using>
<Using Include="DevkitServer.API.Logging.Logger" Condition="'$(AssemblyName)' != 'DevkitServer.Resources' And '$(AssemblyName)' != 'DevkitServer.Launcher'">
<Alias>Logger</Alias>
</Using>
</ItemGroup>
<!-- Debug Output -->
<Target Name="DevkitServer Module Debug Output" BeforeTargets="Build" Condition="true">
<Message Text="Building server module... $(PackageId)" Importance="high" Condition="$(DefineConstants.Contains(SERVER))"/>
<Message Text="Building client module... $(PackageId)" Importance="high" Condition="$(DefineConstants.Contains(CLIENT))"/>
<Message Text="Installation Location: "$(SharedPath)"." Importance="high"/>
<Message Text="Library Location: "$(IncludedLibrariesPath)"." Importance="high"/>
<Message Text="Project Location: "$(SolutionDir)"." Importance="high"/>
<Message Text="Defines: $(DefineConstants)." Importance="high"/>
</Target>
<!-- Copy libraries for EXEs. -->
<ItemGroup Condition="'$(OutputType)' != 'Library' Or '$(TestProjectType)' != ''">
<Reference Update="*">
<Private>true</Private>
</Reference>
<PackageReference Update="*">
<Private>true</Private>
</PackageReference>
</ItemGroup>
</Project>