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>
2022-08-19 13:47:36 +00:00
<TargetFramework>net6-windows</TargetFramework>
2021-04-06 08:41:38 +00:00
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
2022-08-27 21:03:54 +00:00
<Version>6.0.2</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>
2022-08-19 13:47:36 +00:00
<RepositoryUrl>https://git.annaclemens.io/ascclemens/XivCommon</RepositoryUrl>
2021-04-11 13:24:35 +00:00
<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>
2022-08-19 13:47:36 +00:00
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
<Dalamud>$(DALAMUD_HOME)</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>