Skip to content
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

Enable implicit usings #55

Merged
merged 1 commit into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BookmarkSync.CLI/BookmarkSync.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>mastodon-bookmark-sync</AssemblyName>
<Version>2.0.0-alpha</Version>
Expand Down
3 changes: 1 addition & 2 deletions BookmarkSync.CLI/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using BookmarkSync.Core.Configuration;
using BookmarkSync.Core.Configuration;
using BookmarkSync.Infrastructure.Services.Bookmarking;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
Expand Down
2 changes: 1 addition & 1 deletion BookmarkSync.Core/BookmarkSync.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
3 changes: 0 additions & 3 deletions BookmarkSync.Core/Configuration/ConfigManager.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.IO;
using BookmarkSync.Core.Entities.Config;
using CiT.Common.Exceptions;
using Microsoft.Extensions.Configuration;
Expand Down
1 change: 0 additions & 1 deletion BookmarkSync.Core/Entities/Config/App.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System;
using CiT.Common.Attributes;

namespace BookmarkSync.Core.Entities.Config;
Expand Down
2 changes: 0 additions & 2 deletions BookmarkSync.Core/Interfaces/IBookmarkingService.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using System.Net.Http;
using System.Threading.Tasks;
using BookmarkSync.Core.Entities;

namespace BookmarkSync.Core.Interfaces;
Expand Down
2 changes: 0 additions & 2 deletions BookmarkSync.Core/Utilities/HtmlUtilities.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using System;
using System.IO;
using HtmlAgilityPack;

namespace BookmarkSync.Core.Utilities;
Expand Down
1 change: 0 additions & 1 deletion BookmarkSync.Core/Utilities/UriUtilities.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System;
using System.Text.RegularExpressions;
using Serilog;

Expand Down