PalacePal/Pal.Client
Liza 3e2f917c14
API 10
2024-07-06 13:14:59 +02:00
..
Commands Render: Use enabled instead of color for showing/hiding elements 2023-11-26 20:13:17 +01:00
Configuration API 10 2024-07-06 13:14:59 +02:00
Database Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
DependencyInjection API 10 2024-07-06 13:14:59 +02:00
Extensions Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Floors API 10 2024-07-06 13:14:59 +02:00
Net API 9 2023-10-03 22:05:19 +02:00
Properties Remove GitInfo dependency 2024-01-16 11:41:13 +01:00
Rendering API 10 2024-07-06 13:14:59 +02:00
Scheduled Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Windows API 10 2024-07-06 13:14:59 +02:00
.gitignore Update client credentials (not currently enabled) 2022-10-30 22:43:15 +01:00
DalamudPackager.targets Code style tweaks 2023-03-26 15:47:43 +02:00
DependencyContextInitializer.cs API 10 2024-07-06 13:14:59 +02:00
DependencyInjectionContext.cs API 10 2024-07-06 13:14:59 +02:00
ILanguageChanged.cs Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Pal.Client.csproj API 10 2024-07-06 13:14:59 +02:00
Palace Pal.json Update icon URL 2024-01-16 07:03:56 +01:00
Plugin.cs API 10 2024-07-06 13:14:59 +02:00
README.md API 9 2023-10-03 22:05:19 +02:00
packages.lock.json API 10 2024-07-06 13:14:59 +02:00

README.md

Palace Pal

Client Build Notes

Database Migrations

Since EF core needs all dll files to be present, including Dalamud ones, there's a special EF configuration that exempts them from setting <Private>false</Private> during the build.

To use with dotnet ef commands, specify it as -c EF, for example:

dotnet ef migrations add MigrationName --configuration EF

To rebuild the compiled model:

dotnet ef dbcontext optimize --output-dir Database/Compiled --namespace Pal.Client.Database.Compiled --configuration EF