diff --git a/templates/nuget-classlib/ClassLibrary/ClassLibrary.csproj b/templates/nuget-classlib/ClassLibrary/ClassLibrary.csproj
index 9ad7372..0bb474d 100644
--- a/templates/nuget-classlib/ClassLibrary/ClassLibrary.csproj
+++ b/templates/nuget-classlib/ClassLibrary/ClassLibrary.csproj
@@ -11,7 +11,7 @@
Kurmann.ClassLibrary
- RootNamespace
+ NamespacePlaceholder
diff --git a/templates/services-repo/.vscode/launch.json b/templates/services-repo/.vscode/launch.json
new file mode 100644
index 0000000..e8edccd
--- /dev/null
+++ b/templates/services-repo/.vscode/launch.json
@@ -0,0 +1,19 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": ".NET Core Launch (console)",
+ "type": "coreclr",
+ "request": "launch",
+ "preLaunchTask": "build",
+ "program": "${workspaceFolder}/src/Application/bin/Debug/net8.0/NamespacePlaceholder.ProjectName.Application.dll",
+ "args": [],
+ "cwd": "${workspaceFolder}",
+ "stopAtEntry": false,
+ "console": "internalConsole",
+ "env": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ ]
+}
diff --git a/templates/services-repo/.vscode/tasks.json b/templates/services-repo/.vscode/tasks.json
new file mode 100644
index 0000000..e21a328
--- /dev/null
+++ b/templates/services-repo/.vscode/tasks.json
@@ -0,0 +1,41 @@
+{
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "build",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "build",
+ "${workspaceFolder}/src/Application/Application.csproj",
+ "/property:GenerateFullPaths=true",
+ "/consoleloggerparameters:NoSummary;ForceNoAlign"
+ ],
+ "problemMatcher": "$msCompile"
+ },
+ {
+ "label": "publish",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "publish",
+ "${workspaceFolder}/src/Application/Application.csproj",
+ "/property:GenerateFullPaths=true",
+ "/consoleloggerparameters:NoSummary;ForceNoAlign"
+ ],
+ "problemMatcher": "$msCompile"
+ },
+ {
+ "label": "watch",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "watch",
+ "run",
+ "--project",
+ "${workspaceFolder}/src/Application/Application.csproj"
+ ],
+ "problemMatcher": "$msCompile"
+ }
+ ]
+}
\ No newline at end of file