Skip to content

Commit

Permalink
Merge pull request #1 from smdn/add-license-info
Browse files Browse the repository at this point in the history
Add SPDX info that describes the original copyright holder and license to the source files.
See also the initial commit (9768cf0) for the information about the original copyright holder and license.
  • Loading branch information
smdn authored Mar 24, 2024
2 parents b591b4c + 47dc1ea commit 07b30a0
Show file tree
Hide file tree
Showing 99 changed files with 303 additions and 91 deletions.
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/ApplicationService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Newtonsoft.Json;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

namespace EchoDotNetLite.Specifications
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/EchoClass.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Newtonsoft.Json;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;

namespace EchoDotNetLite.Specifications
{
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/EchoClassGroup.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Newtonsoft.Json;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
SPDX-FileCopyrightText: 2018 HiroyukiSakoh
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/EchoProperty.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Newtonsoft.Json;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
using System.Collections.Generic;

namespace EchoDotNetLite.Specifications
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/EchonetObject.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Newtonsoft.Json;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/IEchonetObject.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System.Collections.Generic;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System.Collections.Generic;

namespace EchoDotNetLite.Specifications
{
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/JsonConverter.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Newtonsoft.Json;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/PropertyMaster.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System.Collections.Generic;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System.Collections.Generic;

namespace EchoDotNetLite.Specifications
{
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/SpecificationMaster.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Newtonsoft.Json;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/プロファイル.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System.Collections.Generic;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System.Collections.Generic;

namespace EchoDotNetLite.Specifications
{
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite.Specifications/機器.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System.Collections.Generic;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System.Collections.Generic;

namespace EchoDotNetLite.Specifications
{
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Client.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite.Common;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite.Common;
using EchoDotNetLite.Enums;
using EchoDotNetLite.Models;
using Microsoft.Extensions.Logging;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Common/CollectionChangeType.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;

Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Common/Extentions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite.Models;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite.Models;
using System;
using System.Collections.Generic;
using System.Text;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Common/INotifyCollectionChanged.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;

Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Common/NotifyChangeCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
Expand Down
4 changes: 4 additions & 0 deletions EchoDotNetLite/EchoDotNetLite.csproj
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
SPDX-FileCopyrightText: 2018 HiroyukiSakoh
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Enums/EHD1.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;

Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Enums/EHD2.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;

Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Enums/ESV.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;

Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/FrameSerializer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite.Enums;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite.Enums;
using EchoDotNetLite.Models;
using System;
using System.Collections.Generic;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/IPANAClient.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/BytesConvert.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;

Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/EDATA1.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite.Enums;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite.Enums;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/EDATA2.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;

Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/EOJ.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite.Enums;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite.Enums;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/EchoNode.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite.Common;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite.Common;
using EchoDotNetLite.Specifications;
using System;
using System.Collections;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/EchoObjectInstance.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/EchoPropertyInstance.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/Frame.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite.Enums;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite.Enums;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/IEDATA.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;

Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLite/Models/PropertyRequest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Newtonsoft.Json;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
SPDX-FileCopyrightText: 2018 HiroyukiSakoh
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLiteLANBridge.Example/Example.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using BitConverter;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using BitConverter;
using EchoDotNetLite;
using EchoDotNetLite.Common;
using EchoDotNetLite.Models;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLiteLANBridge.Example/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
Expand Down
4 changes: 4 additions & 0 deletions EchoDotNetLiteLANBridge/EchoDotNetLiteLANBridge.csproj
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
SPDX-FileCopyrightText: 2018 HiroyukiSakoh
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLiteLANBridge/LANClient.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite;
using EchoDotNetLite.Models;
using Microsoft.Extensions.Logging;
using System;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
SPDX-FileCopyrightText: 2018 HiroyukiSakoh
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLiteSkstackIpBridge.Example/Example.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using BitConverter;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using BitConverter;
using EchoDotNetLite;
using EchoDotNetLite.Common;
using EchoDotNetLite.Models;
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLiteSkstackIpBridge.Example/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite;
using EchoDotNetLite.Common;
using EchoDotNetLite.Models;
using Microsoft.Extensions.Configuration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
SPDX-FileCopyrightText: 2018 HiroyukiSakoh
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
Expand Down
4 changes: 3 additions & 1 deletion EchoDotNetLiteSkstackIpBridge/SkstackIpPANAClient.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using EchoDotNetLite;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using EchoDotNetLite;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using SkstackIpDotNet;
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018
Copyright (c) 2018 HiroyukiSakoh

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 3 additions & 1 deletion SkstackIpDotNet/SkstackIpDotNet.Example/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using Microsoft.Extensions.Configuration;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using System;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<!--
SPDX-FileCopyrightText: 2018 HiroyukiSakoh
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
Expand Down
4 changes: 3 additions & 1 deletion SkstackIpDotNet/SkstackIpDotNet/BytesConvert.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.Text;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using SkstackIpDotNet.Responses;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using SkstackIpDotNet.Responses;
using System;
using System.IO;
using System.Text;
Expand Down
4 changes: 3 additions & 1 deletion SkstackIpDotNet/SkstackIpDotNet/Commands/SKAddNbrCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System.Text;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System.Text;

namespace SkstackIpDotNet.Commands
{
Expand Down
4 changes: 3 additions & 1 deletion SkstackIpDotNet/SkstackIpDotNet/Commands/SKCloseCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System.Text;
// SPDX-FileCopyrightText: 2018 HiroyukiSakoh
// SPDX-License-Identifier: MIT
using System.Text;

namespace SkstackIpDotNet.Commands
{
Expand Down
Loading

0 comments on commit 07b30a0

Please sign in to comment.