Globetrotter/Globetrotter/Globetrotter.csproj

42 lines
1.6 KiB
XML
Raw Normal View History

2020-08-01 07:43:23 +00:00
<?xml version="1.0" encoding="utf-8"?>
2021-01-12 16:10:28 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2021-03-19 20:06:45 +00:00
<PropertyGroup>
2021-08-23 01:49:13 +00:00
<Version>1.2.1</Version>
2021-08-23 01:48:54 +00:00
<TargetFramework>net5-windows</TargetFramework>
2021-03-19 20:06:45 +00:00
<LangVersion>latest</LangVersion>
2021-04-16 12:01:48 +00:00
<Nullable>enable</Nullable>
2021-08-23 01:48:54 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
2021-03-19 20:06:45 +00:00
</PropertyGroup>
<ItemGroup>
2021-04-13 13:13:35 +00:00
<Reference Include="Dalamud">
2021-03-19 20:06:45 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
2021-04-13 13:13:35 +00:00
<Reference Include="ImGui.NET">
2021-03-19 20:06:45 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGui.NET.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
2021-04-13 13:13:35 +00:00
<Reference Include="ImGuiScene">
2021-03-19 20:06:45 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGuiScene.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
2021-04-13 13:13:35 +00:00
<Reference Include="Lumina">
2021-03-19 20:06:45 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
2021-04-13 13:13:35 +00:00
<Reference Include="Lumina.Excel">
2021-03-19 20:06:45 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.Excel.dll</HintPath>
2021-03-19 20:08:01 +00:00
<Private>False</Private>
2021-03-19 20:06:45 +00:00
</Reference>
</ItemGroup>
<ItemGroup>
2021-08-23 16:38:23 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.0"/>
</ItemGroup>
<ItemGroup>
<Content Include="..\icon.png">
<Link>icon.png</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2021-03-19 20:06:45 +00:00
</ItemGroup>
2021-03-19 20:07:04 +00:00
</Project>