BetterPartyFinder/BetterPartyFinder/BetterPartyFinder.csproj

50 lines
1.9 KiB
XML
Raw Normal View History

2021-01-14 04:06:35 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2021-08-24 18:00:42 +00:00
<TargetFramework>net5-windows</TargetFramework>
2021-05-02 03:07:16 +00:00
<Version>1.2.0</Version>
2021-01-14 04:06:35 +00:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
2021-08-24 18:00:42 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2021-01-14 04:06:35 +00:00
</PropertyGroup>
<ItemGroup>
<Reference Include="Dalamud">
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
2021-01-14 04:06:35 +00:00
<Private>False</Private>
</Reference>
2021-08-24 18:00:42 +00:00
<Reference Include="FFXIVClientStructs">
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\FFXIVClientStructs.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
2021-02-17 00:45:50 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGui.NET.dll</HintPath>
2021-01-14 04:06:35 +00:00
<Private>False</Private>
</Reference>
<Reference Include="ImGuiScene">
2021-02-17 00:45:50 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGuiScene.dll</HintPath>
2021-01-14 04:06:35 +00:00
<Private>False</Private>
</Reference>
<Reference Include="Lumina">
2021-02-17 00:45:50 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.dll</HintPath>
2021-01-14 04:06:35 +00:00
<Private>False</Private>
</Reference>
<Reference Include="Lumina.Excel">
2021-02-17 00:45:50 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.Excel.dll</HintPath>
2021-01-14 04:06:35 +00:00
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
2021-08-24 18:00:42 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.2"/>
<PackageReference Include="XivCommon" Version="3.0.1"/>
</ItemGroup>
<ItemGroup>
<Content Include="..\icon.png" Link="images/icon.png" CopyToOutputDirectory="PreserveNewest" Visible="false"/>
2021-01-14 04:06:35 +00:00
</ItemGroup>
</Project>