**Bicep version** Bicep CLI version 0.37.4 (27cc8db2ed) **Describe the bug** Microsoft DSC v3 implements its own custom functions. For example, to determine the current drive, I could define the following: ```bicep targetScope = 'desiredStateConfiguration' resource powerShellAdapter 'PSDesiredStateConfiguration/File@2025-01-07' = { name: 'Use Bicep to create file' properties: { Ensure: 'Present' Type: 'File' DestinationPath: '${systemroot()}\\DSC\\config.txt' Contents: 'This file was created using Bicep extension from DSC.' } } ``` Trying to compile this, results in an error: <img width="1362" height="143" alt="Image" src="https://github.com/user-attachments/assets/96714fcc-6177-4b79-8640-a6ef33f443eb" /> **To Reproduce** Grab the example from the [pull request](https://github.com/PowerShell/DSC/pull/806/files) and run `bicep build file_with_condition.dsc.bicep` **Additional context** Add any other context about the problem here.