-
Notifications
You must be signed in to change notification settings - Fork 24
/
Directory.Build.props
executable file
·42 lines (37 loc) · 1.53 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Condition=" !Exists('Directory.Build.props.user') " Project="Directory.Build.props.default" />
<Import Condition=" Exists('Directory.Build.props.user') " Project="Directory.Build.props.user" />
<PropertyGroup>
<Authors>Skyrunner</Authors>
<Product>sky-oni-mods</Product>
<Copyright>MIT</Copyright>
</PropertyGroup>
<ItemDefinitionGroup>
<Reference Private="false" />
<ProjectReference Private="false" />
</ItemDefinitionGroup>
<ItemGroup Condition=" '$(GenerateYAML)' == 'true' ">
<PackageReference Include="Cairath.ONIMetadataFileGenerator" Version="1.0.0">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ILRepack.Lib.MSBuild.Task" Version="2.0.34.2" />
<Reference Include="0Harmony" />
<Reference Include="Assembly-CSharp" />
<Reference Include="Assembly-CSharp-firstpass" />
<Reference Include="UnityEngine.CoreModule" />
</ItemGroup>
<ItemGroup Condition=" '$(UsesPLib)' == 'true' ">
<PackageReference Include="PLib" Version="4.17.1" />
<Reference Include="Newtonsoft.Json" />
<Reference Include="Unity.TextMeshPro" />
<Reference Include="UnityEngine.TextRenderingModule" />
<Reference Include="UnityEngine.UI" />
<Reference Include="UnityEngine.UIModule" />
</ItemGroup>
<ItemGroup Condition=" '$(UsesSkyLib)' != 'false' ">
<ProjectReference Include="..\SkyLib\^SkyLib.csproj" Private="true" />
</ItemGroup>
</Project>