-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfiniteBackups.csproj
67 lines (67 loc) · 3.18 KB
/
InfiniteBackups.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
63
64
65
66
67
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<RootNamespace>Celeste.Mod.InfiniteBackups</RootNamespace>
<AssemblyName>InfiniteBackups</AssemblyName>
<TargetFramework>net452</TargetFramework>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
<Company>WEGFan</Company>
<PathMap>$(MSBuildProjectDirectory)=/InfiniteBackups/</PathMap>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\</OutputPath>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
</PropertyGroup>
<Choose>
<When Condition="Exists('lib')">
<ItemGroup>
<Reference Include="Celeste">
<Private>false</Private>
<HintPath>lib\Celeste.exe</HintPath>
</Reference>
<Reference Include="MMHOOK_Celeste">
<Private>false</Private>
<HintPath>lib\MMHOOK_Celeste.dll</HintPath>
</Reference>
<Reference Include="FNA">
<Private>false</Private>
<HintPath>lib\FNA.dll</HintPath>
</Reference>
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<Reference Include="Celeste">
<Private>false</Private>
<HintPath>lib-stripped\Celeste.exe</HintPath>
</Reference>
<Reference Include="MMHOOK_Celeste">
<Private>false</Private>
<HintPath>lib-stripped\MMHOOK_Celeste.dll</HintPath>
</Reference>
<Reference Include="FNA">
<Private>false</Private>
<HintPath>lib-stripped\FNA.dll</HintPath>
</Reference>
</ItemGroup>
</Otherwise>
</Choose>
<ItemGroup>
<PackageReference Include="DotNetZip" Version="1.13.8" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="Mono.Cecil" Version="0.11.3" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod" Version="21.04.29.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.RuntimeDetour" Version="21.04.29.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.RuntimeDetour.HookGen" Version="21.04.29.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.Utils" Version="21.04.29.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="YamlDotNet" Version="8.1.2" PrivateAssets="all" ExcludeAssets="runtime" />
</ItemGroup>
</Project>