TheGreatSeparator/TheGreatSeparator/TheGreatSeparator.csproj

41 lines
1.3 KiB
XML
Raw Normal View History

2021-06-03 01:09:49 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2021-08-28 20:20:06 +00:00
<TargetFramework>net5-windows</TargetFramework>
2021-08-28 20:20:47 +00:00
<Version>1.2.1</Version>
2021-06-03 01:09:49 +00:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2021-09-26 02:26:53 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
2021-06-03 01:09:49 +00:00
</PropertyGroup>
2021-10-08 18:56:15 +00:00
<PropertyGroup>
<Dalamud>$(AppData)\XIVLauncher\addon\Hooks\dev</Dalamud>
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
<Dalamud>$(HOME)/dalamud</Dalamud>
</PropertyGroup>
2021-06-03 01:09:49 +00:00
<ItemGroup>
<Reference Include="Dalamud">
2021-10-08 18:56:15 +00:00
<HintPath>$(Dalamud)\Dalamud.dll</HintPath>
2021-06-03 01:09:49 +00:00
<Private>False</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
2021-10-08 18:56:15 +00:00
<HintPath>$(Dalamud)\FFXIVClientStructs.dll</HintPath>
2021-06-03 01:09:49 +00:00
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
2021-10-08 18:56:15 +00:00
<HintPath>$(Dalamud)\ImGui.NET.dll</HintPath>
2021-06-03 01:09:49 +00:00
<Private>False</Private>
</Reference>
<Reference Include="ImGuiScene">
2021-10-08 18:56:15 +00:00
<HintPath>$(Dalamud)\ImGuiScene.dll</HintPath>
2021-06-03 01:09:49 +00:00
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
2021-08-28 20:20:47 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.2"/>
2021-06-03 01:09:49 +00:00
</ItemGroup>
</Project>