-
-
Notifications
You must be signed in to change notification settings - Fork 538
Migrating documentation to .NET 8 - WASM mode #5091
New issue
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
Open
stsrki
wants to merge
29
commits into
rel-1.4
Choose a base branch
from
rel-1.2-net8-docs-v2-automode
base: rel-1.4
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
8483cdc
Upgrade net8 packages
stsrki b66832e
Fix warning in launchSettings
stsrki 6440586
Use App.razor for base component
stsrki 6f722ae
Rename Seo class to SeoGenerator
stsrki 5a1b1e7
Configure Program and Startup for net8
stsrki 0244144
Add StreamRendering to pricing page
stsrki 84817e4
Add more net8 packages
stsrki e62f447
Add counter page to test interactivity
David-Moreira 45d79db
merge / remove wasm dependencies
David-Moreira bffb4e1
Make the router take in rendermode Server
David-Moreira 4cd60b1
Separate Routes.razor
stsrki 79dcba1
Use Routes.razor
stsrki a54fb00
merge
stsrki 2266667
Use net8.0 for Blazorise.Docs.Compiler
stsrki f024679
ThemeProvider in Routes
stsrki d569083
Add missing rewardful JS scripts
stsrki ab9b8a6
Formating
stsrki c40d82a
Remove render mode from home and pricing pages
stsrki 87deea8
Merge branch 'rel-1.3' into rel-1.2-net8-docs-v2
stsrki 3fccab0
Update NuGet packages
stsrki 3d960e6
Update server rendering mode APIs
stsrki a1c492c
Convert Blazorise.Docs to WASM client
stsrki 0ac6cb7
Merge branch 'rel-1.4' into rel-1.2-net8-docs-v2-automode
stsrki 113cc2e
merge 1.4
stsrki f0c2aa9
Fix CSS and JS paths
stsrki 1771153
Update runtime versions
stsrki 00e9a8e
Remove AllowSynchronousIO
stsrki e5eb204
Remove <SupportedPlatform Include="browser" />
stsrki 1530e73
Fix Wasm project configuration | Interactive Auto Changes
David-Moreira File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| @using Blazorise.Components | ||
| @using System.Reflection; | ||
| @using Blazorise.Docs.Layouts; | ||
| @using Microsoft.AspNetCore.Components.Web | ||
|
|
||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
|
|
@@ -10,7 +11,7 @@ | |
|
|
||
| <base href="/" /> | ||
|
|
||
| <HeadOutlet @rendermode="RenderMode.InteractiveServer" /> | ||
| <HeadOutlet /> | ||
|
|
||
| <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | ||
| <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | ||
|
|
@@ -31,7 +32,7 @@ | |
| <link href="_content/Blazorise.SpinKit/blazorise.spinkit.min.css?v=1.4.1.0" rel="stylesheet" /> | ||
| <link href="_content/Blazorise.LoadingIndicator/blazorise.loadingindicator.min.css?v=1.4.1.0" rel="stylesheet" /> | ||
| <link href="_content/Blazorise.TreeView/blazorise.treeview.min.css?v=1.4.1.0" rel="stylesheet" /> | ||
| <link href="_content/Blazorise.Docs/blazorise.docs.min.css?v=1.4.1.0" rel="stylesheet" /> | ||
| <link href="blazorise.docs.min.css?v=1.4.1.0" rel="stylesheet" /> | ||
|
|
||
| <link href="css/site.css?v=1.4.1.0" rel="stylesheet" /> | ||
|
|
||
|
|
@@ -41,7 +42,7 @@ | |
| <script async src='https://r.wdfl.co/rw.js' data-rewardful='42a4f3'></script> | ||
| </head> | ||
| <body> | ||
| <Routes @rendermode="RenderMode.InteractiveServer" /> | ||
| <Routes @rendermode="RenderMode.InteractiveAuto" /> | ||
|
|
||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.1/chart.min.js"></script> | ||
| <script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> | ||
|
|
@@ -58,8 +59,8 @@ | |
| </script> | ||
|
|
||
| <script src="_content/Blazorise.Animate/blazorise.animate.js?v=1.4.1.0"></script> | ||
| <script src="_content/Blazorise.Docs/blazorise.docs.min.js?v=1.4.1.0"></script> | ||
| <script src="blazorise.docs.min.js?v=1.4.1.0"></script> | ||
|
|
||
| <script src="_framework/blazor.web.js" suppress-error="BL9992"></script> | ||
| <script src="_framework/blazor.web.js"></script> | ||
| </body> | ||
| </html> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,101 +1,98 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
| <Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> | ||
David-Moreira marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| <Import Project="..\..\Build\Blazorise.Docs.props" /> | ||
| <Import Project="..\..\Build\Blazorise.Docs.props" /> | ||
|
|
||
| <ItemGroup> | ||
| <SupportedPlatform Include="browser" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <ProjectReference Include="..\..\Shared\Blazorise.Shared\Blazorise.Shared.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Blazorise\Blazorise.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Blazorise.Bootstrap5\Blazorise.Bootstrap5.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Animate\Blazorise.Animate.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts.Streaming\Blazorise.Charts.Streaming.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts.Trendline\Blazorise.Charts.Trendline.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts.DataLabels\Blazorise.Charts.DataLabels.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts.Annotation\Blazorise.Charts.Annotation.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts\Blazorise.Charts.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Components\Blazorise.Components.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.DataGrid\Blazorise.DataGrid.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Icons.FontAwesome\Blazorise.Icons.FontAwesome.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Markdown\Blazorise.Markdown.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.QRCode\Blazorise.QRCode.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.RichTextEdit\Blazorise.RichTextEdit.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Sidebar\Blazorise.Sidebar.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Snackbar\Blazorise.Snackbar.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.SpinKit\Blazorise.SpinKit.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.LoadingIndicator\Blazorise.LoadingIndicator.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.TreeView\Blazorise.TreeView.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Video\Blazorise.Video.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.FluentValidation\Blazorise.FluentValidation.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.LottieAnimation\Blazorise.LottieAnimation.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Cropper\Blazorise.Cropper.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.SignaturePad\Blazorise.SignaturePad.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Splitter\Blazorise.Splitter.csproj" /> | ||
| <PackageReference Include="MailKit" Version="3.1.1" /> | ||
| <PackageReference Include="MimeKit" Version="3.1.1" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup> | ||
| <ProjectReference Include="..\..\Shared\Blazorise.Shared\Blazorise.Shared.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Blazorise\Blazorise.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Animate\Blazorise.Animate.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts.Streaming\Blazorise.Charts.Streaming.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts.Trendline\Blazorise.Charts.Trendline.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts.DataLabels\Blazorise.Charts.DataLabels.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts.Annotation\Blazorise.Charts.Annotation.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Charts\Blazorise.Charts.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Components\Blazorise.Components.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.DataGrid\Blazorise.DataGrid.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Icons.FontAwesome\Blazorise.Icons.FontAwesome.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Markdown\Blazorise.Markdown.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.QRCode\Blazorise.QRCode.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.RichTextEdit\Blazorise.RichTextEdit.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Sidebar\Blazorise.Sidebar.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Snackbar\Blazorise.Snackbar.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.SpinKit\Blazorise.SpinKit.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.LoadingIndicator\Blazorise.LoadingIndicator.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.TreeView\Blazorise.TreeView.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Video\Blazorise.Video.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.FluentValidation\Blazorise.FluentValidation.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.LottieAnimation\Blazorise.LottieAnimation.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Cropper\Blazorise.Cropper.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.SignaturePad\Blazorise.SignaturePad.csproj" /> | ||
| <ProjectReference Include="..\..\Source\Extensions\Blazorise.Splitter\Blazorise.Splitter.csproj" /> | ||
| <PackageReference Include="MailKit" Version="3.1.1" /> | ||
| <PackageReference Include="MimeKit" Version="3.1.1" /> | ||
| </ItemGroup> | ||
| <!--Binary path for the code generator--> | ||
| <PropertyGroup> | ||
| <BinDocsCompiler>..\..\Documentation/Blazorise.Docs.Compiler/bin/Debug/net8.0/Blazorise.Docs.Compiler.dll</BinDocsCompiler> | ||
| </PropertyGroup> | ||
|
|
||
| <!--Binary path for the code generator--> | ||
| <PropertyGroup> | ||
| <BinDocsCompiler>..\..\Documentation/Blazorise.Docs.Compiler/bin/Debug/net8.0/Blazorise.Docs.Compiler.dll</BinDocsCompiler> | ||
| </PropertyGroup> | ||
| <!--Project path for code generator--> | ||
| <PropertyGroup> | ||
| <ProjectDocsCompiler>dotnet run --configuration release --project "..\..\Documentation/Blazorise.Docs.Compiler/Blazorise.Docs.Compiler.csproj"</ProjectDocsCompiler> | ||
| </PropertyGroup> | ||
|
|
||
| <!--Project path for code generator--> | ||
| <PropertyGroup> | ||
| <ProjectDocsCompiler>dotnet run --configuration release --project "..\..\Documentation/Blazorise.Docs.Compiler/Blazorise.Docs.Compiler.csproj"</ProjectDocsCompiler> | ||
| </PropertyGroup> | ||
| <!--Execute the code generator--> | ||
| <Target Name="CompileDocs" BeforeTargets="BeforeBuild"> | ||
| <!--Command-line for the code generator--> | ||
| <Message Text="Generating Docs and Tests" Importance="high" /> | ||
| <Exec Command="dotnet "$(BinDocsCompiler)"" Condition="Exists('$(BinDocsCompiler)')" /> | ||
| <Exec Command="$(ProjectDocsCompiler)" Condition="!Exists('$(BinDocsCompiler)')" /> | ||
| </Target> | ||
|
|
||
| <!--Execute the code generator--> | ||
| <Target Name="CompileDocs" BeforeTargets="BeforeBuild"> | ||
| <!--Command-line for the code generator--> | ||
| <Message Text="Generating Docs and Tests" Importance="high" /> | ||
| <Exec Command="dotnet "$(BinDocsCompiler)"" Condition="Exists('$(BinDocsCompiler)')" /> | ||
| <Exec Command="$(ProjectDocsCompiler)" Condition="!Exists('$(BinDocsCompiler)')" /> | ||
| </Target> | ||
| <!--This file contains any ExampleCode that is new and needs including in the build --> | ||
| <Target Name="ReadFromFile" DependsOnTargets="CompileDocs"> | ||
| <ItemGroup> | ||
| <NewFiles Include="NewFilesToBuild.txt" /> | ||
| </ItemGroup> | ||
| <ReadLinesFromFile File="@(NewFiles)"> | ||
| <Output TaskParameter="Lines" ItemName="NewExampleCodeToBuild" /> | ||
| </ReadLinesFromFile> | ||
| </Target> | ||
|
|
||
| <!--This file contains any ExampleCode that is new and needs including in the build --> | ||
| <Target Name="ReadFromFile" DependsOnTargets="CompileDocs"> | ||
| <ItemGroup> | ||
| <NewFiles Include="NewFilesToBuild.txt" /> | ||
| </ItemGroup> | ||
| <ReadLinesFromFile File="@(NewFiles)"> | ||
| <Output TaskParameter="Lines" ItemName="NewExampleCodeToBuild" /> | ||
| </ReadLinesFromFile> | ||
| </Target> | ||
| <!--Update ExampleCode--> | ||
| <ItemGroup> | ||
| <EmbeddedResource Include="Pages\**\*.html" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <Content Remove="bundleconfig.json" /> | ||
| <Content Remove="compilerconfig.json" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <None Include="bundleconfig.json" /> | ||
| <None Include="compilerconfig.json" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <PackageReference Include="Markdig" Version="0.30.4" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.*" /> | ||
| <PackageReference Include="SendGrid" Version="9.28.1" /> | ||
| </ItemGroup> | ||
|
|
||
| <!--Update ExampleCode--> | ||
| <ItemGroup> | ||
| <EmbeddedResource Include="Pages\**\*.html" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <Content Remove="bundleconfig.json" /> | ||
| <Content Remove="compilerconfig.json" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <None Include="bundleconfig.json" /> | ||
| <None Include="compilerconfig.json" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <PackageReference Include="Markdig" Version="0.30.4" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.*" /> | ||
| <PackageReference Include="SendGrid" Version="9.28.1" /> | ||
| </ItemGroup> | ||
| <!--Is this a rebuild - Dont clean generated files as this breaks rebuild behaviour--> | ||
| <Target Name="ShouldCleanGeneratedFiles" BeforeTargets="BeforeRebuild"> | ||
| <PropertyGroup> | ||
| <CleanGeneratedFiles>false</CleanGeneratedFiles> | ||
| </PropertyGroup> | ||
| </Target> | ||
|
|
||
| <!--Is this a rebuild - Dont clean generated files as this breaks rebuild behaviour--> | ||
| <Target Name="ShouldCleanGeneratedFiles" BeforeTargets="BeforeRebuild"> | ||
| <PropertyGroup> | ||
| <CleanGeneratedFiles>false</CleanGeneratedFiles> | ||
| </PropertyGroup> | ||
| </Target> | ||
|
|
||
| <Target Name="CleanGeneratedFiles" BeforeTargets="Clean" Condition="'$(CleanGeneratedFiles)' != 'false'"> | ||
| <ItemGroup> | ||
| <FilesToClean Include="./Pages/**/*ExampleCode.*" /> | ||
| <FilesToClean Include="./NewFilesToBuild.txt" /> | ||
| </ItemGroup> | ||
| <Delete Files="@(FilesToClean)" /> | ||
| </Target> | ||
| <Target Name="CleanGeneratedFiles" BeforeTargets="Clean" Condition="'$(CleanGeneratedFiles)' != 'false'"> | ||
| <ItemGroup> | ||
| <FilesToClean Include="./Pages/**/*ExampleCode.*" /> | ||
| <FilesToClean Include="./NewFilesToBuild.txt" /> | ||
| </ItemGroup> | ||
| <Delete Files="@(FilesToClean)" /> | ||
| </Target> | ||
|
|
||
| </Project> | ||
18 changes: 9 additions & 9 deletions
18
Documentation/Blazorise.Docs/Components/HomeClientLogos.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,47 +1,47 @@ | ||
| <Row> | ||
| <Column TextAlignment="TextAlignment.Center"> | ||
| <Anchor To="https://corporate.comcast.com/" Target="Target.Blank" Title="Comcast"> | ||
| <Image Source="_content/Blazorise.Docs/assets/img/logos/users/comcast.svg" Text="Comcast" /> | ||
| <Image Source="assets/img/logos/users/comcast.svg" Text="Comcast" /> | ||
| </Anchor> | ||
| </Column> | ||
| <Column TextAlignment="TextAlignment.Center"> | ||
| <Anchor To="https://abp.io/" Target="Target.Blank" Title="abp"> | ||
| <Image Source="_content/Blazorise.Docs/assets/img/logos/users/abp.svg" Text="abp" /> | ||
| <Image Source="assets/img/logos/users/abp.svg" Text="abp" /> | ||
| </Anchor> | ||
| </Column> | ||
| <Column TextAlignment="TextAlignment.Center"> | ||
| <Anchor To="https://www.ge.com/" Target="Target.Blank" Title="ge"> | ||
| <Image Source="_content/Blazorise.Docs/assets/img/logos/users/ge.svg" Text="ge" /> | ||
| <Image Source="assets/img/logos/users/ge.svg" Text="ge" /> | ||
| </Anchor> | ||
| </Column> | ||
| <Column TextAlignment="TextAlignment.Center"> | ||
| <Anchor To="https://www.techmahindra.com/" Target="Target.Blank" Title="Tech Mahindra"> | ||
| <Image Source="_content/Blazorise.Docs/assets/img/logos/users/tech-mahindra.svg" Text="Tech Mahindra" /> | ||
| <Image Source="assets/img/logos/users/tech-mahindra.svg" Text="Tech Mahindra" /> | ||
| </Anchor> | ||
| </Column> | ||
| <Column TextAlignment="TextAlignment.Center"> | ||
| <Anchor To="https://www.pebble.tv/" Target="Target.Blank" Title="pebble"> | ||
| <Image Source="_content/Blazorise.Docs/assets/img/logos/users/pebble.svg" Text="pebble" /> | ||
| <Image Source="assets/img/logos/users/pebble.svg" Text="pebble" /> | ||
| </Anchor> | ||
| </Column> | ||
| <Column TextAlignment="TextAlignment.Center"> | ||
| <Anchor To="https://www.telekom.com/en" Target="Target.Blank" Title="Deutsche Telekom"> | ||
| <Image Source="_content/Blazorise.Docs/assets/img/logos/users/deutsche-telekom.svg" Text="Deutsche Telekom" /> | ||
| <Image Source="assets/img/logos/users/deutsche-telekom.svg" Text="Deutsche Telekom" /> | ||
| </Anchor> | ||
| </Column> | ||
| <Column TextAlignment="TextAlignment.Center"> | ||
| <Anchor To="https://www.microsoft.com/" Target="Target.Blank" Title="microsoft"> | ||
| <Image Source="_content/Blazorise.Docs/assets/img/logos/users/microsoft.svg" Text="microsoft" /> | ||
| <Image Source="assets/img/logos/users/microsoft.svg" Text="microsoft" /> | ||
| </Anchor> | ||
| </Column> | ||
| <Column TextAlignment="TextAlignment.Center"> | ||
| <Anchor To="https://www.daimlertruck.com/en/" Target="Target.Blank" Title="daimler"> | ||
| <Image Source="_content/Blazorise.Docs/assets/img/logos/users/daimler.svg" Text="daimler" /> | ||
| <Image Source="assets/img/logos/users/daimler.svg" Text="daimler" /> | ||
| </Anchor> | ||
| </Column> | ||
| <Column TextAlignment="TextAlignment.Center"> | ||
| <Anchor To="https://www.airforce.com/" Target="Target.Blank" Title="US AirForce"> | ||
| <Image Source="_content/Blazorise.Docs/assets/img/logos/users/us-airforce.svg" Text="US AirForce" /> | ||
| <Image Source="assets/img/logos/users/us-airforce.svg" Text="US AirForce" /> | ||
| </Anchor> | ||
| </Column> | ||
| </Row> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.