Skip to content

Commit ce04058

Browse files
committed
refactor: Remove unused usings
1 parent 18ba755 commit ce04058

File tree

19 files changed

+4
-32
lines changed

19 files changed

+4
-32
lines changed

src/LinkDotNet.Blog.Infrastructure/Persistence/MongoDB/Repository.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Linq;
43
using System.Linq.Expressions;
54
using System.Threading.Tasks;
65
using LinkDotNet.Blog.Domain;

src/LinkDotNet.Blog.Web/Features/AboutMe/Components/Profile.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
@using LinkDotNet.Blog.Domain
22
@using LinkDotNet.Blog.Infrastructure.Persistence
3-
@using LinkDotNet.Blog.Web.Features.Components
43
@using LinkDotNet.Blog.Web.Features.Services
54

65
@inject IRepository<ProfileInformationEntry> Repository

src/LinkDotNet.Blog.Web/Features/AboutMe/Components/Skill/AddSkillDialog.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@using LinkDotNet.Blog.Domain
2-
@using LinkDotNet.Blog.Web.Features.Components
32
@inject IToastService ToastService
43
<ModalDialog @ref="Dialog" Title="Add Skill">
54
<EditForm Model="@model" OnValidSubmit="CreateSkillItem">

src/LinkDotNet.Blog.Web/Features/Admin/BlogPostEditor/Components/FeatureInfoDialog.razor

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
@using LinkDotNet.Blog.Web.Features.Components
2-
<ModalDialog @ref="FeatureDialog" Title="Additional Features">
1+
<ModalDialog @ref="FeatureDialog" Title="Additional Features">
32
<p>Here you will find a comprehensive list over feature you can use additional to classic markdown</p>
43
<p>Features marked with <i class="lab"></i> are experimental and can change heavily, get removed or the usage
54
changes.</p>

src/LinkDotNet.Blog.Web/Features/Admin/Dashboard/Components/VisitCountPerPage.razor

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
@using System.Linq.Expressions
2-
@using Microsoft.EntityFrameworkCore
32
@using LinkDotNet.Blog.Domain
43
@using LinkDotNet.Blog.Infrastructure
54
@using LinkDotNet.Blog.Infrastructure.Persistence
6-
@using LinkDotNet.Blog.Infrastructure.Persistence.Sql
75
@using System.Collections.Immutable
86
@using System.Diagnostics
97
@using Microsoft.Extensions.Logging

src/LinkDotNet.Blog.Web/Features/Components/ShortBlogPost.razor

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
@using System.Net
2-
@using System.Text.RegularExpressions
3-
@using System.Web
41
@using LinkDotNet.Blog.Domain
5-
@using LinkDotNet.Blog.Web.Features.Services
6-
@using Microsoft.Extensions.Caching.Memory
72

83
<article>
94
<div class="blog-card @AltCssClass">

src/LinkDotNet.Blog.Web/Features/Home/Components/BlogPostNavigation.razor

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
@typeparam T
2-
3-
@using LinkDotNet.Blog.Domain
42
@using LinkDotNet.Blog.Infrastructure
53
<nav aria-label="Page navigation">
64
<ul class="pagination justify-content-center">

src/LinkDotNet.Blog.Web/Features/Home/Components/Footer.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
@using Microsoft.Extensions.Options
21
@using LinkDotNet.Blog.Domain
32
@inject IOptions<ApplicationConfiguration> AppConfiguration
43
@inject IOptions<ProfileInformation> ProfileInformation

src/LinkDotNet.Blog.Web/Features/Home/Components/IntroductionCard.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@using LinkDotNet.Blog.Domain
2-
@using Microsoft.Extensions.Options
32
@inject IOptions<Introduction> Introduction
43
@inject IOptions<Social> Social
54

src/LinkDotNet.Blog.Web/Features/Home/Components/NavMenu.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
@inject IOptions<ApplicationConfiguration> Configuration
22
@inject NavigationManager NavigationManager
3-
@using Microsoft.Extensions.Options
43
@implements IDisposable
54

65
<nav class="navbar navbar-expand-lg navbar-light w-100">

0 commit comments

Comments
 (0)