Browse Source

Add file copyright

master
Savorboard 4 years ago
parent
commit
df3d28c92a
5 changed files with 20 additions and 5 deletions
  1. +4
    -1
      src/DotNetCore.CAP/BrokerConnectionException.cs
  2. +4
    -1
      src/DotNetCore.CAP/ICapTransaction.Base.cs
  3. +4
    -1
      src/DotNetCore.CAP/Messages/Headers.cs
  4. +4
    -1
      src/DotNetCore.CAP/Messages/Message.cs
  5. +4
    -1
      src/DotNetCore.CAP/Messages/TransportMessage.cs

+ 4
- 1
src/DotNetCore.CAP/BrokerConnectionException.cs View File

@@ -1,4 +1,7 @@
using System;
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System;

namespace DotNetCore.CAP
{


+ 4
- 1
src/DotNetCore.CAP/ICapTransaction.Base.cs View File

@@ -1,4 +1,7 @@
using System.Collections.Concurrent;
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System.Collections.Concurrent;
using System.Threading;
using System.Threading.Tasks;
using DotNetCore.CAP.Persistence;


+ 4
- 1
src/DotNetCore.CAP/Messages/Headers.cs View File

@@ -1,4 +1,7 @@
namespace DotNetCore.CAP.Messages
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

namespace DotNetCore.CAP.Messages
{
public static class Headers
{


+ 4
- 1
src/DotNetCore.CAP/Messages/Message.cs View File

@@ -1,4 +1,7 @@
using System;
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System;
using System.Collections.Generic;
using JetBrains.Annotations;



+ 4
- 1
src/DotNetCore.CAP/Messages/TransportMessage.cs View File

@@ -1,4 +1,7 @@
using System;
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System;
using System.Collections.Generic;
using JetBrains.Annotations;



Loading…
Cancel
Save