366e121783
- Changed behaviour of tab switching
57 lines
1.9 KiB
XML
57 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0-windows</TargetFrameworks>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.3.1" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.3.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ChatTwo\ChatTwo.csproj" />
|
|
</ItemGroup>
|
|
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Dalamud">
|
|
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="FFXIVClientStructs">
|
|
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="ImGui.NET">
|
|
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="Lumina">
|
|
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="Lumina.Excel">
|
|
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|