-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDeathRecap.csproj
59 lines (55 loc) · 2.05 KB
/
DeathRecap.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<Version>1.13.0.0</Version>
</PropertyGroup>
<!-- Dalamud Configuration -->
<PropertyGroup>
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
</PropertyGroup>
<!-- Assembly Reference Locations -->
<PropertyGroup>
<AssemblySearchPaths>
$(AssemblySearchPaths);
$(DalamudLibPath);
</AssemblySearchPaths>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dalamud">
<Private>false</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<Private>false</Private>
</Reference>
<Reference Include="ImGui.NET">
<Private>false</Private>
</Reference>
<Reference Include="ImGuiScene">
<Private>false</Private>
</Reference>
<Reference Include="Lumina">
<Private>False</Private>
</Reference>
<Reference Include="Lumina.Excel">
<Private>False</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="11.0.0"/>
</ItemGroup>
</Project>