QuestMap/QuestMap/QuestMap.csproj

54 lines
2.0 KiB
XML
Raw Normal View History

2021-07-21 06:11:01 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-01-15 18:14:47 +00:00
<TargetFramework>net7-windows</TargetFramework>
2021-07-21 06:11:01 +00:00
<RootNamespace>QuestMap</RootNamespace>
2023-10-03 21:39:42 +00:00
<Version>1.4.7</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="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"/>
2023-10-03 21:39:42 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.12"/>
2023-01-15 18:14:47 +00:00
<PackageReference Include="System.Threading.Channels" Version="7.0.0"/>
2023-10-03 21:39:42 +00:00
<PackageReference Include="XivCommon" Version="9.0.0"/>
2021-07-21 06:11:01 +00:00
</ItemGroup>
</Project>