From dca165d71817ddc6ad42a72789e5e20850f75831 Mon Sep 17 00:00:00 2001 From: Vincent Baaij Date: Fri, 8 Mar 2024 11:43:02 +0100 Subject: [PATCH 1/2] Fix Wizard link (#1660) --- examples/Demo/Shared/Shared/DemoNavProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Demo/Shared/Shared/DemoNavProvider.cs b/examples/Demo/Shared/Shared/DemoNavProvider.cs index ff7b017226..1510f6a02a 100644 --- a/examples/Demo/Shared/Shared/DemoNavProvider.cs +++ b/examples/Demo/Shared/Shared/DemoNavProvider.cs @@ -496,7 +496,7 @@ public DemoNavProvider() title: "Tree View" ), new NavLink( - href: "/new Icons.Regular.Size20.ArrowStepInRight()", + href: "/Wizard", icon: new Icons.Regular.Size20.TextBulletListTree(), title: "Wizard" ) From 616f79f5a774c21acc2dbae0f193d71daa8375d2 Mon Sep 17 00:00:00 2001 From: Gary Chan Date: Tue, 12 Mar 2024 13:56:08 -0700 Subject: [PATCH 2/2] updates contributing.md file --- CONTRIBUTING.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3980718a3e..b8da73aa08 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,11 +4,11 @@ ### Machine setup -To begin you'll need Git and .NET setup on your machine. +To begin you'll need Git, .NET, and NodeJS setup on your machine. -The `fluentui-blazor` repo uses Git as its source control system. If you haven't already installed it, you can download it [here](https://git-scm.com/downloads) or if you prefer a GUI-based approach, try [GitHub Desktop](https://desktop.github.com/). +The `fluentui-blazor` repository uses Git as its source control system. If you haven't already installed it, you can download it [here](https://git-scm.com/downloads) or if you prefer a GUI-based approach, try [GitHub Desktop](https://desktop.github.com/). -Once Git is installed, you'll also need .NET. Instructions and downloads for your preferred OS can be found [here](https://dotnet.microsoft.com/download). +Once Git is installed, you'll also need .NET and NodeJS. Instructions and downloads for .NET on your preferred OS can be found [here](https://dotnet.microsoft.com/download). NodeJS can be found [here](https://nodejs.org). :::important The above steps are a one-time setup for your machine and do not need to be repeated after the initial configuration. @@ -16,20 +16,21 @@ The above steps are a one-time setup for your machine and do not need to be repe ### Cloning the repository -Now that your machine is setup, you can clone the `FAST-Blazor` repository. Open a terminal and run this command: +Now that your machine is setup, you can clone the `fluentui-blazor` repository. Open a terminal and run this command: ```shell git clone https://github.com/microsoft/fluentui-blazor.git ``` + Cloning via SSH: ```shell -git clone git@github.com:microsoft/fluent-blazor.git +git clone git@github.com:microsoft/fluentui-blazor.git ``` ### Installing and building -From within the folder where you've cloned the repo, install all package dependencies and build the project with the following command. +From within the folder where you've cloned the repo, build the project with the following command. ```bash dotnet build @@ -43,7 +44,6 @@ If you'd like to contribute by fixing a bug, implementing a feature, or even cor If you are merging a pull request, be sure to use the pull request title as the commit title. The title should follow the [conventional commit guidelines](https://www.conventionalcommits.org/). It is recommended that if you are merging in pull requests regularly that you add a browser extension that will auto-correct the title for you. A few that should do this are [Refined GitHub](https://github.com/sindresorhus/refined-github) and [Squashed Merge Message](https://github.com/zachwhaley/squashed-merge-message). - ## Contribution policy A “Contribution” is work voluntarily submitted to a project. This submitted work can include code, documentation, design, answering questions, or submitting and triaging issues.