-
Notifications
You must be signed in to change notification settings - Fork 20
/
CollabUtils2.csproj
62 lines (54 loc) · 2.69 KB
/
CollabUtils2.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net452</TargetFrameworks>
<AssemblyName>CollabUtils2</AssemblyName>
<RootNamespace>Celeste.Mod.CollabUtils2</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MonoMod.RuntimeDetour" Version="22.1.4.3" PrivateAssets="all" ExcludeAssets="runtime">
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="YamlDotNet" Version="8.1.2" PrivateAssets="all" ExcludeAssets="runtime">
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="CelesteNet.Client">
<HintPath>lib-stripped\CelesteNet.Client.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="CelesteNet.Shared">
<HintPath>lib-stripped\CelesteNet.Shared.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<Choose>
<When Condition="Exists('..\..\Celeste.exe')">
<ItemGroup>
<Reference Include="Celeste" HintPath="..\..\Celeste.exe" Private="false" />
<Reference Include="MMHOOK_Celeste" HintPath="..\..\MMHOOK_Celeste.dll" Private="false" />
</ItemGroup>
<Choose>
<When Condition="'$(OS)' != 'Windows_NT' Or Exists('..\..\FNA.dll')">
<ItemGroup>
<Reference Include="FNA" HintPath="..\..\FNA.dll" Private="false" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<Reference Include="Microsoft.Xna.Framework" HintPath="$(WINDIR)\Microsoft.NET\assembly\GAC_32\Microsoft.Xna.Framework\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.dll" Private="false" />
<Reference Include="Microsoft.Xna.Framework.Game" HintPath="$(WINDIR)\Microsoft.NET\assembly\GAC_32\Microsoft.Xna.Framework.Game\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Game.dll" Private="false" />
<Reference Include="Microsoft.Xna.Framework.Graphics" HintPath="$(WINDIR)\Microsoft.NET\assembly\GAC_32\Microsoft.Xna.Framework.Graphics\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Graphics.dll" Private="false" />
</ItemGroup>
</Otherwise>
</Choose>
</When>
<Otherwise>
<ItemGroup>
<Reference Include="Celeste" HintPath="lib-stripped\Celeste.exe" Private="false" />
<Reference Include="MMHOOK_Celeste" HintPath="lib-stripped\MMHOOK_Celeste.dll" Private="false" />
<Reference Include="FNA" HintPath="lib-stripped\FNA.dll" Private="false" />
</ItemGroup>
</Otherwise>
</Choose>
</Project>