Commit ee5c71da authored by Protocole's avatar Protocole
Browse files

Fix typo in .NET Build

parent 068a97f1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -31,10 +31,10 @@ It is using the scripted installation provided from Microsoft, see [here](https:

| VARIABLE NAME | DESCRIPTION | DEFAULT VALUE |
|:-|:-|:-
| `DOTNET_OUTPUT` <img width=150/> | Path to the built version in the artifact <img width=175/>| `/build` <img width=100/>|
| `DOTNET_OUTPUT` <img width=150/> | Path to the built in the artifact <img width=175/>| `/build` <img width=100/>|
| `DOTNET_VERSION` | .NET version used to build. You have the choice between multiples versions (see [versions](https://github.com/dotnet/installer#installers-and-binaries)). | `3.1` |
| `DOTNET_VERBOSITY` | Prints more or less logs (*Types available*: `q[uiet]`, `m[inimal]`, `n[ormal]`, `d[etailed]` and `diag[nostic]`) | `minimal` |
| `DOTNET_CONFIG` | Configuration used to build | `Debug` |
| `DOTNET_VERBOSITY` | Prints more or less logs (*Types available*: `q[uiet]`, `m[inimal]`, `n[ormal]`, `d[etailed]` and `diag[nostic]`) | `m` |
| `DOTNET_CONFIG` | Configuration profile used to build | `Debug` |
| `PROJECT_ROOT` | The location of the .NET project in your repository | `/` |

!!! warning
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ dotnet_build:
  variables:
    DOTNET_OUTPUT: "/build"
    DOTNET_VERSION: "3.1"
    DOTNET_VERBOSITY: "minimal"
    DOTNET_VERBOSITY: "m"
    DOTNET_CONFIG: "Debug"
    PROJECT_ROOT: "/"
  script: