2022-10-23 02:38:58 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-01-11 17:41:57 +00:00
|
|
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
2023-01-15 21:53:02 +00:00
|
|
|
|
<LangVersion>11.0</LangVersion>
|
2023-02-08 19:41:45 +00:00
|
|
|
|
<Version>2.9</Version>
|
2022-10-30 10:02:49 +00:00
|
|
|
|
<Nullable>enable</Nullable>
|
2022-10-23 02:38:58 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
<AssemblyName>Palace Pal</AssemblyName>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2022-10-23 15:42:16 +00:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2022-11-25 08:43:24 +00:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2022-10-23 15:42:16 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
|
|
|
<OutputPath>dist</OutputPath>
|
2022-10-30 21:35:42 +00:00
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
2022-10-23 02:38:58 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-10-30 21:35:42 +00:00
|
|
|
|
<ItemGroup Condition="'$(Configuration)' == 'Release' And Exists('Certificate.pfx')">
|
|
|
|
|
<None Remove="Certificate.pfx" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(Configuration)' == 'Release' And Exists('Certificate.pfx')">
|
|
|
|
|
<EmbeddedResource Include="Certificate.pfx" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-10-23 02:38:58 +00:00
|
|
|
|
<ItemGroup>
|
2023-01-11 17:41:57 +00:00
|
|
|
|
<PackageReference Include="DalamudPackager" Version="2.1.10" />
|
2022-12-22 01:04:31 +00:00
|
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.21.12" />
|
2023-01-11 17:41:57 +00:00
|
|
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.51.0" />
|
2022-12-22 01:04:31 +00:00
|
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.51.0">
|
2022-10-23 02:38:58 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2022-11-30 12:53:03 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
|
2022-12-22 00:52:52 +00:00
|
|
|
|
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="7.0.0" />
|
2022-10-23 02:38:58 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-10-26 18:43:24 +00:00
|
|
|
|
<ProjectReference Include="..\Pal.Common\Pal.Common.csproj" />
|
2022-10-23 02:38:58 +00:00
|
|
|
|
<ProjectReference Include="..\vendor\ECommons\ECommons\ECommons.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Protobuf Include="..\Pal.Common\Protos\account.proto" Link="Protos\account.proto" GrpcServices="Client" Access="Internal" />
|
|
|
|
|
<Protobuf Include="..\Pal.Common\Protos\palace.proto" Link="Protos\palace.proto" GrpcServices="Client" Access="Internal" />
|
2022-12-21 19:23:48 +00:00
|
|
|
|
<Protobuf Include="..\Pal.Common\Protos\export.proto" Link="Protos\export.proto" GrpcServices="Client" Access="Internal" />
|
2022-10-23 02:38:58 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<!--You may need to adjust these paths yourself. These point to a Dalamud assembly in AppData.-->
|
|
|
|
|
<Reference Include="Dalamud">
|
|
|
|
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="ImGui.NET">
|
|
|
|
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGui.NET.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="ImGuiScene">
|
|
|
|
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGuiScene.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Lumina">
|
|
|
|
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Lumina.Excel">
|
|
|
|
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.Excel.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Newtonsoft.Json">
|
|
|
|
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Newtonsoft.Json.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="FFXIVClientStructs">
|
|
|
|
|
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\FFXIVClientStructs.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-11-30 11:49:46 +00:00
|
|
|
|
<Target Name="RenameLatestZip" AfterTargets="PackagePlugin">
|
|
|
|
|
<Exec Command="rename "$(OutDir)$(AssemblyName)\latest.zip" "$(AssemblyName)-$(Version).zip"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2022-10-23 02:38:58 +00:00
|
|
|
|
</Project>
|