diff --git a/build.proj b/build.proj index adf8c5c3a891..240e20daa291 100644 --- a/build.proj +++ b/build.proj @@ -185,7 +185,7 @@ Microsoft.Powershell.*.dll,System*.dll,Microsoft.VisualBasic.dll,Microsoft.CSharp.dll,Microsoft.CodeAnalysis.dll,Microsoft.CodeAnalysis.CSharp.dll System.Security.Cryptography.ProtectedData.dll,System.Configuration.ConfigurationManager.dll,System.Runtime.CompilerServices.Unsafe.dll,System.IO.FileSystem.AccessControl.dll,System.Buffers.dll,System.Text.Encodings.Web.dll,System.CodeDom.dll,System.Management.dll,System.Text.Json.dll,System.Threading.Tasks.Extensions.dll - + diff --git a/src/AppConfiguration/Az.AppConfiguration.psd1 b/src/AppConfiguration/Az.AppConfiguration.psd1 index ffba5b08c737..3cf68952c5d7 100644 --- a/src/AppConfiguration/Az.AppConfiguration.psd1 +++ b/src/AppConfiguration/Az.AppConfiguration.psd1 @@ -12,7 +12,7 @@ RootModule = './Az.AppConfiguration.psm1' # Version number of this module. -ModuleVersion = '0.2.0' +ModuleVersion = '0.1.4' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' diff --git a/src/AppConfiguration/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs b/src/AppConfiguration/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs index c7cafcdcbaec..7244d1b3c5f4 100644 --- a/src/AppConfiguration/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs +++ b/src/AppConfiguration/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs @@ -49,7 +49,7 @@ protected override void ProcessRecord() throw new ArgumentException($"Custom folder '{CustomFolder}' does not exist"); } - string version = Convert.ToString(@"0.2.0"); + string version = Convert.ToString(@"0.1.4"); // Validate the module version should be semantic version // Following regex is official from https://semver.org/ Regex rx = new Regex(@"^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$", RegexOptions.Compiled); diff --git a/src/AppConfiguration/readme.md b/src/AppConfiguration/readme.md index 299b174c2019..78b851a9dd96 100644 --- a/src/AppConfiguration/readme.md +++ b/src/AppConfiguration/readme.md @@ -53,7 +53,7 @@ require: input-file: - https://github.com/Azure/azure-rest-api-specs/blob/5d7c9b734d462cc3b111757957c7d2cc027dff80/specification/appconfiguration/resource-manager/Microsoft.AppConfiguration/stable/2020-06-01/appconfiguration.json -module-version: 0.2.0 +module-version: 0.1.4 title: AppConfiguration # If there are post APIs for some kinds of actions in the RP, you may need to diff --git a/src/AppConfiguration/run-module.ps1 b/src/AppConfiguration/run-module.ps1 index 099067839134..956deb3e30d0 100644 --- a/src/AppConfiguration/run-module.ps1 +++ b/src/AppConfiguration/run-module.ps1 @@ -48,7 +48,7 @@ $launchJson = Join-Path $vscodeDirectory 'launch.json' # if there is a launch.json file, let's just assume -Code, and update the file if(($Code) -or (test-Path $launchJson) ) { - $launchContent = '{ "version": "0.2.0", "configurations":[{ "name":"Attach to PowerShell", "type":"coreclr", "request":"attach", "processId":"' + ([System.Diagnostics.Process]::GetCurrentProcess().Id) + '", "justMyCode":false }] }' + $launchContent = '{ "version": "0.1.4", "configurations":[{ "name":"Attach to PowerShell", "type":"coreclr", "request":"attach", "processId":"' + ([System.Diagnostics.Process]::GetCurrentProcess().Id) + '", "justMyCode":false }] }' Set-Content -Path $launchJson -Value $launchContent if($Code) { # only launch vscode if they say -code