OrangeGuidanceTomestone/client/OrangeGuidanceTomestone.csproj

69 lines
2.6 KiB
XML
Raw Normal View History

2022-09-03 02:59:45 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-10-03 21:45:28 +00:00
<Version>1.7.3</Version>
2023-01-11 19:10:51 +00:00
<TargetFramework>net7.0-windows</TargetFramework>
2022-09-03 02:59:45 +00:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2022-09-03 03:24:01 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<LangVersion>preview</LangVersion>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
2022-09-03 02:59:45 +00:00
</PropertyGroup>
<PropertyGroup>
2022-09-04 07:24:53 +00:00
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev</DalamudLibPath>
2022-09-03 02:59:45 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
2022-09-04 07:24:53 +00:00
<DalamudLibPath>$(DALAMUD_HOME)</DalamudLibPath>
2022-09-03 02:59:45 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
2022-09-04 07:24:53 +00:00
<DalamudLibPath>$(HOME)/dalamud</DalamudLibPath>
2022-09-03 02:59:45 +00:00
</PropertyGroup>
<ItemGroup>
<Reference Include="Dalamud">
2022-09-04 07:24:53 +00:00
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
2022-09-03 02:59:45 +00:00
<Private>false</Private>
</Reference>
<Reference Include="FFXIVClientStructs">
2022-09-04 07:24:53 +00:00
<HintPath>$(DalamudLibPath)\FFXIVClientStructs.dll</HintPath>
2022-09-03 02:59:45 +00:00
<Private>false</Private>
</Reference>
<Reference Include="ImGui.NET">
2022-09-04 07:24:53 +00:00
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
2022-09-03 02:59:45 +00:00
<Private>false</Private>
</Reference>
<Reference Include="Lumina">
2022-09-04 07:24:53 +00:00
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
2022-09-03 02:59:45 +00:00
<Private>false</Private>
</Reference>
<Reference Include="Lumina.Excel">
2022-09-04 07:24:53 +00:00
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
2022-09-03 02:59:45 +00:00
<Private>false</Private>
</Reference>
2022-09-03 13:55:36 +00:00
<Reference Include="Newtonsoft.Json">
2022-09-04 07:24:53 +00:00
<HintPath>$(DalamudLibPath)\Newtonsoft.Json.dll</HintPath>
2022-09-03 13:55:36 +00:00
<Private>false</Private>
</Reference>
2022-09-03 02:59:45 +00:00
</ItemGroup>
<ItemGroup>
2023-10-03 21:45:28 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.12"/>
<PackageReference Include="Fody" Version="6.8.0" PrivateAssets="all"/>
<PackageReference Include="Resourcer.Fody" Version="1.8.1" PrivateAssets="all"/>
<PackageReference Include="XivCommon" Version="9.0.0" PrivateAssets="all"/>
2022-09-03 02:59:45 +00:00
</ItemGroup>
<ItemGroup>
2022-09-06 12:11:03 +00:00
<EmbeddedResource Include="vfx/b0941trp1*_o.avfx"/>
<EmbeddedResource Include="img/sign_*.jpg"/>
2022-09-03 02:59:45 +00:00
</ItemGroup>
</Project>