Skip to content

Commit 39eba37

Browse files
committed
Added the copy right attributions to all folders. #1299
1 parent e8d4ad0 commit 39eba37

2,531 files changed

Lines changed: 23700 additions & 1436 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/BaseBenchmark.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
using System.Data;
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2021 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
using System.Data;
210
using BenchmarkDotNet.Attributes;
311
using Npgsql;
412
using RepoDb.Benchmarks.PostgreSql.Configurations;

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/Configurations/BenchmarkConfig.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
using BenchmarkDotNet.Columns;
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2020 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
using BenchmarkDotNet.Columns;
210
using BenchmarkDotNet.Configs;
311
using BenchmarkDotNet.Diagnosers;
412
using BenchmarkDotNet.Environments;

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/Configurations/BenchmarkConfigWitRows.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
using BenchmarkDotNet.Columns;
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2020 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
using BenchmarkDotNet.Columns;
210

311
namespace RepoDb.Benchmarks.PostgreSql.Configurations
412
{

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/Configurations/DefaultConstants.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
namespace RepoDb.Benchmarks.PostgreSql.Configurations
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2020 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
namespace RepoDb.Benchmarks.PostgreSql.Configurations
210
{
311
public class DefaultConstants
412
{

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/Configurations/OrmColum.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
using System.ComponentModel;
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2020 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
using System.ComponentModel;
210
using System.Reflection;
311
using BenchmarkDotNet.Columns;
412
using BenchmarkDotNet.Reports;

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/Configurations/OrmNameConstants.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
namespace RepoDb.Benchmarks.PostgreSql.Configurations
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2021 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
namespace RepoDb.Benchmarks.PostgreSql.Configurations
210
{
311
public static class OrmNameConstants
412
{

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/Dapper/DapperBaseBenchmarks.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
using System.ComponentModel;
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2021 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
using System.ComponentModel;
210
using BenchmarkDotNet.Attributes;
311
using Dapper;
412
using RepoDb.Benchmarks.PostgreSql.Configurations;

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/Dapper/GetAllDapperBenchmarks.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
using BenchmarkDotNet.Attributes;
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2021 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
using BenchmarkDotNet.Attributes;
210
using BenchmarkDotNet.Engines;
311
using Dapper;
412
using Dapper.Contrib.Extensions;

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/Dapper/GetFirstDapperBenchmarks.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
using System.Linq;
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2021 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
using System.Linq;
210
using BenchmarkDotNet.Attributes;
311
using Dapper;
412
using RepoDb.Benchmarks.PostgreSql.Models;

RepoDb.Benchmarks/RepoDb.Benchmarks.PostgreSql/Dapper/UpdateAllDapperBenchmarks.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
using System;
1+
#region Copyright Attributions
2+
3+
// Copyright (c) 2021 SergerGood and Michael Camara Pendon.
4+
// Licensed under the Apache License, Version 2.0.
5+
// See the LICENSE file in the project root for full license information.
6+
7+
#endregion
8+
9+
using System;
210
using System.Collections.Generic;
311
using System.Linq;
412
using BenchmarkDotNet.Attributes;

0 commit comments

Comments
 (0)