We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
Name
Blazor-20180319
Blazor (ASP.NET Core hosted)
Build fails with errors due to only some names being converted to underscore and not others.
The type or namespace name 'Shared' does not exist in the namespace 'Blazor_20180319' (are you missing an assembly reference?)
Build should work
The .Server project has references to folder and project names where hyphens are converted to underscores, e.g.
.Server
<ProjectReference Include="..\Blazor_20180319.Client\Blazor_20180319.Client.csproj" /> <ProjectReference Include="..\Blazor_20180319.Shared\Blazor_20180319.Shared.csproj" />
However the actual folders and projects are created with the hyphen, e.g /Blazor-20180319.Client/
/Blazor-20180319.Client/
Don't use project or solution names with hyphens :)
The text was updated successfully, but these errors were encountered:
Thanks for letting us know!
Sorry, something went wrong.
Tried to look at this, it might be an issue with dotnet templating - see dotnet/templating aspnet/AspNetCore#16301 and dotnet/templating aspnet/AspNetCore#16199
dotnet/blazor@a178cd4
Fixup project templates to handle project names with dashes (dotnet#692)
ec1b220
Fixes #291
danroth27
No branches or pull requests
Steps to reproduce:
Name
enter a name with a hyphen, e.g.Blazor-20180319
Blazor (ASP.NET Core hosted)
Result:
Build fails with errors due to only some names being converted to underscore and not others.
Expected result:
Build should work
Notes:
The
.Server
project has references to folder and project names where hyphens are converted to underscores, e.g.However the actual folders and projects are created with the hyphen, e.g
/Blazor-20180319.Client/
Workaround
Don't use project or solution names with hyphens :)
The text was updated successfully, but these errors were encountered: