commit f98870bbe6cc8a6fe873a53d381c5ae8dba0c6bf Author: javiermengual Date: Mon Dec 29 16:37:45 2025 +0100 chore: configuración inicial del proyecto .NET diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4d162e2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +## Build artifacts +bin/ +obj/ +/packages/ +out/ + +## IDE - Rider / IntelliJ +.idea/ +*.iml +riderModule.iml +/_ReSharper.Caches/ +.idea_modules/ + +## IDE - Visual Studio +.vs/ +*.user +*.suo +*.userosscache +*.sln.docstates + +## User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +## OS files +.DS_Store +Thumbs.db + +## Logs +*.log + +## Environment variables +.env +.env.local \ No newline at end of file diff --git a/DoliMiddlewareApi.sln b/DoliMiddlewareApi.sln new file mode 100644 index 0000000..aa12ddd --- /dev/null +++ b/DoliMiddlewareApi.sln @@ -0,0 +1,21 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DoliMiddlewareApi", "DoliMiddlewareApi\DoliMiddlewareApi.csproj", "{9A700A1E-080F-4B0D-BD3D-3E5B31B488EC}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{80B950A9-EE40-496C-8168-82D2E82668DD}" + ProjectSection(SolutionItems) = preProject + compose.yaml = compose.yaml + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9A700A1E-080F-4B0D-BD3D-3E5B31B488EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9A700A1E-080F-4B0D-BD3D-3E5B31B488EC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9A700A1E-080F-4B0D-BD3D-3E5B31B488EC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9A700A1E-080F-4B0D-BD3D-3E5B31B488EC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/DoliMiddlewareApi/DoliMiddlewareApi.csproj b/DoliMiddlewareApi/DoliMiddlewareApi.csproj new file mode 100644 index 0000000..2c4705a --- /dev/null +++ b/DoliMiddlewareApi/DoliMiddlewareApi.csproj @@ -0,0 +1,25 @@ + + + + net10.0 + enable + enable + Linux + + + + + + + + + .dockerignore + + + + + + + + +