TheGreatSeparator/TheGreatSeparator/TheGreatSeparator.csproj

46 lines
1.7 KiB
XML
Raw Normal View History

2021-06-03 01:09:49 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-01-11 19:52:37 +00:00
<TargetFramework>net7-windows</TargetFramework>
<Version>1.2.6</Version>
2021-06-03 01:09:49 +00:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2021-09-26 02:26:53 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
2022-08-21 19:36:03 +00:00
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
2021-06-03 01:09:49 +00:00
</PropertyGroup>
2021-10-08 18:56:15 +00:00
<PropertyGroup>
2022-08-21 19:36:03 +00:00
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
<DalamudLibPath>$(DALAMUD_HOME)</DalamudLibPath>
2021-10-08 18:56:15 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
2022-08-21 19:36:03 +00:00
<DalamudLibPath>$(HOME)/dalamud</DalamudLibPath>
2021-10-08 18:56:15 +00:00
</PropertyGroup>
2021-06-03 01:09:49 +00:00
<ItemGroup>
<Reference Include="Dalamud">
2022-08-21 19:36:03 +00:00
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
2021-06-03 01:09:49 +00:00
<Private>False</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
2022-08-21 19:36:03 +00:00
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
2021-06-03 01:09:49 +00:00
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
2022-08-21 19:36:03 +00:00
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
2021-06-03 01:09:49 +00:00
<Private>False</Private>
</Reference>
<Reference Include="ImGuiScene">
2022-08-21 19:36:03 +00:00
<HintPath>$(DalamudLibPath)\ImGuiScene.dll</HintPath>
2021-06-03 01:09:49 +00:00
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
2023-01-11 19:52:37 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.10"/>
2021-06-03 01:09:49 +00:00
</ItemGroup>
</Project>