XivCommon/XivCommon/XivCommon.csproj

54 lines
1.9 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-10-08 19:07:27 +00:00
<Version>3.1.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>
2021-10-09 19:17:24 +00:00
<PropertyGroup>
<Dalamud>$(AppData)\XIVLauncher\addon\Hooks\dev</Dalamud>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
2021-10-09 19:29:15 +00:00
<Dalamud>$(HOME)/games/final-fantasy-xiv-online/drive_c/users/$(USER)/AppData/Roaming/XIVLauncher/addon/Hooks/dev</Dalamud>
2021-10-09 19:17:24 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
<Dalamud>$(HOME)/dalamud</Dalamud>
</PropertyGroup>
2021-04-06 08:41:38 +00:00
<ItemGroup>
2021-04-08 02:47:08 +00:00
<Reference Include="Dalamud">
2021-10-09 19:17:24 +00:00
<HintPath>$(Dalamud)\Dalamud.dll</HintPath>
2021-04-06 08:41:38 +00:00
<Private>False</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
2021-10-09 19:17:24 +00:00
<HintPath>$(Dalamud)\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">
2021-10-09 19:17:24 +00:00
<HintPath>$(Dalamud)\Lumina.dll</HintPath>
2021-07-12 01:41:48 +00:00
<Private>False</Private>
</Reference>
<Reference Include="Lumina.Excel">
2021-10-09 19:17:24 +00:00
<HintPath>$(Dalamud)\Lumina.Excel.dll</HintPath>
2021-07-12 01:41:48 +00:00
<Private>False</Private>
</Reference>
2021-04-06 08:41:38 +00:00
</ItemGroup>
</Project>