From cfd9a577e43a352c311d5c8c375b13c91166e618 Mon Sep 17 00:00:00 2001 From: phil <22167066+philippesollaud@users.noreply.github.com> Date: Thu, 8 Jan 2026 10:47:44 +0100 Subject: [PATCH 1/2] disabling liquid tag processing --- ...figure_Pipelines_to_Securely_Use_Variables_and_Parameters.md | 2 ++ 1 file changed, 2 insertions(+) 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..7b34c17 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**. From 819590066c012aed4d8d25f5b7c9fa7689135946 Mon Sep 17 00:00:00 2001 From: phil <22167066+philippesollaud@users.noreply.github.com> Date: Thu, 8 Jan 2026 11:14:18 +0100 Subject: [PATCH 2/2] disabling liquid tag processing --- ...figure_Pipelines_to_Securely_Use_Variables_and_Parameters.md | 2 ++ 1 file changed, 2 insertions(+) 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 7b34c17..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 @@ -149,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**.