Skip to content

Commit e792b6c

Browse files
author
Meerow
authored
Bump copyright and update editor config
Bump copyright and update editor config
2 parents dade489 + af766f5 commit e792b6c

File tree

465 files changed

+1311
-1846
lines changed

Some content is hidden

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

465 files changed

+1311
-1846
lines changed

.editorconfig

+9-5
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,26 @@
33
# top-most EditorConfig file
44
root = true
55

6-
# Don't use tabs for indentation.
6+
77
[*]
8+
charset = utf-8
9+
end_of_line = lf
810
indent_style = space
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
913

1014
# Code files
1115
[*.{cs,csx,vb,vbx}]
1216
indent_size = 4
13-
insert_final_newline = true
17+
1418
csharp_space_after_keywords_in_control_flow_statements = true
1519

1620
# Cake build script
1721
[*.cake]
1822
indent_size = 4
1923

20-
# Appveyor cofinguration
21-
[*.yml]
24+
# Appveyor configuration
25+
[*.{yml,yaml}]
2226
indent_size = 2
2327

2428
# Xml project files
@@ -31,4 +35,4 @@ indent_size = 2
3135

3236
# JSON files
3337
# [*.json]
34-
# indent_size = 2
38+
# indent_size = 2

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#------------------------------------------------------------#
22
# CI Build Configuration for master branch pre-release #
33
#------------------------------------------------------------#
4-
version: 1.0.0.{build}
4+
version: "{build}"
55
image: Visual Studio 2019
66
configuration: Release
77
environment:

build.cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var configuration = "Release";
1313
///////////////////////////////////////////////////////////////////////////////
1414
var buildArtifacts = Directory("./artifacts");
1515
var deployment = Directory("./artifacts/deployment");
16-
var version = "2.2.0";
16+
var version = "1.0.0";
1717

1818
///////////////////////////////////////////////////////////////////////////////
1919
// MODULES

src/Yaapii.Atoms/Bytes/Base64Bytes.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Bytes/BytesAsInput.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,6 @@
2222

2323
using System;
2424
using System.IO;
25-
using Yaapii.Atoms.IO;
2625

2726
namespace Yaapii.Atoms.Bytes
2827
{

src/Yaapii.Atoms/Bytes/BytesBase64.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -21,7 +21,6 @@
2121
// SOFTWARE.
2222

2323
using System;
24-
using System.Collections.Generic;
2524
using System.Text;
2625
using Yaapii.Atoms.Scalar;
2726

src/Yaapii.Atoms/Bytes/BytesEqual.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Bytes/BytesOf.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -25,7 +25,6 @@
2525
using System.IO;
2626
using System.Linq;
2727
using System.Text;
28-
using Yaapii.Atoms.Bytes;
2928
using Yaapii.Atoms.Scalar;
3029

3130
#pragma warning disable MaxClassLength // Class length max

src/Yaapii.Atoms/Bytes/EmptyBytes.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Bytes/HexBytes.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Bytes/InputAsBytes.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Bytes/LiveBytes.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Bytes/ReaderAsBytes.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -60,7 +60,7 @@ public ReaderAsBytes(StringReader rdr, int max = 16 << 10) : this(() =>
6060
writer.Flush();
6161
stream.Position = 0;
6262
return new StreamReader(stream);
63-
},
63+
},
6464
Encoding.UTF8, max)
6565
{ }
6666

@@ -97,7 +97,7 @@ private ReaderAsBytes(Func<StreamReader> rdr, Encoding enc, int max = 16 << 10)
9797
/// <param name="max">maximum buffer size</param>
9898
public ReaderAsBytes(IScalar<StreamReader> rdr, Encoding enc, int max)
9999
{
100-
this._reader = new ScalarOf<StreamReader>(rdr, reader=> !reader.BaseStream.CanRead);
100+
this._reader = new ScalarOf<StreamReader>(rdr, reader => !reader.BaseStream.CanRead);
101101
this._encoding = enc;
102102
this._size = max;
103103
}

src/Yaapii.Atoms/Collection/ArrayListAsCollection.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,6 @@
2222

2323
using System.Collections;
2424
using System.Collections.Concurrent;
25-
using System.Collections.Generic;
2625
using Yaapii.Atoms.Scalar;
2726

2827
namespace Yaapii.Atoms.Collection

src/Yaapii.Atoms/Collection/CollectionEnvelope.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Collection/CollectionOf.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Collection/Filtered.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -43,7 +43,7 @@ public sealed class Filtered<T> : CollectionEnvelope<T>
4343
public Filtered(Func<T, Boolean> func, T item1, T item2, params T[] items) :
4444
this(
4545
func,
46-
new LiveMany<T>(() =>
46+
new LiveMany<T>(() =>
4747
new Enumerable.Joined<T>(
4848
new ManyOf<T>(
4949
item1,
@@ -69,7 +69,7 @@ public Filtered(Func<T, Boolean> func, T item1, T item2, params T[] items) :
6969
/// <param name="func">filter func</param>
7070
/// <param name="src">items to filter</param>
7171
public Filtered(Func<T, Boolean> func, IEnumerable<T> src) : base(
72-
new Live<ICollection<T>>(() =>
72+
new Live<ICollection<T>>(() =>
7373
new LiveCollection<T>(
7474
new Enumerable.Filtered<T>(
7575
func, src
@@ -81,4 +81,4 @@ public Filtered(Func<T, Boolean> func, IEnumerable<T> src) : base(
8181
{ }
8282

8383
}
84-
}
84+
}

src/Yaapii.Atoms/Collection/HeadOf.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Collection/Joined.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Collection/LiveCollection.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Collection/Mapped.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Collection/NotEmpty.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Collection/Reversed.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Collection/Solid.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -58,7 +58,7 @@ public Solid(IEnumerable<T> src) : this(new LiveCollection<T>(src))
5858
/// </summary>
5959
/// <param name="src">source collection</param>
6060
public Solid(ICollection<T> src) : base(
61-
() =>
61+
() =>
6262
new Sync<T>(
6363
src
6464
),

src/Yaapii.Atoms/Collection/Sorted.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -23,7 +23,6 @@
2323
using System;
2424
using System.Collections.Generic;
2525
using Yaapii.Atoms.Enumerable;
26-
using Yaapii.Atoms.List;
2726

2827
namespace Yaapii.Atoms.Collection
2928
{

src/Yaapii.Atoms/Collection/Sync.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -83,4 +83,4 @@ public Sync(object syncRoot, ICollection<T> col) : base(
8383
)
8484
{ }
8585
}
86-
}
86+
}

src/Yaapii.Atoms/Enumerable/Contains.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

src/Yaapii.Atoms/Enumerable/Cycled.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal
@@ -46,4 +46,4 @@ public Cycled(IEnumerable<T> enumerable) : base(() =>
4646
{ }
4747
}
4848
}
49-
#pragma warning restore NoGetOrSet // No Statics
49+
#pragma warning restore NoGetOrSet // No Statics

src/Yaapii.Atoms/Enumerable/Distinct.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// MIT License
1+
// MIT License
22
//
3-
// Copyright(c) 2020 ICARUS Consulting GmbH
3+
// Copyright(c) 2021 ICARUS Consulting GmbH
44
//
55
// Permission is hereby granted, free of charge, to any person obtaining a copy
66
// of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)