fix: add namesapce for BootstrapInput component

pull/1717/MERGE
Argo-Tianyi 3 years ago
parent 1dbf520197
commit 825f1f32ae

@ -88,9 +88,10 @@ dotnet_naming_symbols.constant_fields.required_modifiers = const
# var preferences
csharp_style_var_for_built_in_types = true:silent
csharp_style_var_when_type_is_apparent = true:silent
csharp_style_var_elsewhere = true:silent
csharp_style_var_elsewhere = true:silent
csharp_prefer_static_local_function= true:silent
# Expression-bodied members
csharp_style_expression_bodied_methods = false:silent
csharp_style_expression_bodied_methods = true:silent
csharp_style_expression_bodied_constructors = false:silent
csharp_style_expression_bodied_operators = false:silent
csharp_style_expression_bodied_properties = true:silent

@ -4,6 +4,8 @@
using BootstrapBlazor.Shared.Common;
using BootstrapBlazor.Shared.Pages.Components;
using System;
using System.Collections.Generic;
namespace BootstrapBlazor.Shared.Pages
{

@ -4,6 +4,8 @@
using BootstrapBlazor.Shared.Common;
using BootstrapBlazor.Shared.Pages.Components;
using System;
using System.Collections.Generic;
namespace BootstrapBlazor.Shared.Pages
{

@ -3,6 +3,7 @@
// Website: https://www.blazor.zone or https://argozhang.github.io/
using Microsoft.AspNetCore.Components;
using System;
namespace BootstrapBlazor.Components
{

Loading…
Cancel
Save