Skip to content

Commit fc67e59

Browse files
Update copyright header year, etc.
1 parent 530c26a commit fc67e59

File tree

15 files changed

+39
-17
lines changed

15 files changed

+39
-17
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 {yyyy} {name of copyright owner}
189+
Copyright 2018-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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The parameters that can be set through the `serilog:write-to:ExcelDnaLogDisplay`
8181
The Excel-DNA LogDisplay sink creates events in a fixed text format by default:
8282

8383
```
84-
2018-09-07 09:02:17.148 -03:00 [INF] HTTP GET / responded 200 in 1994 ms
84+
2021-09-07 09:02:17.148 -03:00 [INF] HTTP GET / responded 200 in 1994 ms
8585
```
8686

8787
The format is controlled using an _output template_, which the Excel-DNA LogDisplay sink configuration method accepts as an `outputTemplate` parameter.
@@ -128,4 +128,4 @@ Click on the [Releases](https://github.com/augustoproiete/serilog-sinks-exceldna
128128

129129
---
130130

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

sample/SampleAddIn/AddIn.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2018-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.Linq;

sample/SampleAddIn/Functions.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2018-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 ExcelDna.Integration;
1618
using Serilog;

sample/SampleAddIn/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
[assembly: AssemblyCompany("augustoproiete.net")]
1717
[assembly: AssemblyProduct("SampleAddIn")]
18-
[assembly: AssemblyCopyright("Copyright 2018-2020 C. Augusto Proiete & Contributors")]
18+
[assembly: AssemblyCopyright("Copyright 2018-2021 C. Augusto Proiete & Contributors")]
1919
[assembly: AssemblyTrademark("")]
2020
[assembly: AssemblyCulture("")]
2121

sample/SampleAddIn/Ribbon.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2018-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.IO;

src/Serilog.Sinks.ExcelDnaLogDisplay/ExcelDnaLogDisplayConfigurationExtensions.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2018-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.ExcelDnaLogDisplay/Serilog.Sinks.ExcelDnaLogDisplay.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
<Authors>C. Augusto Proiete &amp; Contributors</Authors>
3434
<Company>augustoproiete.net</Company>
3535
<Description>A Serilog sink that writes events to Excel-DNA LogDisplay.</Description>
36-
<Copyright>Copyright 2018-2020 C. Augusto Proiete &amp; Contributors - Provided under the Apache License, Version 2.0</Copyright>
36+
<Copyright>Copyright 2018-2021 C. Augusto Proiete &amp; Contributors - Provided under the Apache License, Version 2.0</Copyright>
3737
<PackageTags>serilog;sink;exceldna;excel-dna;logdisplay;excel</PackageTags>
3838
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
3939
<PackageIcon>images\icon.png</PackageIcon>
4040
<PackageIconUrl>https://raw.githubusercontent.com/augustoproiete/serilog-sinks-exceldnalogdisplay/master/assets/serilog-sinks-exceldnalogdisplay-nuget.png</PackageIconUrl>
4141
<PackageProjectUrl>https://github.com/augustoproiete/serilog-sinks-exceldnalogdisplay</PackageProjectUrl>
4242
<PackageReleaseNotes>https://github.com/augustoproiete/serilog-sinks-exceldnalogdisplay/releases</PackageReleaseNotes>
4343
<RepositoryType>git</RepositoryType>
44-
<RepositoryUrl>https://github.com/augustoproiete/serilog-sinks-exceldnalogdisplay</RepositoryUrl>
44+
<RepositoryUrl>https://github.com/augustoproiete/serilog-sinks-exceldnalogdisplay.git</RepositoryUrl>
4545
</PropertyGroup>
4646

4747
<PropertyGroup>

src/Serilog.Sinks.ExcelDnaLogDisplay/Sinks/ExcelDnaLogDisplay/ExcelDnaLogDisplaySink.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2018-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;

test/Serilog.Sinks.ExcelDnaLogDisplay.Tests/LogDisplayConfigurationExtensionsTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 C. Augusto Proiete & Contributors
1+
#region Copyright 2018-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 Serilog.Sinks.ExcelDnaLogDisplay.Tests.Support;

0 commit comments

Comments
 (0)