Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

headers .cs #247

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion src/AasCore.Aas3_0/Attributes/CountForHash.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using System;
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

using System;

namespace AasCore.Aas3_0.Attributes
{
Expand Down
15 changes: 14 additions & 1 deletion src/AasCore.Aas3_0/Attributes/MetaModelName.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
namespace AasCore.Aas3_0.Attributes
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

namespace AasCore.Aas3_0.Attributes
{
/// <summary>
/// This attribute indicates, that the field / property is searchable
Expand Down
15 changes: 14 additions & 1 deletion src/AasCore.Aas3_0/Attributes/SkipForReflection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
namespace AasCore.Aas3_0.Attributes
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

namespace AasCore.Aas3_0.Attributes
{
/// <summary>
/// This attribute indicates, that the field / property shall be skipped for reflection
Expand Down
15 changes: 14 additions & 1 deletion src/AasCore.Aas3_0/Attributes/SkipForSearch.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
namespace AasCore.Aas3_0.Attributes
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

namespace AasCore.Aas3_0.Attributes
{
/// <summary>
/// This attribute indicates, that the field / property shall be skipped for searching, because it is not
Expand Down
15 changes: 14 additions & 1 deletion src/AasCore.Aas3_0/Attributes/TextSearchable.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
namespace AasCore.Aas3_0.Attributes
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

namespace AasCore.Aas3_0.Attributes
{
/// <summary>
/// This attribute indicates, that the field / property is searchable
Expand Down
15 changes: 14 additions & 1 deletion src/AasCore.Aas3_0/DiaryData/DiaryDataDef.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using AasCore.Aas3_0;
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

using AasCore.Aas3_0;
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
Expand Down
15 changes: 14 additions & 1 deletion src/AasCore.Aas3_0/DiaryData/IAasDiaryEntry.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
namespace AdminShellNS.DiaryData
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

namespace AdminShellNS.DiaryData
{
public interface IAasDiaryEntry
{
Expand Down
15 changes: 14 additions & 1 deletion src/AasCore.Aas3_0/DiaryData/IDiaryData.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using System;
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down
13 changes: 13 additions & 0 deletions src/AasCore.Aas3_0/constants.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

/*
* This code has been automatically generated by aas-core-codegen.
* Do NOT edit or append.
Expand Down
13 changes: 13 additions & 0 deletions src/AasCore.Aas3_0/copying.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

/*
* This code has been automatically generated by aas-core-codegen.
* Do NOT edit or append.
Expand Down
13 changes: 13 additions & 0 deletions src/AasCore.Aas3_0/jsonization.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

/*
* This code has been automatically generated by aas-core-codegen.
* Do NOT edit or append.
Expand Down
13 changes: 13 additions & 0 deletions src/AasCore.Aas3_0/reporting.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

/*
* This code has been automatically generated by aas-core-codegen.
* Do NOT edit or append.
Expand Down
13 changes: 13 additions & 0 deletions src/AasCore.Aas3_0/stringification.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

/*
* This code has been automatically generated by aas-core-codegen.
* Do NOT edit or append.
Expand Down
13 changes: 13 additions & 0 deletions src/AasCore.Aas3_0/types.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

/*
* This code has been automatically generated by aas-core-codegen.
* Do NOT edit or append.
Expand Down
13 changes: 13 additions & 0 deletions src/AasCore.Aas3_0/verification.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

/*
* This code has been automatically generated by aas-core-codegen.
* Do NOT edit or append.
Expand Down
13 changes: 13 additions & 0 deletions src/AasCore.Aas3_0/visitation.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

/*
* This code has been automatically generated by aas-core-codegen.
* Do NOT edit or append.
Expand Down
13 changes: 13 additions & 0 deletions src/AasCore.Aas3_0/xmlization.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

/*
* This code has been automatically generated by aas-core-codegen.
* Do NOT edit or append.
Expand Down
13 changes: 13 additions & 0 deletions src/AasxCsharpLibrary.Tests/DocTestAdminShellUtil.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

// This file was automatically generated by doctest-csharp.
// !!! DO NOT EDIT OR APPEND !!!

Expand Down
13 changes: 13 additions & 0 deletions src/AasxCsharpLibrary.Tests/TemporaryDirectory.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

using IDisposable = System.IDisposable;

namespace AdminShellNS.Tests
Expand Down
13 changes: 13 additions & 0 deletions src/AasxCsharpLibrary.Tests/TestAdminShellUtil.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

using NUnit.Framework;

namespace AdminShellNS.Tests
Expand Down
15 changes: 14 additions & 1 deletion src/AasxCsharpLibrary.Tests/TestAgainstAasCorePackage.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using System;
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

using System;
using System.IO;
using System.Linq;
using System.Text;
Expand Down
15 changes: 14 additions & 1 deletion src/AasxCsharpLibrary.Tests/TestLoadSaveChain.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using System.Collections.Generic;
/********************************************************************************
* Copyright (c) {2019 - 2024} Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using Environment = System.Environment;
Expand Down
Loading
Loading