From 0a0c3699a2a561fe6793786ca9bec86fce842e8a Mon Sep 17 00:00:00 2001 From: Frederic Wickert Date: Wed, 30 Oct 2024 12:55:28 +0100 Subject: [PATCH] Add missing using directive for System.Linq in Index.cshtml.cs --- src/Application/src/RazorPagesTestSample/Pages/Index.cshtml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Application/src/RazorPagesTestSample/Pages/Index.cshtml.cs b/src/Application/src/RazorPagesTestSample/Pages/Index.cshtml.cs index b8011e52..8017d6dd 100644 --- a/src/Application/src/RazorPagesTestSample/Pages/Index.cshtml.cs +++ b/src/Application/src/RazorPagesTestSample/Pages/Index.cshtml.cs @@ -7,6 +7,7 @@ using System.Threading; using System.IO; using System.IO.Compression; +using System.Linq; namespace RazorPagesTestSample.Pages {