Skip to content

Commit b6e6700

Browse files
authored
Merge branch 'release-2021-11-02' into codegen/CustomLocation
2 parents d25cb14 + 111aec8 commit b6e6700

File tree

621 files changed

+10616
-473
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

621 files changed

+10616
-473
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<PsModuleName>SignalR</PsModuleName>
4+
</PropertyGroup>
5+
6+
<Import Project="$(MSBuildThisFileDirectory)..\..\Az.autorest.hybrid.props" />
7+
</Project>

src/WebPubSub/Az.WebPubSub.psd1 renamed to src/SignalR/SignalR.Autorest/Az.SignalR.psd1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#
2-
# Module manifest for module 'Az.WebPubSub'
2+
# Module manifest for module 'Az.SignalR'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 10/20/2021
6+
# Generated on: 10/27/2021
77
#
88

99
@{
1010

1111
# Script module or binary module file associated with this manifest.
12-
RootModule = './Az.WebPubSub.psm1'
12+
RootModule = 'Az.SignalR.psm1'
1313

1414
# Version number of this module.
1515
ModuleVersion = '0.1.0'
@@ -18,7 +18,7 @@ ModuleVersion = '0.1.0'
1818
CompatiblePSEditions = 'Core', 'Desktop'
1919

2020
# ID used to uniquely identify this module
21-
GUID = '42cf5e19-9176-4826-9f5b-e5e9654fc69c'
21+
GUID = '887a3597-2c6e-46ff-a239-c56a20f0bf79'
2222

2323
# Author of this module
2424
Author = 'Microsoft Corporation'
@@ -51,10 +51,10 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.5.4'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.6.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
57-
RequiredAssemblies = './bin/Az.WebPubSub.private.dll'
57+
RequiredAssemblies = './bin/Az.SignalR.private.dll'
5858

5959
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
6060
# ScriptsToProcess = @()
@@ -63,7 +63,7 @@ RequiredAssemblies = './bin/Az.WebPubSub.private.dll'
6363
# TypesToProcess = @()
6464

6565
# Format files (.ps1xml) to be loaded when importing this module
66-
FormatsToProcess = './Az.WebPubSub.format.ps1xml'
66+
FormatsToProcess = './Az.SignalR.format.ps1xml'
6767

6868
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
6969
# NestedModules = @()

src/WebPubSub/Az.WebPubSub.psm1 renamed to src/SignalR/SignalR.Autorest/Az.SignalR.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
Write-Information "Loaded Module '$($accountsModule.Name)'"
4141

4242
# Load the private module dll
43-
$null = Import-Module -Name (Join-Path $PSScriptRoot './bin/Az.WebPubSub.private.dll')
43+
$null = Import-Module -Name (Join-Path $PSScriptRoot './bin/Az.SignalR.private.dll')
4444

4545
# Get the private module's instance
4646
$instance = [Microsoft.Azure.PowerShell.Cmdlets.WebPubSub.Module]::Instance
@@ -69,7 +69,7 @@
6969

7070

7171
# Load the custom module
72-
$customModulePath = Join-Path $PSScriptRoot './custom/Az.WebPubSub.custom.psm1'
72+
$customModulePath = Join-Path $PSScriptRoot 'custom/Az.SignalR.custom.psm1'
7373
if(Test-Path $customModulePath) {
7474
$null = Import-Module -Name $customModulePath
7575
}

src/WebPubSub/Properties/AssemblyInfo.cs renamed to src/SignalR/SignalR.Autorest/Properties/AssemblyInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
using System.Reflection;
1717
using System.Runtime.InteropServices;
1818

19-
[assembly: AssemblyTitle("Microsoft Azure Powershell - WebPubSub")]
19+
[assembly: AssemblyTitle("Microsoft Azure Powershell - SignalR")]
2020
[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)]
2121
[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)]
2222
[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)]
2323

2424
[assembly: ComVisible(false)]
2525
[assembly: CLSCompliant(false)]
26-
[assembly: Guid("8c8ffff3-6dd6-45ba-95e0-b0acb348365d")]
27-
[assembly: AssemblyVersion("0.1.0")]
28-
[assembly: AssemblyFileVersion("0.1.0")]
26+
[assembly: Guid("c2c5764f-91b3-49ce-8512-edcb4c6c02b5")]
27+
[assembly: AssemblyVersion("1.3.0")]
28+
[assembly: AssemblyFileVersion("1.3.0")]

