XIVChat/XIVChatPlugin/XIVChatPlugin.csproj

67 lines
3.1 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2020-10-23 21:24:32 +00:00
<PropertyGroup>
2020-11-07 02:40:01 +00:00
<RootNamespace>XIVChatPlugin</RootNamespace>
<AssemblyName>XIVChat</AssemblyName>
2023-01-11 19:28:43 +00:00
<TargetFramework>net7-windows</TargetFramework>
2020-11-07 02:40:01 +00:00
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
2023-05-25 16:48:23 +00:00
<Version>1.7.5</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2021-09-10 14:36:49 +00:00
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2022-08-29 23:58:53 +00:00
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
2021-09-10 14:36:49 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
2022-04-28 15:38:10 +00:00
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
2020-11-07 02:40:01 +00:00
</PropertyGroup>
2022-08-29 23:58:53 +00:00
<PropertyGroup>
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
<DalamudLibPath>$(DALAMUD_HOME)</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
<DalamudLibPath>$(HOME)/dalamud</DalamudLibPath>
</PropertyGroup>
2020-11-07 02:40:01 +00:00
<ItemGroup>
<Reference Include="Dalamud">
2022-08-29 23:58:53 +00:00
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
2020-11-07 02:40:01 +00:00
<Private>False</Private>
</Reference>
2022-04-28 15:38:10 +00:00
<Reference Include="FFXIVClientStructs">
2022-08-29 23:58:53 +00:00
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
2022-04-28 15:38:10 +00:00
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
2022-08-29 23:58:53 +00:00
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
2020-11-07 02:40:01 +00:00
<Private>False</Private>
</Reference>
<Reference Include="Lumina">
2022-08-29 23:58:53 +00:00
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
2020-11-07 02:40:01 +00:00
<Private>False</Private>
</Reference>
<Reference Include="Lumina.Excel">
2022-08-29 23:58:53 +00:00
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
2020-11-07 02:40:01 +00:00
<Private>False</Private>
</Reference>
2021-09-10 14:36:49 +00:00
<Reference Include="PeepingTom.Ipc">
2023-05-25 16:47:46 +00:00
<HintPath>..\..\PeepingTom\Peeping Tom.Ipc\bin\Release\net7.0-windows\Peeping Tom.Ipc.dll</HintPath>
2021-09-10 14:36:49 +00:00
</Reference>
2020-11-07 02:40:01 +00:00
</ItemGroup>
<ItemGroup>
2023-01-11 19:28:43 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.10"/>
<PackageReference Include="MessagePack" Version="2.4.59"/>
2022-08-29 23:58:53 +00:00
<PackageReference Include="PeepingTom.Ipc" Version="1.0.0"/>
2023-05-25 16:47:46 +00:00
<PackageReference Include="Sodium.Core" Version="1.3.3"/>
2023-01-11 19:28:43 +00:00
<PackageReference Include="System.Threading.Channels" Version="7.0.0"/>
2021-09-10 14:36:49 +00:00
<PackageReference Include="WebSocketSharp-netstandard" Version="1.0.1"/>
2023-01-11 19:28:43 +00:00
<PackageReference Include="XivCommon" Version="7.0.0-alpha.1"/>
2020-11-07 02:40:01 +00:00
</ItemGroup>
<ItemGroup>
2021-09-10 14:36:49 +00:00
<ProjectReference Include="..\XIVChatCommon\XIVChatCommon.csproj"/>
2020-11-07 02:40:01 +00:00
</ItemGroup>
<Target Name="CopyNativeLibraries" AfterTargets="AfterBuild">
2021-09-10 14:36:49 +00:00
<Copy SourceFiles="Resources\lib\libsodium.dll" DestinationFolder="$(OutDir)"/>
<Copy SourceFiles="Resources\lib\xivchat_native_tools.dll" DestinationFolder="$(OutDir)"/>
</Target>
2020-11-07 02:40:01 +00:00
</Project>