diff --git a/Instructions/Labs/APL2001_M07_L07_Configure_Pipelines_to_Securely_Use_Variables_and_Parameters.md b/Instructions/Labs/APL2001_M07_L07_Configure_Pipelines_to_Securely_Use_Variables_and_Parameters.md index 316aaa0..f785818 100644 --- a/Instructions/Labs/APL2001_M07_L07_Configure_Pipelines_to_Securely_Use_Variables_and_Parameters.md +++ b/Instructions/Labs/APL2001_M07_L07_Configure_Pipelines_to_Securely_Use_Variables_and_Parameters.md @@ -74,6 +74,7 @@ In this task, you will set parameter and parameter types for the pipeline. ``` +{% raw %} 1. Replace the hardcoded paths in the "Restore", "Build", and "Test" tasks with the parameters you just created. - **Replace projects**: `**/*.sln` with projects: `${{ parameters.dotNetProjects }}` in the `Restore` and `Build` tasks. @@ -103,6 +104,7 @@ In this task, you will set parameter and parameter types for the pipeline. projects: ${{ parameters.testProjects }} ``` +{% endraw %} 1. Click on **Validate and save** to save the changes, then click on **Save**. @@ -147,11 +149,13 @@ In this task, you will secure the variables and parameters from your pipeline by 1. In the "Build" task, add the configuration parameter to the task to utilize the build configuration from the variable group. +{% raw %} ```yaml command: 'build' projects: ${{ parameters.dotNetProjects }} configuration: $(buildConfiguration) ``` +{% endraw %} 1. Click on **Validate and save** to save the changes, then click on **Save**.