PalacePal/Pal.Client
Liza 6260f35b61 Update repo location 2023-07-31 02:58:24 +02:00
..
Commands Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
Configuration Update server url 2023-07-30 22:32:39 +02:00
Database Use file-scoped namespaces 2023-03-30 22:02:51 +02:00
DependencyInjection Update repo location 2023-07-31 02:58:24 +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 Update server url 2023-07-30 22:32:39 +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 Update image location 2023-07-30 23:26:15 +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