Skip to content

Commit

Permalink
Update copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
soroshsabz committed Jan 13, 2024
1 parent 25f9966 commit dcef162
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Build/BSN.Commons.Orm.EntityFramework.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<releaseNotes>
Please see CHANGELOG.md
</releaseNotes>
<copyright>BSN Co 2019-2023</copyright>
<copyright>BSN Co 2019-2024</copyright>
<tags>Commons ORM Enterprise</tags>
<dependencies>
<dependency id="BSN.Commons" version="1.12.0" />
Expand Down
2 changes: 1 addition & 1 deletion Build/BSN.Commons.Users.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<releaseNotes>
Please see CHANGELOG.md
</releaseNotes>
<copyright>BSN Co 2019-2023</copyright>
<copyright>BSN Co 2019-2024</copyright>
<tags>Commons Users Enterprise</tags>
<dependencies>
<dependency id="BSN.Commons" version="1.12.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
[assembly: AssemblyVersion("1.14.0")]
[assembly: AssemblyFileVersion("1.14.0")]
[assembly: AssemblyInformationalVersion("1.14.0")]
[assembly: AssemblyCopyright("Copyright © 2020-2023 BSN Co.")]
[assembly: AssemblyCopyright("Copyright © 2020-2024 BSN Co.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyConfiguration("")]
[assembly: Guid("20ebda57-83dc-4557-bbd2-535cf3c6751b")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>BSN Developers</Authors>
<Company>BSN Company</Company>
<Description>ORM Helpers for using entity framework core in enterprise application</Description>
<Copyright>BSN Co 2019-2023</Copyright>
<Copyright>BSN Co 2019-2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/BSVN/Commons</PackageProjectUrl>
<RepositoryUrl>https://github.com/BSVN/Commons.git</RepositoryUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Version>1.14.0</Version>
<Authors>BSN Developers</Authors>
<Company>BSN Company</Company>
<Copyright>BSN Co 2019-2023</Copyright>
<Copyright>BSN Co 2019-2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/BSVN/Commons.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/BSVN/Commons</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion Source/BSN.Commons/BSN.Commons.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<FileVersion>1.14.0</FileVersion>
<Company>BSN Company</Company>
<Authors>BSN Developers</Authors>
<Copyright>BSN Co 2019-2023</Copyright>
<Copyright>BSN Co 2019-2024</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.14.0</Version>
<PackageProjectUrl>https://github.com/BSVN/Commons</PackageProjectUrl>
Expand Down
4 changes: 2 additions & 2 deletions Source/BSN.Commons/S3/IS3Service.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public interface IS3Service
/// <remarks>
/// There are a lots of rule on naming buckets,
/// please visit below link to keep your codes from possible miss-functioning.
/// <see cref="https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html"/>
/// <see href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html"/>
/// </remarks>
/// </summary>
/// <param name="bucketName">Bucket name.</param>
Expand All @@ -40,7 +40,7 @@ public interface IS3Service
/// <remarks>
/// There are a lots of rule on naming buckets,
/// please visit below link to keep your codes from possible miss-functioning.
/// <see cref="https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html"/>
/// <see href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html"/>
/// </remarks>
/// </summary>
/// <param name="bucketName">Bucket name.</param>
Expand Down
2 changes: 1 addition & 1 deletion Source/BSN.Commons/S3/S3Service.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public async Task<bool> CheckBucketExistanceAsync(string bucketName)

return true;
}
catch (AmazonS3Exception S3Ex)
catch (AmazonS3Exception)
{
return false;
}
Expand Down

0 comments on commit dcef162

Please sign in to comment.