Add Application and Infrastructure projects to solution
Two new projects, `ECMJobRunner.Application` and `ECMJobRunner.Infrastructure`, were added to the solution file (`ECM.JobRunner.sln`). Build configurations for these projects were also added. `ECMJobRunner.Application.csproj` targets both .NET Framework 4.8 and .NET 8.0, with properties such as `LangVersion`, `Nullable`, and `PackageId` defined. `ECMJobRunner.Infrastructure.csproj` also targets .NET Framework 4.8 and .NET 8.0. It includes conditional dependencies: - For `net480`, it references `EntityFramework` 6.5.1. - For `net8.0`, it references `Microsoft.EntityFrameworkCore` and related packages (version 8.0.11).
This commit is contained in:
17
ECMJobRunner.Application/ECMJobRunner.Application.csproj
Normal file
17
ECMJobRunner.Application/ECMJobRunner.Application.csproj
Normal file
@@ -0,0 +1,17 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net480;net8.0</TargetFrameworks>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<Nullable>enable</Nullable>
|
||||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(MSBuildProjectName).xml</DocumentationFile>
|
||||
<PackageId>ECMJobRunner.Application</PackageId>
|
||||
<Authors>Digital Data GmbH</Authors>
|
||||
<Company>Digital Data GmbH</Company>
|
||||
<Product>ECMJobRunner.Domain</Product>
|
||||
<Copyright>Copyright 2026</Copyright>
|
||||
<RepositoryUrl>http://git.dd:3000/AppStd/ECMJobRunner.git</RepositoryUrl>
|
||||
<PackageTags>digital data ecm job runner application</PackageTags>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user