Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into color-output
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Aug 20, 2021
2 parents 3324a05 + 115e189 commit 80693a3
Show file tree
Hide file tree
Showing 95 changed files with 950 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Neo.ConsoleService/CommandQuoteToken.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;
using System.Diagnostics;

Expand Down
10 changes: 10 additions & 0 deletions Neo.ConsoleService/CommandSpaceToken.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;
using System.Diagnostics;

Expand Down
10 changes: 10 additions & 0 deletions Neo.ConsoleService/CommandStringToken.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;
using System.Diagnostics;

Expand Down
10 changes: 10 additions & 0 deletions Neo.ConsoleService/CommandToken.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;
using System.Collections.Generic;
using System.Text;
Expand Down
10 changes: 10 additions & 0 deletions Neo.ConsoleService/CommandTokenType.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

namespace Neo.ConsoleService
{
internal enum CommandTokenType : byte
Expand Down
10 changes: 10 additions & 0 deletions Neo.ConsoleService/ConsoleColorSet.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;

namespace Neo.ConsoleService
Expand Down
10 changes: 10 additions & 0 deletions Neo.ConsoleService/ConsoleCommandAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;
using System.Diagnostics;
using System.Linq;
Expand Down
10 changes: 10 additions & 0 deletions Neo.ConsoleService/ConsoleCommandMethod.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
Expand Down
10 changes: 10 additions & 0 deletions Neo.ConsoleService/ConsoleServiceBase.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;
using System.Collections.Generic;
using System.Diagnostics;
Expand Down
10 changes: 10 additions & 0 deletions Neo.ConsoleService/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System.Runtime.CompilerServices;

[assembly: InternalsVisibleTo("Neo.ConsoleService.Tests")]
10 changes: 10 additions & 0 deletions Neo.ConsoleService/ServiceProxy.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The Neo.ConsoleService is free software distributed under the MIT
// software license, see the accompanying file LICENSE in the main directory
// of the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System.ServiceProcess;

namespace Neo.ConsoleService
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/ConsolePercent.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;

namespace Neo.CLI
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/Helper.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

namespace Neo.CLI
{
internal static class Helper
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.ConsoleService;
using Neo.Plugins;
using System;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.Blockchain.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.ConsoleService;
using Neo.SmartContract.Native;
using System;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.Contracts.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.ConsoleService;
using Neo.IO.Json;
using Neo.Network.P2P.Payloads;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.NEP17.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.ConsoleService;
using Neo.IO.Json;
using Neo.Network.P2P.Payloads;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.Native.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.ConsoleService;
using Neo.SmartContract.Native;
using System;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.Network.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Akka.Actor;
using Neo.ConsoleService;
using Neo.IO;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.Node.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Akka.Actor;
using Neo.ConsoleService;
using Neo.Network.P2P;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.Plugins.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.ConsoleService;
using Neo.IO.Json;
using Neo.Plugins;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.Tools.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.ConsoleService;
using Neo.IO;
using Neo.Wallets;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.Vote.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.ConsoleService;
using Neo.Cryptography.ECC;
using Neo.IO.Json;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.Wallet.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Akka.Actor;
using Neo.ConsoleService;
using Neo.Cryptography.ECC;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/CLI/MainService.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Akka.Actor;
using Neo.ConsoleService;
using Neo.Cryptography.ECC;
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/Extensions.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System.Linq;
using System.Reflection;

Expand Down
10 changes: 10 additions & 0 deletions neo-cli/Program.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.CLI;

namespace Neo
Expand Down
10 changes: 10 additions & 0 deletions neo-cli/Settings.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (C) 2016-2021 The Neo Project.
//
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Microsoft.Extensions.Configuration;
using Neo.Network.P2P;
using System.Threading;
Expand Down
Loading

0 comments on commit 80693a3

Please sign in to comment.