diff --git a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF.sln b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF.sln similarity index 54% rename from Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF.sln rename to Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF.sln index a55c56b1..536caee9 100644 --- a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF.sln +++ b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF.sln @@ -1,9 +1,9 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -VisualStudioVersion = 17.5.33516.290 +VisualStudioVersion = 17.9.34310.174 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Convert-Excel-to-PDF", "Convert-Excel-to-PDF\Convert-Excel-to-PDF.csproj", "{3FE3F0DB-E28F-4D81-8C2C-6B5E3879412B}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Convert Excel to PDF", "Convert Excel to PDF\Convert Excel to PDF.csproj", "{39D64370-FF1B-4F4C-BAF0-834E88A581BF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,15 +11,15 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3FE3F0DB-E28F-4D81-8C2C-6B5E3879412B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3FE3F0DB-E28F-4D81-8C2C-6B5E3879412B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3FE3F0DB-E28F-4D81-8C2C-6B5E3879412B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3FE3F0DB-E28F-4D81-8C2C-6B5E3879412B}.Release|Any CPU.Build.0 = Release|Any CPU + {39D64370-FF1B-4F4C-BAF0-834E88A581BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {39D64370-FF1B-4F4C-BAF0-834E88A581BF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {39D64370-FF1B-4F4C-BAF0-834E88A581BF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {39D64370-FF1B-4F4C-BAF0-834E88A581BF}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {BDD70C74-40A1-4F07-9C94-1345D08CD4D8} + SolutionGuid = {37730C31-8392-4B7D-B960-7377B0A6FD3C} EndGlobalSection EndGlobal diff --git a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/App.razor b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/App.razor similarity index 100% rename from Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/App.razor rename to Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/App.razor diff --git a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Convert Excel to PDF.csproj similarity index 50% rename from Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj rename to Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Convert Excel to PDF.csproj index 77e30e54..77338e79 100644 --- a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/Convert-Excel-to-PDF.csproj +++ b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Convert Excel to PDF.csproj @@ -1,20 +1,21 @@ - + - net6.0 + net8.0 enable enable true + true - - - - + + + + - + diff --git a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Convert Excel to PDF.csproj.user b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Convert Excel to PDF.csproj.user new file mode 100644 index 00000000..9ff5820a --- /dev/null +++ b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Convert Excel to PDF.csproj.user @@ -0,0 +1,6 @@ + + + + https + + \ No newline at end of file diff --git a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/FileUtils.cs b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/FileUtils.cs similarity index 57% rename from Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/FileUtils.cs rename to Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/FileUtils.cs index cfa1ede8..22ce57dd 100644 --- a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/FileUtils.cs +++ b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/FileUtils.cs @@ -5,9 +5,9 @@ namespace Convert_Excel_to_PDF public static class FileUtils { public static ValueTask SaveAs(this IJSRuntime js, string filename, byte[] data) - => js.InvokeAsync( - "saveAsFile", - filename, - Convert.ToBase64String(data)); + => js.InvokeAsync( + "saveAsFile", + filename, + Convert.ToBase64String(data)); } } diff --git a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/Shared/MainLayout.razor b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Layout/MainLayout.razor similarity index 75% rename from Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/Shared/MainLayout.razor rename to Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Layout/MainLayout.razor index 839b8fe6..76eb7252 100644 --- a/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert-Excel-to-PDF/Shared/MainLayout.razor +++ b/Getting Started/Blazor/Client Side/Convert Excel to PDF/Convert Excel to PDF/Layout/MainLayout.razor @@ -1,5 +1,4 @@ @inherits LayoutComponentBase -
-
+