2023-10-01 20:50:21 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
2024-03-20 18:52:54 +00:00
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
2024-05-11 12:08:28 +00:00
|
|
|
<Version>5.5</Version>
|
2023-10-01 20:50:21 +00:00
|
|
|
<LangVersion>11.0</LangVersion>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
<OutputPath>dist</OutputPath>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
<PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap>
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2023-10-11 08:52:48 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\LLib\LLib.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-10-01 20:50:21 +00:00
|
|
|
<ItemGroup>
|
2023-10-04 22:07:36 +00:00
|
|
|
<PackageReference Include="DalamudPackager" Version="2.1.12"/>
|
2023-10-01 20:50:21 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Reference Include="Dalamud">
|
|
|
|
<HintPath>$(DalamudLibPath)Dalamud.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>
|
|
|
|
<Reference Include="Newtonsoft.Json">
|
|
|
|
<HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
|
|
|
|
<Private>false</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="FFXIVClientStructs">
|
|
|
|
<HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
|
|
|
|
<Private>false</Private>
|
|
|
|
</Reference>
|
|
|
|
<Reference Include="FFXIVClientStructs">
|
|
|
|
<HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
|
|
|
|
<Private>false</Private>
|
|
|
|
</Reference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-10-04 23:01:22 +00:00
|
|
|
<Target Name="RenameLatestZip" AfterTargets="PackagePlugin" Condition="'$(Configuration)' == 'Release'">
|
2023-10-01 20:50:21 +00:00
|
|
|
<Exec Command="rename $(OutDir)$(AssemblyName)\latest.zip $(AssemblyName)-$(Version).zip"/>
|
|
|
|
</Target>
|
|
|
|
</Project>
|