Globetrotter/Globetrotter/Globetrotter.csproj

47 lines
1.9 KiB
XML
Raw Normal View History

2020-08-01 07:43:23 +00:00
<?xml version="1.0" encoding="utf-8"?>
2021-01-12 16:10:28 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2021-03-19 20:06:45 +00:00
<PropertyGroup>
2023-01-11 19:33:48 +00:00
<Version>1.2.8</Version>
<TargetFramework>net7-windows</TargetFramework>
2021-03-19 20:06:45 +00:00
<LangVersion>latest</LangVersion>
2021-04-16 12:01:48 +00:00
<Nullable>enable</Nullable>
2021-08-23 01:48:54 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
2022-08-21 08:02:20 +00:00
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</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>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
<DalamudLibPath>$(HOME)/dalamud</DalamudLibPath>
2021-03-19 20:06:45 +00:00
</PropertyGroup>
<ItemGroup>
2021-04-13 13:13:35 +00:00
<Reference Include="Dalamud">
2022-08-21 08:02:20 +00:00
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
2021-04-13 13:13:35 +00:00
<Reference Include="ImGui.NET">
2022-08-21 08:02:20 +00:00
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
2021-04-13 13:13:35 +00:00
<Reference Include="ImGuiScene">
2022-08-21 08:02:20 +00:00
<HintPath>$(DalamudLibPath)\ImGuiScene.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
2021-04-13 13:13:35 +00:00
<Reference Include="Lumina">
2022-08-21 08:02:20 +00:00
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
2021-04-13 13:13:35 +00:00
<Reference Include="Lumina.Excel">
2022-08-21 08:02:20 +00:00
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
</ItemGroup>
<ItemGroup>
2023-01-11 19:33:48 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.10"/>
2021-03-19 20:06:45 +00:00
</ItemGroup>
2021-03-19 20:07:04 +00:00
</Project>