Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
project var
Browse files Browse the repository at this point in the history
  • Loading branch information
kurmann committed Mar 31, 2024
1 parent da50ba8 commit 429f486
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

```

0 comments on commit 429f486

Please sign in to comment.