Skip to content

Commit d8a69ba

Browse files
authored
Update copyright notices and editorconfig settings (#68)
1 parent 239f343 commit d8a69ba

File tree

40 files changed

+39
-48
lines changed

40 files changed

+39
-48
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ indent_size = 2
122122
# Code files
123123
[*.{cs,csx,vb,vbx}]
124124
indent_size = 4
125+
file_header_template = Copyright © https://myCSharp.de - all rights reserved
125126

126127
# Organize usings
127128
dotnet_sort_system_directives_first = true

MyCSharp.HttpUserAgentParser.sln

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,6 @@ Global
8181
GlobalSection(SolutionProperties) = preSolution
8282
HideSolutionNode = FALSE
8383
EndGlobalSection
84-
GlobalSection(NestedProjects) = preSolution
85-
{45927CF7-1BF4-479B-BBAA-8AD9CA901AE4} = {008A2BAB-78B4-42EB-A5D4-DE434438CEF0}
86-
{3357BEC0-8216-409E-A539-F9A71DBACB81} = {008A2BAB-78B4-42EB-A5D4-DE434438CEF0}
87-
{F16697F7-74B4-441D-A0C0-1A0572AC3AB0} = {F54C9296-4EF7-40F0-9F20-F23A2270ABC9}
88-
{75960783-8BF9-479C-9ECF-E9653B74C9A2} = {F54C9296-4EF7-40F0-9F20-F23A2270ABC9}
89-
{3C8CCD44-F47C-4624-8997-54C42F02E376} = {008A2BAB-78B4-42EB-A5D4-DE434438CEF0}
90-
{39FC1EC2-2AD3-411F-A545-AB6CCB94FB7E} = {F54C9296-4EF7-40F0-9F20-F23A2270ABC9}
91-
{A0D213E9-6408-46D1-AFAF-5096C2F6E027} = {FAAD18A0-E1B8-448D-B611-AFBDA8A89808}
92-
{165EE915-1A4F-4875-90CE-1A2AE1540AE7} = {F54C9296-4EF7-40F0-9F20-F23A2270ABC9}
93-
EndGlobalSection
9484
GlobalSection(ExtensibilityGlobals) = postSolution
9585
SolutionGuid = {E8B0C994-0BF2-4692-9E22-E48B265B2804}
9686
EndGlobalSection

perf/HttpUserAgentParser.Benchmarks/HttpUserAgentParserBenchmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using BenchmarkDotNet.Attributes;
44
using BenchmarkDotNet.Jobs;

perf/HttpUserAgentParser.Benchmarks/LibraryComparison/LibraryComparisonBenchmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using BenchmarkDotNet.Attributes;
44
using BenchmarkDotNet.Columns;

perf/HttpUserAgentParser.Benchmarks/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using System.Reflection;
44
using BenchmarkDotNet.Configs;

src/HttpUserAgentParser.AspNetCore/DependencyInjection/HttpUserAgentParserDependencyInjectionOptionsExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.DependencyInjection;
44
using MyCSharp.HttpUserAgentParser.DependencyInjection;

src/HttpUserAgentParser.AspNetCore/HttpContextExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.AspNetCore.Http;
44
using Microsoft.Extensions.Primitives;

src/HttpUserAgentParser.AspNetCore/HttpUserAgentParserAccessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.AspNetCore.Http;
44
using MyCSharp.HttpUserAgentParser.Providers;

src/HttpUserAgentParser.AspNetCore/IHttpUserAgentParserAccessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.AspNetCore.Http;
44

src/HttpUserAgentParser.MemoryCache/DependencyInjection/HttpUserAgentParserMemoryCacheServiceCollectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.DependencyInjection;
44
using MyCSharp.HttpUserAgentParser.DependencyInjection;

src/HttpUserAgentParser.MemoryCache/HttpUserAgentParserMemoryCachedProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.Caching.Memory;
44
using MyCSharp.HttpUserAgentParser.Providers;

src/HttpUserAgentParser.MemoryCache/HttpUserAgentParserMemoryCachedProviderOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.Caching.Memory;
44

src/HttpUserAgentParser/DependencyInjection/HttpUserAgentParserDependencyInjectionOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.DependencyInjection;
44

src/HttpUserAgentParser/DependencyInjection/HttpUserAgentParserServiceCollectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.DependencyInjection;
44
using MyCSharp.HttpUserAgentParser.Providers;

src/HttpUserAgentParser/HttpUserAgentInformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
namespace MyCSharp.HttpUserAgentParser;
44

src/HttpUserAgentParser/HttpUserAgentInformationExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
namespace MyCSharp.HttpUserAgentParser;
44

src/HttpUserAgentParser/HttpUserAgentParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using System.Diagnostics.CodeAnalysis;
44
using System.Text.RegularExpressions;

src/HttpUserAgentParser/HttpUserAgentPlatformInformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using System.Text.RegularExpressions;
44

src/HttpUserAgentParser/HttpUserAgentPlatformType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
namespace MyCSharp.HttpUserAgentParser;
44

src/HttpUserAgentParser/HttpUserAgentStatics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using System.Text.RegularExpressions;
44

src/HttpUserAgentParser/HttpUserAgentType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
namespace MyCSharp.HttpUserAgentParser;
44

src/HttpUserAgentParser/Providers/HttpUserAgentParserCachedProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using System.Collections.Concurrent;
44

src/HttpUserAgentParser/Providers/HttpUserAgentParserDefaultProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
namespace MyCSharp.HttpUserAgentParser.Providers;
44

src/HttpUserAgentParser/Providers/IHttpUserAgentParserProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
namespace MyCSharp.HttpUserAgentParser.Providers;
44

tests/HttpUserAgentParser.AspNetCore.UnitTests/DependencyInjection/HttpUserAgentParserServiceCollectionExtensionsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.DependencyInjection;
44
using MyCSharp.HttpUserAgentParser.AspNetCore.DependencyInjection;

tests/HttpUserAgentParser.AspNetCore.UnitTests/HttpContextTestHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.AspNetCore.Http;
44

tests/HttpUserAgentParser.AspNetCore.UnitTests/HttpUserAgentParserAccessorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.AspNetCore.Http;
44
using MyCSharp.HttpUserAgentParser.Providers;

tests/HttpUserAgentParser.MemoryCache.UnitTests/DependencyInjection/HttpUserAgentParserMemoryCacheServiceCollectionExtensionssTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.DependencyInjection;
44
using MyCSharp.HttpUserAgentParser.MemoryCache.DependencyInjection;

tests/HttpUserAgentParser.MemoryCache.UnitTests/HttpUserAgentParserMemoryCachedProviderOptionsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.Caching.Memory;
44
using Xunit;

tests/HttpUserAgentParser.MemoryCache.UnitTests/HttpUserAgentParserMemoryCachedProviderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Xunit;
44

tests/HttpUserAgentParser.UnitTests/DependencyInjection/HttpUserAgentParserDependencyInjectionOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.DependencyInjection;
44
using MyCSharp.HttpUserAgentParser.DependencyInjection;

tests/HttpUserAgentParser.UnitTests/DependencyInjection/HttpUserAgentParserServiceCollectionExtensionsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.Extensions.DependencyInjection;
44
using MyCSharp.HttpUserAgentParser.DependencyInjection;

tests/HttpUserAgentParser.UnitTests/HttpUserAgentInformationExtensionsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Xunit;
44

tests/HttpUserAgentParser.UnitTests/HttpUserAgentInformationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using System.Text.RegularExpressions;
44
using Xunit;

tests/HttpUserAgentParser.UnitTests/HttpUserAgentParserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Xunit;
44

tests/HttpUserAgentParser.UnitTests/HttpUserAgentPlatformInformationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using System.Text.RegularExpressions;
44
using Xunit;

tests/HttpUserAgentParser.UnitTests/HttpUserAgentPlatformTypeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Xunit;
44

tests/HttpUserAgentParser.UnitTests/HttpUserAgentTypeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Xunit;
44

tests/HttpUserAgentParser.UnitTests/Providers/HttpUserAgentParserCachedProviderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using MyCSharp.HttpUserAgentParser.Providers;
44
using Xunit;

tests/HttpUserAgentParser.UnitTests/Providers/HttpUserAgentParserDefaultProviderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © myCSharp.de - all rights reserved
1+
// Copyright © https://myCSharp.de - all rights reserved
22

33
using MyCSharp.HttpUserAgentParser.Providers;
44
using Xunit;

0 commit comments

Comments
 (0)