using Microsoft.AspNetCore.Components;
public partial class ApproverItem
{
[Parameter]
public ApproverTemplateDetailViewModel Item { get; set; }
[Parameter]
public EventCallback<ApproverTemplateDetailViewModel> OnRemoveClick { get; set; }
}
Issue:
When I build the project, I get the error:
CS7000: Unexpected use of an aliased name ProjectName <my_project>\obj\Debug\net5.0\Razor\Pages\RequestHandle.razor.g.cs
I do not understand what this error refers to but I cannot debug the project due to it preventing the build. If I goto the errro file, this is what I get:
The only issue I can see is the double global::global and the lack of a fully qualified path for the <ApproverTemplateDetailViewModel> . But this file is auto generated so I really am at lost here.
Hello!
Blazor Serverside App .Net 5.0 Using blazor drag-drop v2.3.0
I have the Dropzone on my razor as follows:
Where,
ApproverListData is:
ApproverTemplateDetailViewModel is:
ApproverItem.razor is:
ApproverItem.razor.cs is:
Issue:
When I build the project, I get the error:
CS7000: Unexpected use of an aliased name ProjectName <my_project>\obj\Debug\net5.0\Razor\Pages\RequestHandle.razor.g.cs
I do not understand what this error refers to but I cannot debug the project due to it preventing the build. If I goto the errro file, this is what I get:
The only issue I can see is the double
global::global
and the lack of a fully qualified path for the<ApproverTemplateDetailViewModel>
. But this file is auto generated so I really am at lost here.