Domänenprojekt erstellen

This commit is contained in:
tekh 2025-07-07 14:08:14 +02:00
parent f116d6702f
commit c9a026577a
2 changed files with 39 additions and 0 deletions

30
Leanetec.EConnect.sln Normal file
View File

@ -0,0 +1,30 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36221.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Leanetec.EConnect.Domain", "src\Leanetec.EConnect.Domain\Leanetec.EConnect.Domain.csproj", "{34DC964A-1905-7DFC-0125-D551D3EEFCDD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{34DC964A-1905-7DFC-0125-D551D3EEFCDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{34DC964A-1905-7DFC-0125-D551D3EEFCDD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{34DC964A-1905-7DFC-0125-D551D3EEFCDD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{34DC964A-1905-7DFC-0125-D551D3EEFCDD}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{34DC964A-1905-7DFC-0125-D551D3EEFCDD} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8C81AD6F-B903-4C78-873C-38EE216EFAD5}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>