Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

Commit feb08c9

Browse files
committed
➖ Removed unnecessary dependencies
1 parent d467234 commit feb08c9

File tree

5 files changed

+3
-14
lines changed

5 files changed

+3
-14
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -367,3 +367,4 @@ FodyWeavers.xsd
367367

368368
nuget.config
369369
nuget.config
370+
plans or todo.md

EasyLogPlus/EasyLogPlus.csproj

-6
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,4 @@
1111
<PackageDescription>A [relatively] simple .NET 6 logging library. Originally made by byte-0x74, extended by asoji.</PackageDescription>
1212
<RepositoryUrl>https://github.com/asoji/EasyLogPlus</RepositoryUrl>
1313
</PropertyGroup>
14-
<ItemGroup>
15-
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
16-
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.336902">
17-
<PrivateAssets>all</PrivateAssets>
18-
</PackageReference>
19-
</ItemGroup>
2014
</Project>

EasyLogPlus/Properties/AssemblyInfo.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following

Example/Example.csproj

-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,4 @@
66
<ItemGroup>
77
<ProjectReference Include="..\EasyLogPlus\EasyLogPlus.csproj" />
88
</ItemGroup>
9-
<ItemGroup>
10-
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.336902">
11-
<PrivateAssets>all</PrivateAssets>
12-
</PackageReference>
13-
</ItemGroup>
149
</Project>

Example/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ static void Main(string[] args) {
2626
log.Critical("This is critical text!");
2727
log.Alert("This is alert text!");
2828
log.Emergency("This is emergency text!");
29-
29+
3030
log.Info("Press any key to stop this example!");
31-
31+
3232
Console.ReadKey();
3333
}
3434
}

0 commit comments

Comments
 (0)