cd ./appshell
and runnpm i
and thennpm run build
cd ../blazor-pilet
and rundotnet build
cd ../.piral~/blazor-pilet
and runnpm start
- The Browser Console shows an error because
http://localhost:1234/$pilet-api/0/icons.dll
can't be found. The problem occours because inicons\icons.csproj
we've added<AssemblyName>Framework.Frontend.Icons</AssemblyName>
. This renames the dll toFramework.Frontend.Icons.dll
but piral is still assuming the nameicons.dll
. The filehttps://github.com/luckyluggi/mvp_piral_blazor_extension/blob/master/piral~/blazor-pilet/dist/_framework/Framework.Frontend.Icons.dll
does exist. - If i build with vite i get the following message when running the pilet:
The app shell does not contain
piral-blazor. Using standalone mode.
It works when using webpack5.