From 40b2cad598679275b0d0ef0a78a750e67f98a086 Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 20 Jan 2026 15:52:41 +0100 Subject: [PATCH] Add EnvelopeGenerator.Jobs project to the solution Added new EnvelopeGenerator.Jobs project targeting .NET 8.0, with initial Class1.cs placeholder. Updated solution file to include the project with appropriate build configurations and solution folder nesting. --- EnvelopeGenerator.Jobs/Class1.cs | 7 +++++++ EnvelopeGenerator.Jobs/EnvelopeGenerator.Jobs.csproj | 9 +++++++++ EnvelopeGenerator.sln | 7 +++++++ 3 files changed, 23 insertions(+) create mode 100644 EnvelopeGenerator.Jobs/Class1.cs create mode 100644 EnvelopeGenerator.Jobs/EnvelopeGenerator.Jobs.csproj diff --git a/EnvelopeGenerator.Jobs/Class1.cs b/EnvelopeGenerator.Jobs/Class1.cs new file mode 100644 index 00000000..aaa0640b --- /dev/null +++ b/EnvelopeGenerator.Jobs/Class1.cs @@ -0,0 +1,7 @@ +namespace EnvelopeGenerator.Jobs +{ + public class Class1 + { + + } +} diff --git a/EnvelopeGenerator.Jobs/EnvelopeGenerator.Jobs.csproj b/EnvelopeGenerator.Jobs/EnvelopeGenerator.Jobs.csproj new file mode 100644 index 00000000..fa71b7ae --- /dev/null +++ b/EnvelopeGenerator.Jobs/EnvelopeGenerator.Jobs.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/EnvelopeGenerator.sln b/EnvelopeGenerator.sln index b4db47b9..ed12cb43 100644 --- a/EnvelopeGenerator.sln +++ b/EnvelopeGenerator.sln @@ -37,6 +37,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnvelopeGenerator.PdfEditor EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnvelopeGenerator.Tests", "EnvelopeGenerator.Tests\EnvelopeGenerator.Tests.csproj", "{224C4845-1CDE-22B7-F3A9-1FF9297F70E8}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EnvelopeGenerator.Jobs", "EnvelopeGenerator.Jobs\EnvelopeGenerator.Jobs.csproj", "{3D0514EA-2681-4B13-AD71-35CC6363DBD7}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -91,6 +93,10 @@ Global {224C4845-1CDE-22B7-F3A9-1FF9297F70E8}.Debug|Any CPU.Build.0 = Debug|Any CPU {224C4845-1CDE-22B7-F3A9-1FF9297F70E8}.Release|Any CPU.ActiveCfg = Release|Any CPU {224C4845-1CDE-22B7-F3A9-1FF9297F70E8}.Release|Any CPU.Build.0 = Release|Any CPU + {3D0514EA-2681-4B13-AD71-35CC6363DBD7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3D0514EA-2681-4B13-AD71-35CC6363DBD7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3D0514EA-2681-4B13-AD71-35CC6363DBD7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3D0514EA-2681-4B13-AD71-35CC6363DBD7}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -111,6 +117,7 @@ Global {6D56C01F-D6CB-4D8A-BD3D-4FD34326998C} = {E3C758DC-914D-4B7E-8457-0813F1FDB0CB} {211619F5-AE25-4BA5-A552-BACAFE0632D3} = {9943209E-1744-4944-B1BA-4F87FC1A0EEB} {224C4845-1CDE-22B7-F3A9-1FF9297F70E8} = {0CBC2432-A561-4440-89BC-671B66A24146} + {3D0514EA-2681-4B13-AD71-35CC6363DBD7} = {9943209E-1744-4944-B1BA-4F87FC1A0EEB} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {73E60370-756D-45AD-A19A-C40A02DACCC7}