forked from Caraxi/PartyListLayout
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPartyListLayout.csproj
63 lines (63 loc) · 2.55 KB
/
PartyListLayout.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Target">
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net7.0-windows</TargetFramework>
<LangVersion>preview</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Label="Build">
<OutputType>Library</OutputType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Label="Feature">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>0.3.4.3</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<AppOutputBase>$(MSBuildProjectDirectory)\</AppOutputBase>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AssemblyName>PartyListLayout</AssemblyName>
<DalamudLibPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev</DalamudLibPath>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dalamud">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
</Reference>
<Reference Include="FFXIVClientStructs">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="ImGui.NET">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
</Reference>
<Reference Include="ImGuiScene">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\ImGuiScene.dll</HintPath>
</Reference>
<Reference Include="Lumina">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
</Reference>
<Reference Include="Lumina.Excel">
<Private>false</Private>
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="2.1.10" />
</ItemGroup>
</Project>