src/WebPubSub/readme.md renamed to src/SignalR/SignalR.Autorest/README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!-- region Generated -->
2-
# Az.WebPubSub
2+
# Az.SignalR
33
This directory contains the PowerShell module for the WebPubSub service.
44

55
---
66
## Status
7-
[![Az.WebPubSub](https://img.shields.io/powershellgallery/v/Az.WebPubSub.svg?style=flat-square&label=Az.WebPubSub "Az.WebPubSub")](https://www.powershellgallery.com/packages/Az.WebPubSub/)
7+
[![Az.SignalR](https://img.shields.io/powershellgallery/v/Az.SignalR.svg?style=flat-square&label=Az.SignalR "Az.SignalR")](https://www.powershellgallery.com/packages/Az.SignalR/)
88

99
## Info
1010
- Modifiable: yes
@@ -23,7 +23,7 @@ This module was primarily generated via [AutoRest](https://github.com/Azure/auto
2323
AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent.
2424

2525
## Development
26-
For information on how to develop for `Az.WebPubSub`, see [how-to.md](how-to.md).
26+
For information on how to develop for `Az.SignalR`, see [how-to.md](how-to.md).
2727
<!-- endregion -->
2828

2929
### AutoRest Configuration
@@ -32,7 +32,7 @@ For information on how to develop for `Az.WebPubSub`, see [how-to.md](how-to.md)
3232
``` yaml
3333
require:
3434
# readme.azure.noprofile.md is the common configuration file
35-
- $(this-folder)/../readme.azure.noprofile.md
35+
- $(this-folder)/../../readme.azure.noprofile.md
3636
sanitize-names: true
3737
input-file:
3838
# You need to specify your swagger files here.
@@ -42,6 +42,10 @@ input-file:
4242

4343
# For new RP, the version is 0.1.0
4444
module-version: 0.1.0
45+
module-name: Az.SignalR
46+
psm1: Az.SignalR.psm1
47+
psm1-internal: internal/Az.SignalR.internal.psm1
48+
psm1-custom: custom/Az.SignalR.custom.psm1
4549
# Normally, title is the service name
4650
title: WebPubSub
4751
subject-prefix: ''
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.6.30114.105
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\..\Accounts\Accounts\Accounts.csproj", "{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\..\Accounts\Authentication\Authentication.csproj", "{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{A71EE260-0375-487E-81C7-E9CC288E9786}"
11+
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}"
13+
EndProject
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\..\Accounts\Authenticators\Authenticators.csproj", "{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}"
15+
EndProject
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.SignalR", "Az.SignalR.csproj", "{595C184A-B6CF-4B51-9A85-24857B177B27}"
17+
EndProject
18+
Global
19+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
20+
Debug|Any CPU = Debug|Any CPU
21+
Debug|x64 = Debug|x64
22+
Debug|x86 = Debug|x86
23+
Release|Any CPU = Release|Any CPU
24+
Release|x64 = Release|x64
25+
Release|x86 = Release|x86
26+
EndGlobalSection
27+
GlobalSection(SolutionProperties) = preSolution
28+
HideSolutionNode = FALSE
29+
EndGlobalSection
30+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
31+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
33+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Debug|x64.ActiveCfg = Debug|Any CPU
34+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Debug|x64.Build.0 = Debug|Any CPU
35+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Debug|x86.ActiveCfg = Debug|Any CPU
36+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Debug|x86.Build.0 = Debug|Any CPU
37+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Release|Any CPU.Build.0 = Release|Any CPU
39+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Release|x64.ActiveCfg = Release|Any CPU
40+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Release|x64.Build.0 = Release|Any CPU
41+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Release|x86.ActiveCfg = Release|Any CPU
42+
{F2DB8149-E897-4FB4-98EE-8E1C1EAFF8E0}.Release|x86.Build.0 = Release|Any CPU
43+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
44+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Debug|Any CPU.Build.0 = Debug|Any CPU
45+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Debug|x64.ActiveCfg = Debug|Any CPU
46+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Debug|x64.Build.0 = Debug|Any CPU
47+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Debug|x86.ActiveCfg = Debug|Any CPU
48+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Debug|x86.Build.0 = Debug|Any CPU
49+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Release|Any CPU.ActiveCfg = Release|Any CPU
50+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Release|Any CPU.Build.0 = Release|Any CPU
51+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Release|x64.ActiveCfg = Release|Any CPU
52+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Release|x64.Build.0 = Release|Any CPU
53+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Release|x86.ActiveCfg = Release|Any CPU
54+
{DB5EBAE7-90D2-4F35-8B58-1D1E21858309}.Release|x86.Build.0 = Release|Any CPU
55+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
56+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Debug|Any CPU.Build.0 = Debug|Any CPU
57+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Debug|x64.ActiveCfg = Debug|Any CPU
58+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Debug|x64.Build.0 = Debug|Any CPU
59+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Debug|x86.ActiveCfg = Debug|Any CPU
60+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Debug|x86.Build.0 = Debug|Any CPU
61+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Release|Any CPU.ActiveCfg = Release|Any CPU
62+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Release|Any CPU.Build.0 = Release|Any CPU
63+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Release|x64.ActiveCfg = Release|Any CPU
64+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Release|x64.Build.0 = Release|Any CPU
65+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Release|x86.ActiveCfg = Release|Any CPU
66+
{A71EE260-0375-487E-81C7-E9CC288E9786}.Release|x86.Build.0 = Release|Any CPU
67+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
68+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Debug|Any CPU.Build.0 = Debug|Any CPU
69+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Debug|x64.ActiveCfg = Debug|Any CPU
70+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Debug|x64.Build.0 = Debug|Any CPU
71+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Debug|x86.ActiveCfg = Debug|Any CPU
72+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Debug|x86.Build.0 = Debug|Any CPU
73+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Release|Any CPU.ActiveCfg = Release|Any CPU
74+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Release|Any CPU.Build.0 = Release|Any CPU
75+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Release|x64.ActiveCfg = Release|Any CPU
76+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Release|x64.Build.0 = Release|Any CPU
77+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Release|x86.ActiveCfg = Release|Any CPU
78+
{AF2FF110-04E0-48A1-9128-08FE1F7A9E47}.Release|x86.Build.0 = Release|Any CPU
79+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
80+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Debug|Any CPU.Build.0 = Debug|Any CPU
81+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Debug|x64.ActiveCfg = Debug|Any CPU
82+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Debug|x64.Build.0 = Debug|Any CPU
83+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Debug|x86.ActiveCfg = Debug|Any CPU
84+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Debug|x86.Build.0 = Debug|Any CPU
85+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Release|Any CPU.ActiveCfg = Release|Any CPU
86+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Release|Any CPU.Build.0 = Release|Any CPU
87+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Release|x64.ActiveCfg = Release|Any CPU
88+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Release|x64.Build.0 = Release|Any CPU
89+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Release|x86.ActiveCfg = Release|Any CPU
90+
{F827090F-6EA3-44D4-8BF7-6BDE8EC1CA3E}.Release|x86.Build.0 = Release|Any CPU
91+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
92+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Debug|Any CPU.Build.0 = Debug|Any CPU
93+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Debug|x64.ActiveCfg = Debug|Any CPU
94+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Debug|x64.Build.0 = Debug|Any CPU
95+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Debug|x86.ActiveCfg = Debug|Any CPU
96+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Debug|x86.Build.0 = Debug|Any CPU
97+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Release|Any CPU.ActiveCfg = Release|Any CPU
98+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Release|Any CPU.Build.0 = Release|Any CPU
99+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Release|x64.ActiveCfg = Release|Any CPU
100+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Release|x64.Build.0 = Release|Any CPU
101+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Release|x86.ActiveCfg = Release|Any CPU
102+
{595C184A-B6CF-4B51-9A85-24857B177B27}.Release|x86.Build.0 = Release|Any CPU
103+
EndGlobalSection
104+
EndGlobal

src/WebPubSub/build-module.ps1 renamed to src/SignalR/SignalR.Autorest/build-module.ps1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ if(-not $Debugger) {
8989
$null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path (Join-Path $binFolder 'Debug'), (Join-Path $binFolder 'Release')
9090
}
9191

92-
$dll = Join-Path $PSScriptRoot 'bin\Az.WebPubSub.private.dll'
92+
$dll = Join-Path $PSScriptRoot 'bin\Az.SignalR.private.dll'
9393
if(-not (Test-Path $dll)) {
9494
Write-Error "Unable to find output assembly in '$binFolder'."
9595
}
@@ -98,26 +98,26 @@ if(-not (Test-Path $dll)) {
9898
$null = Import-Module -Name $dll
9999

100100
$modulePaths = $dll
101-
$customPsm1 = Join-Path $PSScriptRoot 'custom\Az.WebPubSub.custom.psm1'
101+
$customPsm1 = Join-Path $PSScriptRoot 'custom\Az.SignalR.custom.psm1'
102102
if(Test-Path $customPsm1) {
103103
$modulePaths = @($dll, $customPsm1)
104104
}
105105

106106
$exportsFolder = Join-Path $PSScriptRoot 'exports'
107107
if(Test-Path $exportsFolder) {
108-
$null = Get-ChildItem -Path $exportsFolder -Recurse -Exclude 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue
108+
$null = Get-ChildItem -Path $exportsFolder -Recurse -Exclude 'README.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue
109109
}
110110
$null = New-Item -ItemType Directory -Force -Path $exportsFolder
111111

112112
$internalFolder = Join-Path $PSScriptRoot 'internal'
113113
if(Test-Path $internalFolder) {
114-
$null = Get-ChildItem -Path $internalFolder -Recurse -Exclude '*.psm1', 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue
114+
$null = Get-ChildItem -Path $internalFolder -Recurse -Exclude '*.psm1', 'README.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue
115115
}
116116
$null = New-Item -ItemType Directory -Force -Path $internalFolder
117117

118-
$psd1 = Join-Path $PSScriptRoot './Az.WebPubSub.psd1'
118+
$psd1 = Join-Path $PSScriptRoot './Az.SignalR.psd1'
119119
$guid = Get-ModuleGuid -Psd1Path $psd1
120-
$moduleName = 'Az.WebPubSub'
120+
$moduleName = 'Az.SignalR'
121121
$examplesFolder = Join-Path $PSScriptRoot 'examples'
122122
$null = New-Item -ItemType Directory -Force -Path $examplesFolder
123123

@@ -136,14 +136,14 @@ if($NoDocs) {
136136
$moduleDescription = 'Microsoft Azure PowerShell: WebPubSub cmdlets'
137137
$docsFolder = Join-Path $PSScriptRoot 'docs'
138138
if(Test-Path $docsFolder) {
139-
$null = Get-ChildItem -Path $docsFolder -Recurse -Exclude 'readme.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue
139+
$null = Get-ChildItem -Path $docsFolder -Recurse -Exclude 'README.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue
140140
}
141141
$null = New-Item -ItemType Directory -Force -Path $docsFolder
142142
Export-ProxyCmdlet -ModuleName $moduleName -ModulePath $modulePaths -ExportsFolder $exportsFolder -InternalFolder $internalFolder -ModuleDescription $moduleDescription -DocsFolder $docsFolder -ExamplesFolder $examplesFolder -ModuleGuid $guid
143143
}
144144

145145
Write-Host -ForegroundColor Green 'Creating format.ps1xml...'
146-
$formatPs1xml = Join-Path $PSScriptRoot './Az.WebPubSub.format.ps1xml'
146+
$formatPs1xml = Join-Path $PSScriptRoot './Az.SignalR.format.ps1xml'
147147
Export-FormatPs1xml -FilePath $formatPs1xml
148148

149149
Write-Host -ForegroundColor Green 'Creating psd1...'

src/WebPubSub/check-dependencies.ps1 renamed to src/SignalR/SignalR.Autorest/check-dependencies.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ $resourceModule = Join-Path $HOME '.PSSharedModules\Resources\Az.Resources.TestS
5757
if ($Resources.IsPresent -and ((-not (Test-Path -Path $resourceModule)) -or $RegenerateSupportModule.IsPresent)) {
5858
Write-Host -ForegroundColor Green "Building local Resource module used for test..."
5959
Set-Location $resourceDir
60-
$null = autorest .\readme.md --use:@autorest/powershell@3.0.414 --output-folder=$HOME/.PSSharedModules/Resources
60+
$null = autorest .\README.md --use:@autorest/powershell@3.0.414 --output-folder=$HOME/.PSSharedModules/Resources
6161
$null = Copy-Item custom/* $HOME/.PSSharedModules/Resources/custom/
6262
Set-Location $HOME/.PSSharedModules/Resources
6363
$null = .\build-module.ps1

src/WebPubSub/create-model-cmdlets.ps1 renamed to src/SignalR/SignalR.Autorest/create-model-cmdlets.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function CreateModelCmdlet {
2323
}
2424

2525
$ModelCsPath = Join-Path (Join-Path $PSScriptRoot 'generated\api') 'Models'
26-
$ModuleName = 'Az.WebPubSub'.Split(".")[1]
26+
$ModuleName = 'Az.SignalR'.Split(".")[1]
2727
$OutputDir = Join-Path $PSScriptRoot 'custom\autogen-model-cmdlets'
2828
$null = New-Item -ItemType Directory -Force -Path $OutputDir
2929

0 commit comments

Comments
 (0)