ExtraChat/client/ExtraChat/ExtraChat.csproj

66 lines
2.6 KiB
XML
Raw Normal View History

2022-07-08 02:58:32 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-01-11 19:16:16 +00:00
<Version>1.3.1</Version>
<TargetFramework>net7.0-windows</TargetFramework>
2022-07-08 02:58:32 +00:00
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2022-08-20 21:03:27 +00:00
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
2022-07-08 02:58:32 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup>
2022-08-20 21:03:27 +00:00
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev</DalamudLibPath>
2022-07-08 02:58:32 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
2022-08-20 21:03:27 +00:00
<DalamudLibPath>$(DALAMUD_HOME)</DalamudLibPath>
2022-07-08 02:58:32 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
2022-08-20 21:03:27 +00:00
<DalamudLibPath>$(HOME)/dalamud</DalamudLibPath>
2022-07-08 02:58:32 +00:00
</PropertyGroup>
<ItemGroup>
<Reference Include="Dalamud">
2022-08-20 21:03:27 +00:00
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
2022-07-08 02:58:32 +00:00
<Private>false</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
2022-08-20 21:03:27 +00:00
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
2022-07-08 02:58:32 +00:00
<Private>false</Private>
</Reference>
<Reference Include="ImGui.NET">
2022-08-20 21:03:27 +00:00
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
2022-07-08 02:58:32 +00:00
<Private>false</Private>
</Reference>
<Reference Include="ImGuiScene">
2022-08-20 21:03:27 +00:00
<HintPath>$(DalamudLibPath)\ImGuiScene.dll</HintPath>
2022-07-08 02:58:32 +00:00
<Private>false</Private>
</Reference>
<Reference Include="Lumina">
2022-08-20 21:03:27 +00:00
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
2022-07-08 02:58:32 +00:00
<Private>false</Private>
</Reference>
<Reference Include="Lumina.Excel">
2022-08-20 21:03:27 +00:00
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
2022-07-08 02:58:32 +00:00
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
2023-05-27 20:48:19 +00:00
<PackageReference Include="ASodium" Version="0.5.6"/>
<PackageReference Include="Dalamud.ContextMenu" Version="1.2.3"/>
<PackageReference Include="DalamudPackager" Version="2.1.11"/>
<PackageReference Include="MessagePack" Version="2.5.108"/>
2022-07-20 01:22:54 +00:00
<PackageReference Include="System.Net.WebSockets.Client" Version="4.3.2"/>
2023-01-11 19:16:16 +00:00
<PackageReference Include="System.Threading.Channels" Version="7.0.0"/>
2022-07-08 02:58:32 +00:00
</ItemGroup>
</Project>