From ae6ed5c5fe792ee6481d3cb9f66e0629c620c3f0 Mon Sep 17 00:00:00 2001 From: Whit Waldo Date: Wed, 30 Oct 2024 14:13:24 -0500 Subject: [PATCH] Added copyright headers Signed-off-by: Whit Waldo --- examples/Workflow/WorkflowSubWorkflow/Program.cs | 15 ++++++++++++++- .../Workflows/DemoSubWorkflow.cs | 15 ++++++++++++++- .../WorkflowSubWorkflow/Workflows/DemoWorkflow.cs | 15 ++++++++++++++- 3 files changed, 42 insertions(+), 3 deletions(-) diff --git a/examples/Workflow/WorkflowSubWorkflow/Program.cs b/examples/Workflow/WorkflowSubWorkflow/Program.cs index 259edb5a..b3e71537 100644 --- a/examples/Workflow/WorkflowSubWorkflow/Program.cs +++ b/examples/Workflow/WorkflowSubWorkflow/Program.cs @@ -1,4 +1,17 @@ -using Dapr.Workflow; +// ------------------------------------------------------------------------ +// Copyright 2024 The Dapr Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ------------------------------------------------------------------------ + +using Dapr.Workflow; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using WorkflowSubWorkflow.Workflows; diff --git a/examples/Workflow/WorkflowSubWorkflow/Workflows/DemoSubWorkflow.cs b/examples/Workflow/WorkflowSubWorkflow/Workflows/DemoSubWorkflow.cs index 11b9b99c..9d9c0266 100644 --- a/examples/Workflow/WorkflowSubWorkflow/Workflows/DemoSubWorkflow.cs +++ b/examples/Workflow/WorkflowSubWorkflow/Workflows/DemoSubWorkflow.cs @@ -1,4 +1,17 @@ -using Dapr.Workflow; +// ------------------------------------------------------------------------ +// Copyright 2024 The Dapr Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ------------------------------------------------------------------------ + +using Dapr.Workflow; namespace WorkflowSubWorkflow.Workflows; diff --git a/examples/Workflow/WorkflowSubWorkflow/Workflows/DemoWorkflow.cs b/examples/Workflow/WorkflowSubWorkflow/Workflows/DemoWorkflow.cs index 90a47e74..9fb0d635 100644 --- a/examples/Workflow/WorkflowSubWorkflow/Workflows/DemoWorkflow.cs +++ b/examples/Workflow/WorkflowSubWorkflow/Workflows/DemoWorkflow.cs @@ -1,4 +1,17 @@ -using Dapr.Workflow; +// ------------------------------------------------------------------------ +// Copyright 2024 The Dapr Authors +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ------------------------------------------------------------------------ + +using Dapr.Workflow; namespace WorkflowSubWorkflow.Workflows;