2023-10-11 00:52:55 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-03-20 18:10:35 +00:00
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
2023-10-11 00:52:55 +00:00
|
|
|
<Version>1.0</Version>
|
2024-03-20 18:10:35 +00:00
|
|
|
<LangVersion>12</LangVersion>
|
2023-10-11 00:52:55 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
<PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
|
|
|
|
<DalamudLibPath>$(DALAMUD_HOME)/</DalamudLibPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Reference Include="Dalamud">
|
|
|
|
<HintPath>$(DalamudLibPath)Dalamud.dll</HintPath>
|
|
|
|
<Private>false</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="ImGui.NET">
|
|
|
|
<HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath>
|
|
|
|
<Private>false</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="Lumina">
|
|
|
|
<HintPath>$(DalamudLibPath)Lumina.dll</HintPath>
|
|
|
|
<Private>false</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="Lumina.Excel">
|
|
|
|
<HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath>
|
|
|
|
<Private>false</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="Newtonsoft.Json">
|
|
|
|
<HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
|
|
|
|
<Private>false</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="FFXIVClientStructs">
|
|
|
|
<HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
|
|
|
|
<Private>false</Private>
|
|
|
|
</Reference>
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|