Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/spa-templates.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Roth <daroth@microsoft.com>2021-10-18 21:59:13 +0300
committerGitHub <noreply@github.com>2021-10-18 21:59:13 +0300
commit812afafc7f314f172e4075e5a0b40852cae58b1e (patch)
tree0add5f4ff96a1aaf72094a45a97633d281e4063a
parent64a6ddc5019ead9f5140c92c46ec4d8f6303b9fb (diff)
Remove extra semicolon
-rw-r--r--src/content/Angular-CSharp/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/Angular-CSharp/Program.cs b/src/content/Angular-CSharp/Program.cs
index 696eb55..0cd7ef9 100644
--- a/src/content/Angular-CSharp/Program.cs
+++ b/src/content/Angular-CSharp/Program.cs
@@ -76,6 +76,6 @@ app.MapControllerRoute(
app.MapRazorPages();
#endif
-app.MapFallbackToFile("index.html");;
+app.MapFallbackToFile("index.html");
app.Run();