Skip to content

Update copyright notices and editorconfig settings #68

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

Merged
merged 1 commit into from
Apr 13, 2025
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
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ indent_size = 2
# Code files
[*.{cs,csx,vb,vbx}]
indent_size = 4
file_header_template = Copyright © https://myCSharp.de - all rights reserved

# Organize usings
dotnet_sort_system_directives_first = true
Expand Down
10 changes: 0 additions & 10 deletions MyCSharp.HttpUserAgentParser.sln
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,6 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{45927CF7-1BF4-479B-BBAA-8AD9CA901AE4} = {008A2BAB-78B4-42EB-A5D4-DE434438CEF0}
{3357BEC0-8216-409E-A539-F9A71DBACB81} = {008A2BAB-78B4-42EB-A5D4-DE434438CEF0}
{F16697F7-74B4-441D-A0C0-1A0572AC3AB0} = {F54C9296-4EF7-40F0-9F20-F23A2270ABC9}
{75960783-8BF9-479C-9ECF-E9653B74C9A2} = {F54C9296-4EF7-40F0-9F20-F23A2270ABC9}
{3C8CCD44-F47C-4624-8997-54C42F02E376} = {008A2BAB-78B4-42EB-A5D4-DE434438CEF0}
{39FC1EC2-2AD3-411F-A545-AB6CCB94FB7E} = {F54C9296-4EF7-40F0-9F20-F23A2270ABC9}
{A0D213E9-6408-46D1-AFAF-5096C2F6E027} = {FAAD18A0-E1B8-448D-B611-AFBDA8A89808}
{165EE915-1A4F-4875-90CE-1A2AE1540AE7} = {F54C9296-4EF7-40F0-9F20-F23A2270ABC9}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E8B0C994-0BF2-4692-9E22-E48B265B2804}
EndGlobalSection
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Jobs;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Columns;
Expand Down
2 changes: 1 addition & 1 deletion perf/HttpUserAgentParser.Benchmarks/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using System.Reflection;
using BenchmarkDotNet.Configs;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.DependencyInjection;
using MyCSharp.HttpUserAgentParser.DependencyInjection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Primitives;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.AspNetCore.Http;
using MyCSharp.HttpUserAgentParser.Providers;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.AspNetCore.Http;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.DependencyInjection;
using MyCSharp.HttpUserAgentParser.DependencyInjection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.Caching.Memory;
using MyCSharp.HttpUserAgentParser.Providers;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.Caching.Memory;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.DependencyInjection;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.DependencyInjection;
using MyCSharp.HttpUserAgentParser.Providers;
Expand Down
2 changes: 1 addition & 1 deletion src/HttpUserAgentParser/HttpUserAgentInformation.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

namespace MyCSharp.HttpUserAgentParser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

namespace MyCSharp.HttpUserAgentParser;

Expand Down
2 changes: 1 addition & 1 deletion src/HttpUserAgentParser/HttpUserAgentParser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using System.Diagnostics.CodeAnalysis;
using System.Text.RegularExpressions;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using System.Text.RegularExpressions;

Expand Down
2 changes: 1 addition & 1 deletion src/HttpUserAgentParser/HttpUserAgentPlatformType.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

namespace MyCSharp.HttpUserAgentParser;

Expand Down
2 changes: 1 addition & 1 deletion src/HttpUserAgentParser/HttpUserAgentStatics.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using System.Text.RegularExpressions;

Expand Down
2 changes: 1 addition & 1 deletion src/HttpUserAgentParser/HttpUserAgentType.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

namespace MyCSharp.HttpUserAgentParser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using System.Collections.Concurrent;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

namespace MyCSharp.HttpUserAgentParser.Providers;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

namespace MyCSharp.HttpUserAgentParser.Providers;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.DependencyInjection;
using MyCSharp.HttpUserAgentParser.AspNetCore.DependencyInjection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.AspNetCore.Http;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.AspNetCore.Http;
using MyCSharp.HttpUserAgentParser.Providers;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.DependencyInjection;
using MyCSharp.HttpUserAgentParser.MemoryCache.DependencyInjection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.Caching.Memory;
using Xunit;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Xunit;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.DependencyInjection;
using MyCSharp.HttpUserAgentParser.DependencyInjection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.Extensions.DependencyInjection;
using MyCSharp.HttpUserAgentParser.DependencyInjection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Xunit;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using System.Text.RegularExpressions;
using Xunit;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Xunit;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using System.Text.RegularExpressions;
using Xunit;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Xunit;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using Xunit;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using MyCSharp.HttpUserAgentParser.Providers;
using Xunit;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © myCSharp.de - all rights reserved
// Copyright © https://myCSharp.de - all rights reserved

using MyCSharp.HttpUserAgentParser.Providers;
using Xunit;
Expand Down