PalacePal/Pal.Client/Pal.Client.csproj

70 lines
3.1 KiB
XML
Raw Normal View History

2024-07-06 11:14:59 +00:00
<Project Sdk="Dalamud.NET.Sdk/9.0.2">
2023-03-26 13:47:18 +00:00
<PropertyGroup>
2024-07-06 11:14:59 +00:00
<Version>6.0</Version>
2023-03-26 13:47:18 +00:00
<AssemblyName>Palace Pal</AssemblyName>
2024-07-06 11:14:59 +00:00
<PlatformTarget>x64</PlatformTarget>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
2023-03-26 13:47:18 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
2022-10-23 15:42:16 +00:00
2024-07-06 11:14:59 +00:00
<Import Project="..\vendor\LLib\LLib.targets"/>
<Import Project="..\vendor\LLib\RenameZip.targets"/>
2023-03-26 13:47:18 +00:00
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<OutputPath>dist</OutputPath>
</PropertyGroup>
2023-03-26 13:47:18 +00:00
<ItemGroup Condition="'$(Configuration)' == 'Release' And Exists('Certificate.pfx')">
2023-10-03 20:05:19 +00:00
<None Remove="Certificate.pfx"/>
2023-03-26 13:47:18 +00:00
</ItemGroup>
2023-03-26 13:47:18 +00:00
<ItemGroup Condition="'$(Configuration)' == 'Release' And Exists('Certificate.pfx')">
2023-10-03 20:05:19 +00:00
<EmbeddedResource Include="Certificate.pfx"/>
2023-03-26 13:47:18 +00:00
</ItemGroup>
2023-03-26 13:47:18 +00:00
<ItemGroup>
2024-07-06 11:14:59 +00:00
<PackageReference Include="Dalamud.Extensions.MicrosoftLogging" Version="4.0.1"/>
<PackageReference Include="Google.Protobuf" Version="3.27.2" />
<PackageReference Include="Grpc.Net.Client" Version="2.63.0"/>
<PackageReference Include="Grpc.Tools" Version="2.64.0">
2023-03-26 13:47:18 +00:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2024-07-06 11:14:59 +00:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.6">
2023-03-26 13:47:18 +00:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2024-07-06 11:14:59 +00:00
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0"/>
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="8.0.0"/>
2023-03-26 13:47:18 +00:00
</ItemGroup>
2023-03-26 13:47:18 +00:00
<ItemGroup>
2023-10-03 20:05:19 +00:00
<ProjectReference Include="..\Pal.Common\Pal.Common.csproj"/>
<ProjectReference Include="..\vendor\ECommons\ECommons\ECommons.csproj"/>
<ProjectReference Include="..\vendor\LLib\LLib.csproj" />
2023-03-26 13:47:18 +00:00
</ItemGroup>
2023-03-26 13:47:18 +00:00
<ItemGroup>
2023-10-03 20:05:19 +00:00
<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"/>
<Protobuf Include="..\Pal.Common\Protos\export.proto" Link="Protos\export.proto" GrpcServices="Client" Access="Internal"/>
2023-03-26 13:47:18 +00:00
</ItemGroup>
2023-03-26 13:47:18 +00:00
<ItemGroup>
<EmbeddedResource Update="Properties\Localization.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Localization.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Compile Update="Properties\Localization.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Localization.resx</DependentUpon>
</Compile>
</ItemGroup>
2023-02-10 19:48:14 +00:00
2023-03-26 13:47:18 +00:00
<Target Name="Clean">
2023-10-03 20:05:19 +00:00
<RemoveDir Directories="dist"/>
2023-03-26 13:47:18 +00:00
</Target>
</Project>