Skip to content

Commit 90d36a9

Browse files
authored
Merge pull request #120 from JSkimming/update-copyright
Update the copyright notices
2 parents d83e116 + aaa3eb2 commit 90d36a9

31 files changed

Lines changed: 35 additions & 33 deletions

src/Castle.Core.AsyncInterceptor/AsyncDeterminationInterceptor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2016-2020 James Skimming. All rights reserved.
1+
// Copyright (c) 2016-2021 James Skimming. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

44
namespace Castle.DynamicProxy

src/Castle.Core.AsyncInterceptor/AsyncInterceptorBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2016-2020 James Skimming. All rights reserved.
1+
// Copyright (c) 2016-2021 James Skimming. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

44
namespace Castle.DynamicProxy

src/Castle.Core.AsyncInterceptor/AsyncTimingInterceptor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2016-2020 James Skimming. All rights reserved.
1+
// Copyright (c) 2016-2021 James Skimming. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

44
namespace Castle.DynamicProxy

src/Castle.Core.AsyncInterceptor/Castle.Core.AsyncInterceptor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1313
<Authors>James Skimming</Authors>
1414
<Description>AsyncInterceptor is an extension to Castle DynamicProxy to simplify the development of interceptors for asynchronous methods.</Description>
15-
<Copyright>Copyright © 2016 James Skimming</Copyright>
15+
<Copyright>Copyright © 2016-2021 James Skimming</Copyright>
1616
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
<PackageProjectUrl>https://github.com/JSkimming/Castle.Core.AsyncInterceptor</PackageProjectUrl>
1818
<PackageIcon>castle-logo.png</PackageIcon>

src/Castle.Core.AsyncInterceptor/IAsyncInterceptor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2016-2020 James Skimming. All rights reserved.
1+
// Copyright (c) 2016-2021 James Skimming. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

44
namespace Castle.DynamicProxy

src/Castle.Core.AsyncInterceptor/NoCoverage/RethrowHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2016-2020 James Skimming. All rights reserved.
1+
// Copyright (c) 2016-2021 James Skimming. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

44
namespace Castle.DynamicProxy.NoCoverage

src/Castle.Core.AsyncInterceptor/ProcessingAsyncInterceptor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2016-2020 James Skimming. All rights reserved.
1+
// Copyright (c) 2016-2021 James Skimming. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

44
namespace Castle.DynamicProxy

src/Castle.Core.AsyncInterceptor/Properties/AssemblyInfo.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2016-2020 James Skimming. All rights reserved.
1+
// Copyright (c) 2016-2021 James Skimming. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

44
using System;
@@ -10,6 +10,8 @@
1010
// associated with an assembly.
1111
#if NET45
1212
[assembly: AssemblyTitle("Castle.Core.AsyncInterceptor .NET Framework")]
13+
#elif NET5_0
14+
[assembly: AssemblyTitle("Castle.Core.AsyncInterceptor .NET 5.0")]
1315
#else
1416
[assembly: AssemblyTitle("Castle.Core.AsyncInterceptor .NET Standard")]
1517
#endif
@@ -18,7 +20,7 @@
1820
[assembly: AssemblyConfiguration("")]
1921
[assembly: AssemblyCompany("")]
2022
[assembly: AssemblyProduct("Castle.Core.AsyncInterceptor")]
21-
[assembly: AssemblyCopyright("Copyright © 2016-2020 James Skimming")]
23+
[assembly: AssemblyCopyright("Copyright (c) 2016-2021 James Skimming. All rights reserved.")]
2224
[assembly: AssemblyTrademark("")]
2325
[assembly: AssemblyCulture("")]
2426
[assembly: CLSCompliant(true)]

src/Castle.Core.AsyncInterceptor/ProxyGeneratorExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2016-2020 James Skimming. All rights reserved.
1+
// Copyright (c) 2016-2021 James Skimming. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

44
namespace Castle.DynamicProxy

src/stylecop.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
33
"settings": {
44
"documentationRules": {
5-
"copyrightText": "Copyright (c) 2016-2020 James Skimming. All rights reserved.\nLicensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.",
5+
"copyrightText": "Copyright (c) 2016-2021 James Skimming. All rights reserved.\nLicensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.",
66
"xmlHeader": false
77
},
88
"layoutRules": {

0 commit comments

Comments
 (0)