You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Its a Blazor server project with about 100 .razor pages, When a change occurs on one of the pages, it takes about 19 seconds to rebuild pages, restart IIS Express and refresh the page. It's awful, I make only a minor change in html, but it takes long time to show the results. The test result is like this :
With 100 razor pages and all css and js references
build : 10 sec
refresh page : 19 sec (include 10 secs for build)
When we remove 90 pages of 100 pages (10 pages remains) :
build : 3 sec
refresh page : 12 sec (include 3 secs for build)
When we remove all css and js references :
build : 3 sec
refresh page : 6 sec (include 3 secs for build)
It is not good at all, because the project is growing and finally we will have about 400 pages! and extra css and js references will added. In this case, the time will be much longer for developing.
what's the solution? Thanks
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Its a Blazor server project with about 100 .razor pages, When a change occurs on one of the pages, it takes about 19 seconds to rebuild pages, restart IIS Express and refresh the page. It's awful, I make only a minor change in html, but it takes long time to show the results. The test result is like this :
With 100 razor pages and all css and js references
build : 10 sec
refresh page : 19 sec (include 10 secs for build)
When we remove 90 pages of 100 pages (10 pages remains) :
build : 3 sec
refresh page : 12 sec (include 3 secs for build)
When we remove all css and js references :
build : 3 sec
refresh page : 6 sec (include 3 secs for build)
It is not good at all, because the project is growing and finally we will have about 400 pages! and extra css and js references will added. In this case, the time will be much longer for developing.
what's the solution? Thanks
Beta Was this translation helpful? Give feedback.
All reactions