diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-14 20:28:18 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-14 20:28:18 -0700 |
| commit | d00b782c7fa6b4b4e68754293a3236e35ed7ff90 (patch) | |
| tree | 914f331623c73e866291fdbf60eb83dde9a52f36 /DiscordToXIV/Dalamud.Plugin.Bootstrap.targets | |
| parent | 610015a68d7ad9580c7ac9dc427ccace650a9b9e (diff) | |
implement initial BD websocket receiver
Diffstat (limited to 'DiscordToXIV/Dalamud.Plugin.Bootstrap.targets')
| -rw-r--r-- | DiscordToXIV/Dalamud.Plugin.Bootstrap.targets | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/DiscordToXIV/Dalamud.Plugin.Bootstrap.targets b/DiscordToXIV/Dalamud.Plugin.Bootstrap.targets new file mode 100644 index 0000000..11eec9c --- /dev/null +++ b/DiscordToXIV/Dalamud.Plugin.Bootstrap.targets @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project> + <PropertyGroup> + <DalamudLibPath Condition="$([MSBuild]::IsOSPlatform('Windows'))">$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath> + <DalamudLibPath Condition="$([MSBuild]::IsOSPlatform('Linux'))">$(HOME)/.xlcore/dalamud/Hooks/dev/</DalamudLibPath> + <DalamudLibPath Condition="$([MSBuild]::IsOSPlatform('OSX'))">$(HOME)/Library/Application Support/XIV on Mac/dalamud/Hooks/dev/</DalamudLibPath> + <DalamudLibPath Condition="$(DALAMUD_HOME) != ''">$(DALAMUD_HOME)/</DalamudLibPath> + </PropertyGroup> + + <Import Project="$(DalamudLibPath)/targets/Dalamud.Plugin.targets"/> +</Project> |
