Skip to content

Commit 1549ca6

Browse files
Update copyright year
1 parent 3eb79c8 commit 1549ca6

File tree

13 files changed

+75
-13
lines changed

13 files changed

+75
-13
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2020 C. Augusto Proiete & Contributors
189+
Copyright 2020-2021 C. Augusto Proiete & Contributors
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,4 @@ Click on the [Releases](https://github.com/augustoproiete/serilog-sinks-notepad/
177177

178178
---
179179

180-
_Copyright © 2020 C. Augusto Proiete & Contributors - Provided under the [Apache License, Version 2.0](LICENSE)._
180+
_Copyright © 2020-2021 C. Augusto Proiete & Contributors - Provided under the [Apache License, Version 2.0](LICENSE)._

sample/ConsoleDemo/Program.cs

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
using System;
1+
#region Copyright 2020-2021 C. Augusto Proiete & Contributors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
//
15+
#endregion
16+
17+
using System;
218
using System.Threading;
319
using Serilog;
420

src/Serilog.Sinks.Notepad/NotepadLoggerConfigurationExtensions.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2020-2021 C. Augusto Proiete & Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
//
15+
#endregion
1416

1517
using System;
1618
using System.ComponentModel;

src/Serilog.Sinks.Notepad/Serilog.Sinks.Notepad.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<Authors>C. Augusto Proiete &amp; Contributors</Authors>
3333
<Company>augustoproiete.net</Company>
3434
<Description>A Serilog sink that writes log events to Notepad.</Description>
35-
<Copyright>Copyright 2018-2020 C. Augusto Proiete &amp; Contributors - Provided under the Apache License, Version 2.0</Copyright>
35+
<Copyright>Copyright 2020-2021 C. Augusto Proiete &amp; Contributors - Provided under the Apache License, Version 2.0</Copyright>
3636
<PackageTags>serilog;notepad;sink</PackageTags>
3737
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
3838
<PackageIcon>images\icon.png</PackageIcon>

src/Serilog.Sinks.Notepad/Sinks/Notepad/Interop/NotepadTextWriter.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2020-2021 C. Augusto Proiete & Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
//
15+
#endregion
1416

1517
using System;
1618
using System.Diagnostics;

src/Serilog.Sinks.Notepad/Sinks/Notepad/Interop/User32.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2020-2021 C. Augusto Proiete & Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
//
15+
#endregion
1416

1517
using System;
1618
using System.Runtime.InteropServices;

src/Serilog.Sinks.Notepad/Sinks/Notepad/NotepadSink.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2020-2021 C. Augusto Proiete & Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
//
15+
#endregion
1416

1517
using Serilog.Core;
1618
using Serilog.Formatting;

src/Serilog.Sinks.Notepad/Sinks/Notepad/NotepadWindow.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2020-2021 C. Augusto Proiete & Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
//
15+
#endregion
1416

1517
using System;
1618
using System.Runtime.InteropServices;

src/Serilog.Sinks.Notepad/Sinks/Notepad/NullSink.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2020-2021 C. Augusto Proiete & Contributors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
//
15+
#endregion
1416

1517
using Serilog.Core;
1618
using Serilog.Events;

0 commit comments

Comments
 (0)