2022-10-23 02:38:58 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
<LangVersion>9.0</LangVersion>
|
2022-10-26 21:38:29 +00:00
|
|
|
|
<Version>1.6.0.0</Version>
|
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>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
|
|
|
<OutputPath>dist</OutputPath>
|
2022-10-23 02:38:58 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="DalamudPackager" Version="2.1.8" />
|
|
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.21.8" />
|
|
|
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.49.0" />
|
|
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.50.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</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" />
|
|
|
|
|
</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>
|
|
|
|
|
|
|
|
|
|
</Project>
|