52 lines
2.1 KiB
XML
52 lines
2.1 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net48</TargetFramework>
|
||
|
<RootNamespace>QuestMap</RootNamespace>
|
||
|
<Version>1.3.0</Version>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<LangVersion>latest</LangVersion>
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Reference Include="Dalamud">
|
||
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
|
||
|
<Private>False</Private>
|
||
|
</Reference>
|
||
|
<Reference Include="ImGui.NET">
|
||
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGui.NET.dll</HintPath>
|
||
|
<Private>False</Private>
|
||
|
</Reference>
|
||
|
<Reference Include="ImGuiScene">
|
||
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGuiScene.dll</HintPath>
|
||
|
<Private>False</Private>
|
||
|
</Reference>
|
||
|
<Reference Include="Lumina">
|
||
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.dll</HintPath>
|
||
|
<Private>False</Private>
|
||
|
</Reference>
|
||
|
<Reference Include="Lumina.Excel">
|
||
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.Excel.dll</HintPath>
|
||
|
<Private>False</Private>
|
||
|
</Reference>
|
||
|
<Reference Include="System.Memory">
|
||
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\System.Memory.dll</HintPath>
|
||
|
<Private>False</Private>
|
||
|
</Reference>
|
||
|
<Reference Include="XivCommon">
|
||
|
<HintPath>D:\code\XivCommon\XivCommon\bin\Release\net48\XivCommon.dll</HintPath>
|
||
|
</Reference>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="AutomaticGraphLayout" Version="1.1.12"/>
|
||
|
<PackageReference Include="DalamudPackager" Version="1.2.1"/>
|
||
|
<PackageReference Include="Fody" Version="6.5.2" PrivateAssets="all"/>
|
||
|
<PackageReference Include="ILMerge.Fody" Version="1.16.0" PrivateAssets="all"/>
|
||
|
<PackageReference Include="System.Threading.Channels" Version="5.0.0"/>
|
||
|
<!-- <PackageReference Include="XivCommon" Version="2.2.0" />-->
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|