Manage your recollections
Currently published to private repository.
Here are some tips and tricks.
We have Aspire app host.
- dotnet watch build src/Recollections.Blazor.UIto make blazor recompile on change,
- dotnet run --project src/Recollections.AppHostto run apire app host
Ctrl+Shift+B
- Compile SCSS
Execute from command line in root git repository folder:
dotnet ef migrations add {name} --startup-project src\Recollections.Api --project {data_project} --context {context}Example:
dotnet ef migrations add NewMigration --startup-project src\Recollections.Api --project src\Recollections.Entries.Data --context Neptuo.Recollections.Entries.DataContextFrom the API project folder:
dotnet publish --os linux --arch x64 /t:PublishContainer- Update release notes
- Remove aspnetcore hotreload script
From the blazor UI project folder:
dotnet publish -c Release -p:RunAOTCompilation=true