Glamaholic/Glamaholic/Glamaholic.csproj

63 lines
2.3 KiB
XML
Raw Permalink Normal View History

2021-11-19 17:55:07 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-01-15 19:53:35 +00:00
<TargetFramework>net7.0-windows</TargetFramework>
2023-10-03 07:11:54 +00:00
<Version>1.9.14</Version>
2021-11-19 17:55:07 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2022-08-20 21:06:07 +00:00
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
2021-11-19 17:55:07 +00:00
</PropertyGroup>
<PropertyGroup>
2022-08-20 21:06:07 +00:00
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev</DalamudLibPath>
2021-11-19 17:55:07 +00:00
</PropertyGroup>
2022-07-10 17:50:07 +00:00
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
2022-08-20 21:06:07 +00:00
<DalamudLibPath>$(DALAMUD_HOME)</DalamudLibPath>
2022-07-10 17:50:07 +00:00
</PropertyGroup>
2021-11-19 17:55:07 +00:00
<PropertyGroup Condition="'$(IsCI)' == 'true'">
2022-08-20 21:06:07 +00:00
<DalamudLibPath>$(HOME)/dalamud</DalamudLibPath>
2021-11-19 17:55:07 +00:00
</PropertyGroup>
<ItemGroup>
<Reference Include="Dalamud">
2022-08-20 21:06:07 +00:00
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
2021-11-19 17:55:07 +00:00
<Private>false</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
2022-08-20 21:06:07 +00:00
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
2021-11-19 17:55:07 +00:00
<Private>false</Private>
</Reference>
<Reference Include="ImGui.NET">
2022-08-20 21:06:07 +00:00
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
2021-11-19 17:55:07 +00:00
<Private>false</Private>
</Reference>
<Reference Include="Lumina">
2022-08-20 21:06:07 +00:00
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
2021-11-19 17:55:07 +00:00
<Private>false</Private>
</Reference>
<Reference Include="Lumina.Excel">
2022-08-20 21:06:07 +00:00
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
2021-11-19 17:55:07 +00:00
<Private>false</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
2022-08-20 21:06:07 +00:00
<HintPath>$(DalamudLibPath)\Newtonsoft.Json.dll</HintPath>
2021-11-19 17:55:07 +00:00
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
2023-10-03 07:11:54 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.12" />
<PackageReference Include="Fody" Version="6.8.0" PrivateAssets="all" />
<PackageReference Include="Resourcer.Fody" Version="1.8.1" PrivateAssets="all" />
2021-11-19 17:55:07 +00:00
</ItemGroup>
2021-11-23 04:18:52 +00:00
<ItemGroup>
2023-10-03 07:11:54 +00:00
<EmbeddedResource Include="help.txt" />
2021-11-23 04:18:52 +00:00
</ItemGroup>
2023-05-25 16:38:56 +00:00
</Project>