ExpandedSearchInfo/ExpandedSearchInfo/ExpandedSearchInfo.csproj

56 lines
2.1 KiB
XML
Raw Normal View History

2021-02-18 20:20:40 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-04-15 18:41:04 +00:00
<TargetFramework>net7-windows</TargetFramework>
2023-10-03 07:12:25 +00:00
<Version>1.3.14</Version>
2021-02-18 20:20:40 +00:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
2021-04-11 12:27:32 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2021-08-24 05:43:09 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2022-08-21 19:17:48 +00:00
<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-02-18 20:20:40 +00:00
</PropertyGroup>
<ItemGroup>
2021-04-11 12:27:32 +00:00
<Reference Include="Dalamud">
2022-08-21 19:17:48 +00:00
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
2021-02-18 20:20:40 +00:00
<Private>False</Private>
</Reference>
2021-08-24 05:43:09 +00:00
<Reference Include="FFXIVClientStructs">
2022-08-21 19:17:48 +00:00
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
2021-08-24 05:43:09 +00:00
<Private>False</Private>
</Reference>
2021-04-11 12:27:32 +00:00
<Reference Include="ImGui.NET">
2022-08-21 19:17:48 +00:00
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
2021-02-18 20:20:40 +00:00
<Private>False</Private>
</Reference>
2021-04-11 12:27:32 +00:00
<Reference Include="ImGuiScene">
2022-08-21 19:17:48 +00:00
<HintPath>$(DalamudLibPath)\ImGuiScene.dll</HintPath>
2021-02-18 20:20:40 +00:00
<Private>False</Private>
</Reference>
2021-04-11 12:27:32 +00:00
<Reference Include="Newtonsoft.Json">
2022-08-21 19:17:48 +00:00
<HintPath>$(DalamudLibPath)\Newtonsoft.Json.dll</HintPath>
2021-02-18 20:20:40 +00:00
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
2023-10-03 07:12:25 +00:00
<PackageReference Include="AngleSharp" Version="1.0.4" />
<PackageReference Include="DalamudPackager" Version="2.1.12" />
<PackageReference Include="Nager.PublicSuffix" Version="2.4.0" />
2021-08-24 05:43:09 +00:00
</ItemGroup>
2023-04-15 18:47:05 +00:00
</Project>