9bd14fb5e8
Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
1.3 KiB
XML
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.6</Version>
|
|
<AssemblyVersion>1.0.6.0</AssemblyVersion>
|
|
<FileVersion>1.0.6.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>
|