PalacePal/Pal.Client
Liza 58404b9728 Fix floor change regex (for pomanders)
Not sure how or why that even broke, the string doesn't seem to have changed in the LogMessage sheet.

Fixes #18.
2023-04-13 09:17:06 +02:00
..
Commands Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Configuration Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Database Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
DependencyInjection Fix floor change regex (for pomanders) 2023-04-13 09:17:06 +02:00
Extensions Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Floors Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Net Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Properties Update DE localization 2023-03-25 02:47:21 +01:00
Rendering Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Scheduled Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Windows Use file-scoped namespaces 2023-03-30 22:02:51 +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 Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
DependencyInjectionContext.cs Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
ILanguageChanged.cs Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Pal.Client.csproj Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Palace Pal.json Code style tweaks 2023-03-26 15:47:43 +02:00
Plugin.cs Use file-scoped namespaces 2023-03-30 22:02:51 +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