RoleplayersToolbox/RoleplayersToolbox/RoleplayersToolbox.csproj

71 lines
3.0 KiB
XML
Raw Permalink Normal View History

2021-05-30 20:22:26 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2021-08-24 05:17:42 +00:00
<TargetFramework>net5-windows</TargetFramework>
2022-07-18 17:15:00 +00:00
<Version>0.3.5</Version>
2021-05-30 20:22:26 +00:00
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Configurations>Release Official;Release Illegal;Debug Official;Debug Illegal</Configurations>
<Platforms>AnyCPU</Platforms>
2021-08-24 05:18:18 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2021-05-30 20:22:26 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release Official' ">
<DefineConstants>TRACE;RELEASE;</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release Illegal' ">
<DefineConstants>TRACE;RELEASE;ILLEGAL</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug Official' ">
<DefineConstants>TRACE;DEBUG;</DefineConstants>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug Illegal' ">
<DefineConstants>TRACE;DEBUG;ILLEGAL;</DefineConstants>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
2022-07-18 17:14:45 +00:00
<PropertyGroup>
<Dalamud>$(AppData)\XIVLauncher\addon\Hooks\dev</Dalamud>
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
<Dalamud>$(DALAMUD_HOME)</Dalamud>
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
<Dalamud>$(HOME)/dalamud</Dalamud>
</PropertyGroup>
2021-05-30 20:22:26 +00:00
<ItemGroup>
<Reference Include="Dalamud">
2022-07-18 17:14:45 +00:00
<HintPath>$(Dalamud)\Dalamud.dll</HintPath>
2021-05-30 20:22:26 +00:00
<Private>False</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
2022-07-18 17:14:45 +00:00
<HintPath>$(Dalamud)\FFXIVClientStructs.dll</HintPath>
2021-05-30 20:22:26 +00:00
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
2022-07-18 17:14:45 +00:00
<HintPath>$(Dalamud)\ImGui.NET.dll</HintPath>
2021-05-30 20:22:26 +00:00
<Private>False</Private>
</Reference>
<Reference Include="ImGuiScene">
2022-07-18 17:14:45 +00:00
<HintPath>$(Dalamud)\ImGuiScene.dll</HintPath>
2021-05-30 20:22:26 +00:00
<Private>False</Private>
</Reference>
<Reference Include="Lumina">
2022-07-18 17:14:45 +00:00
<HintPath>$(Dalamud)\Lumina.dll</HintPath>
2021-05-30 20:22:26 +00:00
<Private>False</Private>
</Reference>
<Reference Include="Lumina.Excel">
2022-07-18 17:14:45 +00:00
<HintPath>$(Dalamud)\Lumina.Excel.dll</HintPath>
2021-05-30 20:22:26 +00:00
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dalamud.ContextMenu" Version="1.1.1"/>
2022-06-06 20:35:29 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.7"/>
<PackageReference Include="F23.StringSimilarity" Version="5.0.0"/>
<PackageReference Include="XivCommon" Version="5.0.1-alpha.1"/>
2021-05-30 20:22:26 +00:00
</ItemGroup>
</Project>