Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update aka link #1126

Merged
merged 2 commits into from
May 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/fx-core/src/plugins/resource/appstudio/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ export class Constants {
public static readonly BUILD_OR_PUBLISH_QUESTION = "build-or-publish";
public static readonly REMOTE_TEAMS_APP_ID = "teams-app-id";
public static readonly READ_MORE = "Read more";
public static readonly PUBLISH_GUIDE =
"https://review.docs.microsoft.com/en-us/microsoftteams/platform/concepts/deploy-and-publish/appsource/publish";
public static readonly PUBLISH_GUIDE = "https://aka.ms/teamsfx-publish";
}
2 changes: 1 addition & 1 deletion packages/fx-core/templates/plugins/solution/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Microsoft Teams apps bring key information, common tools, and trusted processes

There are multiple ways to extend Teams, so every app is unique. Some only have one capability, while others have more than one feature to give users various options. For example, your app can display data in a central location, that is, the tab and present that same information through a conversational interface, that is, the bot.

[What is Teams app capabilities](https://review.docs.microsoft.com/en-us/microsoftteams/platform/concepts/capabilities-overview?branch=pr-en-us-3247)
[What is Teams app capabilities](https://aka.ms/teamsfx-capabilities-overview)

## Capabilities scaffolded in this project

Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Verify you have the right prerequisites for building Teams apps and install some

## Getting started

After installing the Teams toolkit, follow the [Get Started](https://review.docs.microsoft.com/en-us/mods/build-your-first-app/build-first-app-overview?branch=main) instruction in our documentation to smoothly start with.
After installing the Teams toolkit, follow the [Get Started](https://aka.ms/teamsfx-build-first-app) instruction in our documentation to smoothly start with.

Under the Teams Toolkit extension tab, you can easily discover all applicable commands in the sidebar and Command Palette with the keyword ‘TeamsFx’. It also supports [Command Line Interface (CLI)](https://www.npmjs.com/package/teamsfx-cli) to increase efficiency.

Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/src/controls/WelcomePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export default class WelcomePanel extends React.Component<any, IWelcomePanelStat
<ActionButton
iconProps={{ iconName: "Link" }}
onClick={() => {
this.openExternalLink("https://review.docs.microsoft.com");
this.openExternalLink("https://aka.ms/teamsfx-docs");
}}
>
Teams app fundamentals
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/src/handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ export async function preDebugCheckHandler(): Promise<void> {

export async function openDocumentHandler(args: any[]): Promise<boolean> {
ExtTelemetry.sendTelemetryEvent(TelemetryEvent.Documentation, getTriggerFromProperty(args));
return env.openExternal(Uri.parse("https://aka.ms/build-first-app"));
return env.openExternal(Uri.parse("https://aka.ms/teamsfx-build-first-app"));
}

export async function openWelcomeHandler(args?: any[]) {
Expand Down