PalacePal/Pal.Client
Liza cec3597629 Update dependencies 2023-03-26 15:57:50 +02:00
..
Commands Use PalConfigCommand for the config UI button (partial revert of previous commit) 2023-02-25 01:07:10 +01:00
Configuration Code style tweaks 2023-03-26 15:47:43 +02:00
Database Db: Use precompiled model 2023-02-23 00:38:52 +01:00
DependencyInjection Add export tests 2023-03-26 03:11:01 +02:00
Extensions Merge branch 'master' into new-config-and-data 2023-02-21 16:30:50 +01:00
Floors Eureka Orthos: Add owlet trap to pomander of sight 2023-03-07 23:28:58 +01:00
Net Code style tweaks 2023-03-26 15:47:43 +02:00
Properties Update DE localization 2023-03-25 02:47:21 +01:00
Rendering Code style tweaks 2023-03-26 15:47:43 +02:00
Scheduled Code style tweaks 2023-03-26 15:47:43 +02:00
Windows Code style tweaks 2023-03-26 15:47:43 +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 Add debug feature for object table 2023-03-07 21:55:50 +01:00
DependencyInjectionContext.cs Add debug feature for object table 2023-03-07 21:55:50 +01:00
ILanguageChanged.cs Update window titles on language change 2023-02-11 14:31:43 +01:00
Pal.Client.csproj Update dependencies 2023-03-26 15:57:50 +02:00
Palace Pal.json Code style tweaks 2023-03-26 15:47:43 +02:00
Plugin.cs Code style tweaks 2023-03-26 15:47:43 +02:00
README.md Db: Use precompiled model 2023-02-23 00:38:52 +01:00
packages.lock.json Update dependencies 2023-03-26 15:57:50 +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