From 429f48613a6b18bb415a94b504201ecb8ad492a4 Mon Sep 17 00:00:00 2001 From: Patrick Kurmann Date: Sun, 31 Mar 2024 14:48:48 +0200 Subject: [PATCH] project var --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 62d557a..c5adfc9 100644 --- a/README.md +++ b/README.md @@ -98,17 +98,19 @@ scimodule-vscode-debugconfig/ Zum Erstellen eines kompletten Service Collection Integrated Moduls mitsamt Repository-Struktur wird die kombination der Templates `scimodule`, `scimodule-github-workflow` und `scimodule-vscode-debugconfig` empfohlen. +Bitte vorher zum **Wurzelverzeichnis** des neu erstellte GitHub-**Repositorys** wechseln. + ```bash -# Wechseln zum Wurzelverzeichnis des neu erstellte GitHub-Repositorys. -cd path/to/new-github-repo-root/ +# Definieren der Variable "Projektname" +export PROJEKTNAME="MeinProjekt" # Service Collection Integrated Modul im "src"-Verzeichnis erstellen -dotnet new scimodule -n Projektname -o src +dotnet new scimodule -n $PROJEKTNAME -o src # Erzeuge eine passende GitHub Actions Workflow-Konfiguration dotnet new scimodule-github-workflow -o . # Erzeuge eine passende vordefinierte Debug-Konfiguration für Visual Studio Code -dotnet new scimodule-vscode-debugconfig -n Projektname -o . +dotnet new scimodule-vscode-debugconfig -n $PROJEKTNAME -o . ```