Skip to content

Commit 5080f2b

Browse files
committed
fix: app name suffix pattern
1 parent 135235e commit 5080f2b

File tree

224 files changed

+417
-289
lines changed

Some content is hidden

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

224 files changed

+417
-289
lines changed

dotnet/samples/01.messaging.echoBot/appPackage/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"outline": "outline.png"
1616
},
1717
"name": {
18-
"short": "EchoBot-${{TEAMSFX_ENV}}",
18+
"short": "EchoBot${{APP_NAME_SUFFIX}}",
1919
"full": "Full name for EchoBot"
2020
},
2121
"description": {

dotnet/samples/01.messaging.echoBot/env/.env.dev

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ BOT_ID=
1313
TEAMS_APP_ID=
1414
BOT_AZURE_APP_SERVICE_RESOURCE_ID=
1515
BOT_DOMAIN=
16-
TEAMS_APP_TENANT_ID=
16+
TEAMS_APP_TENANT_ID=
17+
18+
APP_NAME_SUFFIX=dev

dotnet/samples/01.messaging.echoBot/teamsapp.local.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ provision:
88
- uses: teamsApp/create
99
with:
1010
# Teams app name
11-
name: EchoBot-${{TEAMSFX_ENV}}
11+
name: EchoBot${{APP_NAME_SUFFIX}}
1212
# Write the information of created resources into environment file for
1313
# the specified environment variable(s).
1414
writeToEnvironmentFile:
@@ -18,7 +18,7 @@ provision:
1818
- uses: botAadApp/create
1919
with:
2020
# The Azure Active Directory application's display name
21-
name: EchoBot-${{TEAMSFX_ENV}}
21+
name: EchoBot${{APP_NAME_SUFFIX}}
2222
writeToEnvironmentFile:
2323
# The Azure Active Directory application's client id created for bot.
2424
botId: BOT_ID

dotnet/samples/01.messaging.echoBot/teamsapp.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ provision:
1111
- uses: teamsApp/create
1212
with:
1313
# Teams app name
14-
name: EchoBot-${{TEAMSFX_ENV}}
14+
name: EchoBot${{APP_NAME_SUFFIX}}
1515
# Write the information of created resources into environment file for
1616
# the specified environment variable(s).
1717
writeToEnvironmentFile:
@@ -21,7 +21,7 @@ provision:
2121
- uses: botAadApp/create
2222
with:
2323
# The Azure Active Directory application's display name
24-
name: EchoBot-${{TEAMSFX_ENV}}
24+
name: EchoBot${{APP_NAME_SUFFIX}}
2525
writeToEnvironmentFile:
2626
# The Azure Active Directory application's client id created for bot.
2727
botId: BOT_ID

dotnet/samples/02.messageExtensions.a.searchCommand/appPackage/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": "${{TEAMS_APP_ID}}",
66
"packageName": "com.package.name",
77
"name": {
8-
"short": "NuGetSearch-${{TEAMSFX_ENV}}",
8+
"short": "NuGetSearch${{APP_NAME_SUFFIX}}",
99
"full": "NuGet Search Bot"
1010
},
1111
"developer": {

dotnet/samples/02.messageExtensions.a.searchCommand/env/.env.dev

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ BOT_ID=
1313
TEAMS_APP_ID=
1414
TEAMS_APP_TENANT_ID=
1515
BOT_AZURE_APP_SERVICE_RESOURCE_ID=
16-
BOT_DOMAIN=
16+
BOT_DOMAIN=
17+
18+
APP_NAME_SUFFIX=dev

dotnet/samples/02.messageExtensions.a.searchCommand/env/.env.local

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ TEAMS_APP_ID=
99
TEAMS_APP_TENANT_ID=
1010
TEAMSFX_M365_USER_NAME=
1111
BOT_ENDPOINT=
12-
BOT_DOMAIN=
12+
BOT_DOMAIN=
13+
14+
APP_NAME_SUFFIX=local

dotnet/samples/02.messageExtensions.a.searchCommand/teamsapp.local.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ provision:
1818
# Automates the creation of a Teams app registration and saves the App ID to an environment file.
1919
- uses: teamsApp/create
2020
with:
21-
name: SearchCommand-${{TEAMSFX_ENV}}
21+
name: SearchCommand${{APP_NAME_SUFFIX}}
2222
writeToEnvironmentFile:
2323
teamsAppId: TEAMS_APP_ID
2424

2525
# Automates the creation an Azure AD app registration which is required for a bot.
2626
# The Bot ID (AAD app client ID) and Bot Password (AAD app client secret) are saved to an environment file.
2727
- uses: botAadApp/create
2828
with:
29-
name: SearchCommand-${{TEAMSFX_ENV}}
29+
name: SearchCommand${{APP_NAME_SUFFIX}}
3030
writeToEnvironmentFile:
3131
botId: BOT_ID
3232
botPassword: SECRET_BOT_PASSWORD

dotnet/samples/02.messageExtensions.a.searchCommand/teamsapp.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ provision:
1919
# Automates the creation of a Teams app registration and saves the App ID to an environment file.
2020
- uses: teamsApp/create
2121
with:
22-
name: SearchCommand-${{TEAMSFX_ENV}}
22+
name: SearchCommand${{APP_NAME_SUFFIX}}
2323
writeToEnvironmentFile:
2424
teamsAppId: TEAMS_APP_ID
2525

2626
# Automates the creation an Azure AD app registration which is required for a bot.
2727
# The Bot ID (AAD app client ID) and Bot Password (AAD app client secret) are saved to an environment file.
2828
- uses: botAadApp/create
2929
with:
30-
name: SearchCommand-${{TEAMSFX_ENV}}
30+
name: SearchCommand${{APP_NAME_SUFFIX}}
3131
writeToEnvironmentFile:
3232
botId: BOT_ID
3333
botPassword: SECRET_BOT_PASSWORD

dotnet/samples/03.adaptiveCards.a.typeAheadBot/appPackage/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": "${{TEAMS_APP_ID}}",
66
"packageName": "com.package.name",
77
"name": {
8-
"short": "TypeAheadBot-${{TEAMSFX_ENV}}",
8+
"short": "TypeAheadBot${{APP_NAME_SUFFIX}}",
99
"full": "Type Ahead Bot"
1010
},
1111
"developer": {

dotnet/samples/03.adaptiveCards.a.typeAheadBot/env/.env.dev

+3
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ RESOURCE_SUFFIX=
1212
BOT_ID=
1313
TEAMS_APP_ID=
1414
BOT_AZURE_APP_SERVICE_RESOURCE_ID=
15+
16+
17+
APP_NAME_SUFFIX=dev

dotnet/samples/03.adaptiveCards.a.typeAheadBot/env/.env.local

+3
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ TEAMSFX_ENV=local
66
# Generated during provision, you can also add your own variables.
77
BOT_ID=
88
TEAMS_APP_ID=
9+
10+
11+
APP_NAME_SUFFIX=local

dotnet/samples/03.adaptiveCards.a.typeAheadBot/teamsapp.local.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ provision:
1212
- uses: teamsApp/create
1313
with:
1414
# Teams app name
15-
name: TypeAheadBot-${{TEAMSFX_ENV}}
15+
name: TypeAheadBot${{APP_NAME_SUFFIX}}
1616
# Write the information of created resources into environment file for
1717
# the specified environment variable(s).
1818
writeToEnvironmentFile:

dotnet/samples/03.adaptiveCards.a.typeAheadBot/teamsapp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ provision:
1414
- uses: teamsApp/create
1515
with:
1616
# Teams app name
17-
name: TypeAheadBot-${{TEAMSFX_ENV}}
17+
name: TypeAheadBot${{APP_NAME_SUFFIX}}
1818
# Write the information of created resources into environment file for
1919
# the specified environment variable(s).
2020
writeToEnvironmentFile:

dotnet/samples/04.ai.a.teamsChefBot/appPackage/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": "${{TEAMS_APP_ID}}",
66
"packageName": "com.package.name",
77
"name": {
8-
"short": "TeamsChef-${{TEAMSFX_ENV}}",
8+
"short": "TeamsChef${{APP_NAME_SUFFIX}}",
99
"full": "Teams Developer Chef"
1010
},
1111
"developer": {

dotnet/samples/04.ai.a.teamsChefBot/env/.env.dev

+3
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ BOT_ID=
1313
TEAMS_APP_ID=
1414
BOT_AZURE_APP_SERVICE_RESOURCE_ID=
1515
BOT_DOMAIN=
16+
17+
18+
APP_NAME_SUFFIX=dev

dotnet/samples/04.ai.a.teamsChefBot/env/.env.local

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ TEAMSFX_ENV=local
77
BOT_ID=
88
TEAMS_APP_ID=
99
BOT_DOMAIN=
10+
11+
12+
APP_NAME_SUFFIX=local

dotnet/samples/04.ai.a.teamsChefBot/teamsapp.local.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ provision:
1212
- uses: teamsApp/create
1313
with:
1414
# Teams app name
15-
name: TeamsChef-${{TEAMSFX_ENV}}
15+
name: TeamsChef${{APP_NAME_SUFFIX}}
1616
# Write the information of created resources into environment file for
1717
# the specified environment variable(s).
1818
writeToEnvironmentFile:

dotnet/samples/04.ai.a.teamsChefBot/teamsapp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ provision:
1414
- uses: teamsApp/create
1515
with:
1616
# Teams app name
17-
name: TeamsChef-${{TEAMSFX_ENV}}
17+
name: TeamsChef${{APP_NAME_SUFFIX}}
1818
# Write the information of created resources into environment file for
1919
# the specified environment variable(s).
2020
writeToEnvironmentFile:

dotnet/samples/04.ai.b.messageExtensions.gptME/appPackage/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": "${{TEAMS_APP_ID}}",
66
"packageName": "com.package.name",
77
"name": {
8-
"short": "GPT ME-${{TEAMSFX_ENV}}",
8+
"short": "GPT ME${{APP_NAME_SUFFIX}}",
99
"full": "GPT Message Extensions"
1010
},
1111
"developer": {

dotnet/samples/04.ai.b.messageExtensions.gptME/env/.env.dev

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ BOT_ID=
1313
TEAMS_APP_ID=
1414
TEAMS_APP_TENANT_ID=
1515
BOT_AZURE_APP_SERVICE_RESOURCE_ID=
16-
BOT_DOMAIN=
16+
BOT_DOMAIN=
17+
18+
APP_NAME_SUFFIX=dev

dotnet/samples/04.ai.b.messageExtensions.gptME/env/.env.local

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ TEAMS_APP_ID=
99
TEAMS_APP_TENANT_ID=
1010
TEAMSFX_M365_USER_NAME=
1111
BOT_DOMAIN=
12-
BOT_ENDPOINT=
12+
BOT_ENDPOINT=
13+
14+
APP_NAME_SUFFIX=local

dotnet/samples/04.ai.b.messageExtensions.gptME/teamsapp.local.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ provision:
1818
# Automates the creation of a Teams app registration and saves the App ID to an environment file.
1919
- uses: teamsApp/create
2020
with:
21-
name: GPT-ME-${{TEAMSFX_ENV}}
21+
name: GPT-ME${{APP_NAME_SUFFIX}}
2222
writeToEnvironmentFile:
2323
teamsAppId: TEAMS_APP_ID
2424

2525
# Automates the creation an Azure AD app registration which is required for a bot.
2626
# The Bot ID (AAD app client ID) and Bot Password (AAD app client secret) are saved to an environment file.
2727
- uses: botAadApp/create
2828
with:
29-
name: GPT-ME-${{TEAMSFX_ENV}}
29+
name: GPT-ME${{APP_NAME_SUFFIX}}
3030
writeToEnvironmentFile:
3131
botId: BOT_ID
3232
botPassword: SECRET_BOT_PASSWORD

dotnet/samples/04.ai.b.messageExtensions.gptME/teamsapp.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ provision:
1919
# Automates the creation of a Teams app registration and saves the App ID to an environment file.
2020
- uses: teamsApp/create
2121
with:
22-
name: GPT-ME-${{TEAMSFX_ENV}}
22+
name: GPT-ME${{APP_NAME_SUFFIX}}
2323
writeToEnvironmentFile:
2424
teamsAppId: TEAMS_APP_ID
2525

2626
# Automates the creation an Azure AD app registration which is required for a bot.
2727
# The Bot ID (AAD app client ID) and Bot Password (AAD app client secret) are saved to an environment file.
2828
- uses: botAadApp/create
2929
with:
30-
name: GPT-ME-${{TEAMSFX_ENV}}
30+
name: GPT-ME${{APP_NAME_SUFFIX}}
3131
writeToEnvironmentFile:
3232
botId: BOT_ID
3333
botPassword: SECRET_BOT_PASSWORD

dotnet/samples/04.ai.c.actionMapping.lightBot/appPackage/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"outline": "outline.png"
1616
},
1717
"name": {
18-
"short": "LightBot-${{TEAMSFX_ENV}}",
18+
"short": "LightBot${{APP_NAME_SUFFIX}}",
1919
"full": "Light Bot"
2020
},
2121
"description": {

dotnet/samples/04.ai.c.actionMapping.lightBot/env/.env.dev

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ BOT_ID=
1313
TEAMS_APP_ID=
1414
BOT_AZURE_APP_SERVICE_RESOURCE_ID=
1515
BOT_DOMAIN=
16-
TEAMS_APP_TENANT_ID=
16+
TEAMS_APP_TENANT_ID=
17+
18+
APP_NAME_SUFFIX=dev

dotnet/samples/04.ai.c.actionMapping.lightBot/teamsapp.local.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ provision:
88
- uses: teamsApp/create
99
with:
1010
# Teams app name
11-
name: LightBot-${{TEAMSFX_ENV}}
11+
name: LightBot${{APP_NAME_SUFFIX}}
1212
# Write the information of created resources into environment file for
1313
# the specified environment variable(s).
1414
writeToEnvironmentFile:
@@ -18,7 +18,7 @@ provision:
1818
- uses: botAadApp/create
1919
with:
2020
# The Azure Active Directory application's display name
21-
name: LightBot-${{TEAMSFX_ENV}}
21+
name: LightBot${{APP_NAME_SUFFIX}}
2222
writeToEnvironmentFile:
2323
# The Azure Active Directory application's client id created for bot.
2424
botId: BOT_ID

dotnet/samples/04.ai.c.actionMapping.lightBot/teamsapp.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ provision:
1111
- uses: teamsApp/create
1212
with:
1313
# Teams app name
14-
name: LightBot-${{TEAMSFX_ENV}}
14+
name: LightBot${{APP_NAME_SUFFIX}}
1515
# Write the information of created resources into environment file for
1616
# the specified environment variable(s).
1717
writeToEnvironmentFile:
@@ -21,7 +21,7 @@ provision:
2121
- uses: botAadApp/create
2222
with:
2323
# The Azure Active Directory application's display name
24-
name: LightBot-${{TEAMSFX_ENV}}
24+
name: LightBot${{APP_NAME_SUFFIX}}
2525
writeToEnvironmentFile:
2626
# The Azure Active Directory application's client id created for bot.
2727
botId: BOT_ID

dotnet/samples/04.ai.d.chainedActions.listBot/appPackage/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": "${{TEAMS_APP_ID}}",
66
"packageName": "com.package.name",
77
"name": {
8-
"short": "ListBot-${{TEAMSFX_ENV}}",
8+
"short": "ListBot${{APP_NAME_SUFFIX}}",
99
"full": "List Bot"
1010
},
1111
"developer": {

dotnet/samples/04.ai.d.chainedActions.listBot/env/.env.dev

+3
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ BOT_ID=
1313
TEAMS_APP_ID=
1414
BOT_AZURE_APP_SERVICE_RESOURCE_ID=
1515
BOT_DOMAIN=
16+
17+
18+
APP_NAME_SUFFIX=dev

dotnet/samples/04.ai.d.chainedActions.listBot/env/.env.local

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ TEAMSFX_ENV=local
77
BOT_ID=
88
TEAMS_APP_ID=
99
BOT_DOMAIN=
10+
11+
12+
APP_NAME_SUFFIX=local

dotnet/samples/04.ai.d.chainedActions.listBot/teamsapp.local.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ provision:
1212
- uses: teamsApp/create
1313
with:
1414
# Teams app name
15-
name: ListBot-${{TEAMSFX_ENV}}
15+
name: ListBot${{APP_NAME_SUFFIX}}
1616
# Write the information of created resources into environment file for
1717
# the specified environment variable(s).
1818
writeToEnvironmentFile:

dotnet/samples/04.ai.d.chainedActions.listBot/teamsapp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ provision:
1414
- uses: teamsApp/create
1515
with:
1616
# Teams app name
17-
name: ListBot-${{TEAMSFX_ENV}}
17+
name: ListBot${{APP_NAME_SUFFIX}}
1818
# Write the information of created resources into environment file for
1919
# the specified environment variable(s).
2020
writeToEnvironmentFile:

dotnet/samples/04.ai.e.chainedActions.devOpsBot/appPackage/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": "${{TEAMS_APP_ID}}",
66
"packageName": "com.package.name",
77
"name": {
8-
"short": "DevOps Bot-${{TEAMSFX_ENV}}",
8+
"short": "DevOps Bot${{APP_NAME_SUFFIX}}",
99
"full": "DevOps Bot"
1010
},
1111
"developer": {

dotnet/samples/04.ai.e.chainedActions.devOpsBot/env/.env.dev

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ BOT_ID=
1313
TEAMS_APP_ID=
1414
TEAMS_APP_TENANT_ID=
1515
BOT_AZURE_APP_SERVICE_RESOURCE_ID=
16-
BOT_DOMAIN=
16+
BOT_DOMAIN=
17+
18+
APP_NAME_SUFFIX=dev

dotnet/samples/04.ai.e.chainedActions.devOpsBot/env/.env.local

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ TEAMS_APP_ID=
99
TEAMS_APP_TENANT_ID=
1010
TEAMSFX_M365_USER_NAME=
1111
BOT_DOMAIN=
12-
BOT_ENDPOINT=
12+
BOT_ENDPOINT=
13+
14+
APP_NAME_SUFFIX=local

0 commit comments

Comments
 (0)