Files
QuickTransfer/QuickTransfer.csproj
T
KnackAtNite 2f8427b20b Release v1.0.3
Add Alt split helpers and update plugin metadata.
2026-01-26 11:27:20 -05:00

26 lines
1.3 KiB
XML

<Project Sdk="Dalamud.NET.Sdk/14.0.1">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>QuickTransfer</AssemblyName>
<RootNamespace>QuickTransfer</RootNamespace>
<OutputType>Library</OutputType>
<IsPackable>false</IsPackable>
<Version>1.0.3</Version>
<AssemblyVersion>1.0.3.0</AssemblyVersion>
<FileVersion>1.0.3.0</FileVersion>
</PropertyGroup>
<!-- Local builds: some setups have DALAMUD_HOME pointing at the XIVLauncher root,
not the actual dev hooks folder. If the resolved DalamudLibPath doesn't contain
Dalamud.dll, fall back to the standard Roaming dev hooks path. -->
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
<_DalamudDevHooksPath>$(APPDATA)\XIVLauncher\addon\Hooks\dev\</_DalamudDevHooksPath>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows')) and Exists('$(_DalamudDevHooksPath)Dalamud.dll') and !Exists('$(DalamudLibPath)Dalamud.dll')">
<DalamudLibPath>$(_DalamudDevHooksPath)</DalamudLibPath>
</PropertyGroup>
</Project>