diff --git a/samples/StandaloneApp/Pages/About.cshtml b/samples/StandaloneApp/Pages/About.cshtml deleted file mode 100644 index 3863c7d149..0000000000 --- a/samples/StandaloneApp/Pages/About.cshtml +++ /dev/null @@ -1,5 +0,0 @@ -
Current count: @currentCount
+ + + +@functions { + int currentCount = 0; + + void IncrementCount() + { + currentCount++; + } +} diff --git a/samples/StandaloneApp/Pages/Index.cshtml b/samples/StandaloneApp/Pages/Index.cshtml index e5b93bf62a..f75a462181 100644 --- a/samples/StandaloneApp/Pages/Index.cshtml +++ b/samples/StandaloneApp/Pages/Index.cshtml @@ -1,5 +1,3 @@