2021-07-21 06:11:01 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-08-21 08:12:27 +00:00
|
|
|
<TargetFramework>net6-windows</TargetFramework>
|
2021-07-21 06:11:01 +00:00
|
|
|
<RootNamespace>QuestMap</RootNamespace>
|
2022-08-21 08:12:41 +00:00
|
|
|
<Version>1.4.3</Version>
|
2021-07-21 06:11:01 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2021-08-23 17:20:39 +00:00
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2022-08-21 08:12:27 +00:00
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
2021-08-23 17:20:39 +00:00
|
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
2022-08-21 08:12:27 +00:00
|
|
|
</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-07-21 06:11:01 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Reference Include="Dalamud">
|
2022-08-21 08:12:27 +00:00
|
|
|
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
|
2021-07-21 06:11:01 +00:00
|
|
|
<Private>False</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="ImGui.NET">
|
2022-08-21 08:12:27 +00:00
|
|
|
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
|
2021-07-21 06:11:01 +00:00
|
|
|
<Private>False</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="ImGuiScene">
|
2022-08-21 08:12:27 +00:00
|
|
|
<HintPath>$(DalamudLibPath)\ImGuiScene.dll</HintPath>
|
2021-07-21 06:11:01 +00:00
|
|
|
<Private>False</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="Lumina">
|
2022-08-21 08:12:27 +00:00
|
|
|
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
|
2021-07-21 06:11:01 +00:00
|
|
|
<Private>False</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="Lumina.Excel">
|
2022-08-21 08:12:27 +00:00
|
|
|
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
|
2021-07-21 06:11:01 +00:00
|
|
|
<Private>False</Private>
|
|
|
|
</Reference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="AutomaticGraphLayout" Version="1.1.12"/>
|
2022-08-21 08:12:27 +00:00
|
|
|
<PackageReference Include="DalamudPackager" Version="2.1.7"/>
|
2021-12-07 00:14:44 +00:00
|
|
|
<PackageReference Include="System.Threading.Channels" Version="6.0.0"/>
|
2022-08-21 08:12:27 +00:00
|
|
|
<PackageReference Include="XivCommon" Version="6.0.0"/>
|
2021-07-21 06:11:01 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|