XivCommon/XivCommon/XivCommon.csproj

42 lines
1.6 KiB
XML
Raw Normal View History

2021-04-06 08:41:38 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2021-07-22 20:33:54 +00:00
<TargetFramework>net5-windows</TargetFramework>
2021-04-06 08:41:38 +00:00
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
2021-08-22 20:47:03 +00:00
<Version>3.0.0</Version>
2021-06-24 08:26:02 +00:00
<DebugType>full</DebugType>
2021-04-11 13:24:35 +00:00
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2021-04-11 13:24:35 +00:00
<Title>XivCommon</Title>
<Authors>ascclemens</Authors>
<RepositoryUrl>https://git.sr.ht/~jkcclemens/XivCommon</RepositoryUrl>
<Description>A set of common functions, hooks, and events not included in Dalamud.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2021-04-06 08:41:38 +00:00
</PropertyGroup>
<ItemGroup>
2021-04-08 02:47:08 +00:00
<Reference Include="Dalamud">
2021-04-18 16:20:27 +00:00
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
2021-04-06 08:41:38 +00:00
<Private>False</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\FFXIVClientStructs.dll</HintPath>
<Private>False</Private>
2021-04-27 01:37:26 +00:00
</Reference>
2021-07-12 01:41:48 +00:00
<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>
2021-04-06 08:41:38 +00:00
</ItemGroup>
</Project>