TheHeartOfTheParty/TheHeartOfTheParty/TheHeartOfTheParty.csproj

55 lines
2.0 KiB
XML
Raw Normal View History

2022-04-17 03:15:22 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-10-03 07:09:01 +00:00
<Version>1.0.5</Version>
2023-09-28 02:13:32 +00:00
<TargetFramework>net7-windows</TargetFramework>
2022-04-17 03:15:22 +00:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>preview</LangVersion>
2022-04-17 05:57:11 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2022-08-20 21:32:13 +00:00
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
2022-04-17 03:15:22 +00:00
</PropertyGroup>
2022-04-17 03:48:44 +00:00
<PropertyGroup>
2022-08-20 21:32:13 +00:00
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev</DalamudLibPath>
2022-04-17 05:52:03 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
2022-08-20 21:32:13 +00:00
<DalamudLibPath>$(DALAMUD_HOME)</DalamudLibPath>
2022-04-17 03:48:44 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
2022-08-20 21:32:13 +00:00
<DalamudLibPath>$(HOME)/dalamud</DalamudLibPath>
2022-04-17 03:48:44 +00:00
</PropertyGroup>
2022-04-17 03:15:22 +00:00
<ItemGroup>
<Reference Include="Dalamud">
2022-08-20 21:32:13 +00:00
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
2022-04-17 03:15:22 +00:00
<Private>false</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
2022-08-20 21:32:13 +00:00
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
2022-04-17 03:15:22 +00:00
<Private>false</Private>
</Reference>
<Reference Include="ImGui.NET">
2022-08-20 21:32:13 +00:00
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
2022-04-17 03:15:22 +00:00
<Private>false</Private>
</Reference>
<Reference Include="Lumina">
2022-08-20 21:32:13 +00:00
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
2022-04-17 03:15:22 +00:00
<Private>false</Private>
</Reference>
<Reference Include="Lumina.Excel">
2022-08-20 21:32:13 +00:00
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
2022-04-17 03:15:22 +00:00
<Private>false</Private>
</Reference>
</ItemGroup>
2022-04-17 05:57:11 +00:00
<ItemGroup>
2023-10-03 07:09:01 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.12" />
2022-04-17 05:57:11 +00:00
</ItemGroup>
2022-04-17 03:15:22 +00:00
</Project>