Blazor Wasm x template doesn't compile

Using the latest dotnet tool x, 6.0.2

x new blazor-wasm BlazorLoading

The blazor client project generated has a few compilation errors out of the box:

1>BlazorLoading.Client\Pages\Admin\Users\Create.razor(23,68,23,71): error CS1061: 'InputInfo' does not contain a definition for 'Css' and no accessible extension method 'Css' accepting a first argument of type 'InputInfo' could be found (are you missing a using directive or an assembly reference?)

1>blazor-loading\BlazorLoading.Client\Pages\Admin\Users\Create.razor(136,42,136,53): error CS1061: 'AdminUsersInfo' does not contain a definition for 'FormLayout' and no accessible extension method 'FormLayout' accepting a first argument of type 'AdminUsersInfo' could be found (are you missing a using directive or an assembly reference?)

1>blazor-loading\BlazorLoading.Client\Pages\Admin\Users\Edit.razor(183,42,183,53): error CS1061: 'AdminUsersInfo' does not contain a definition for 'FormLayout' and no accessible extension method 'FormLayout' accepting a first argument of type 'AdminUsersInfo' could be found (are you missing a using directive or an assembly reference?)

'AdminUsersInfo' does not contain a definition for 'FormLayout' and no accessible extension method 'FormLayout' accepting a first argument of type 'AdminUsersInfo' could be found (are you missing a using directive or an assembly reference?)	BlazorLoading.Client	blazor-loading\BlazorLoading.Client\Pages\Admin\Users\Create.razor	136	

'AdminUsersInfo' does not contain a definition for 'FormLayout' and no accessible extension method 'FormLayout' accepting a first argument of type 'AdminUsersInfo' could be found (are you missing a using directive or an assembly reference?)	BlazorLoading.Client	blazor-loading\BlazorLoading.Client\Pages\Admin\Users\Edit.razor	183

The template currently depends on the MyGet release until the next ServiceStack version is pushed to NuGet. With the template should come a NuGet.config which puts the MyGet feed above the NuGet one to resolve the 6.0.3 version on MyGet.

Can you check this is in your project folder as well?

This is the nuget installed with the template:

<configuration>
  <packageSources>
    <add key="ServiceStack MyGet feed" value="https://www.myget.org/F/servicestack" />
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
  </packageSources>
</configuration>

And this is the csproj installed for the blazor client from the template:

  <ItemGroup>
        <PackageReference Include="Markdig" Version="0.26.0" />
        <PackageReference Include="ServiceStack.Blazor" Version="6.*" />
        <PackageReference Include="Blazor.Extensions.Logging" Version="2.0.4" />
        <PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
        <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="6.0.0" />
        <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.0" />
        <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.0" PrivateAssets="all" />
        <PackageReference Include="System.Net.Http.Json" Version="6.0.0" />
    </ItemGroup>

Just tested with cleared NuGet dependencies and the project builds successfully. Could you try clear your NuGet cache? It should be resolving 6.0.3 from MyGet rather than 6.0.2 from NuGet with the use of 6.* in the csproj PackageReference.