You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improving the README.md of 1.1 with screenshots and collapsable sections (#190)
* Trying to understand if pictures add value
* Update README.md
* Trying the expandable section for automation
* layout pictures
* Attempt to collapse the image
* Fixing the details
* Foldable image
* fixing the expandable image
* collapsable image
* Pre-visible image
Copy file name to clipboardExpand all lines: 1-WebApp-OIDC/1-1-MyOrg/README.md
+40-13
Original file line number
Diff line number
Diff line change
@@ -32,26 +32,32 @@ To run this sample:
32
32
33
33
There is one project in this sample. To register it, you can:
34
34
35
-
- either use PowerShell scripts that **automatically** creates the Azure AD applications and related objects (passwords, permissions, dependencies) for you and modify the Visual Studio projects' configuration files. If you want to use this automation:
35
+
- either use PowerShell scripts that **automatically** creates the Azure AD applications and related objects (passwords, permissions, dependencies) for you and modify the Visual Studio projects' configuration files.
36
36
37
-
1. On Windows run PowerShell and navigate to the solution's folder
38
-
2. In PowerShell run:
37
+
<details>
38
+
<summary>Expand to see how to use this automation</summary>
39
39
40
-
```PowerShell
41
-
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process -Force
42
-
```
40
+
1. On Windows run PowerShell and navigate to the solution's folder
43
41
44
-
3. Run the script to create your Azure AD application and configure the code of the sample application accordinly
42
+
2. In PowerShell run:
45
43
46
-
```PowerShell
47
-
.\AppCreationScripts\Configure.ps1
48
-
```
44
+
```PowerShell
45
+
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process -Force
46
+
```
47
+
48
+
3. Run the script to create your Azure AD application and configure the code of the sample application accordingly
49
+
50
+
```PowerShell
51
+
.\AppCreationScripts\Configure.ps1
52
+
```
49
53
50
-
> Other ways of running the scripts are described in [App Creation Scripts](./AppCreationScripts/AppCreationScripts.md)
54
+
> Other ways of running the scripts are described in [App Creation Scripts](./AppCreationScripts/AppCreationScripts.md)
51
55
52
-
4. Open the Visual Studio solution and click start. That's it!
56
+
4. Open the Visual Studio solution and click start. That's it!
53
57
54
-
- or, if you don't want to use automation, follow the steps below:
58
+
</details>
59
+
60
+
- or, if you want to register your application with the Azure portal, follow the steps below:
55
61
56
62
#### Choose the Azure AD tenant where you want to create your applications
57
63
@@ -68,9 +74,23 @@ As a first step you'll need to:
68
74
1. When the **Register an application page** appears, enter your application's registration information:
69
75
- In the **Name** section, enter a meaningful application name that will be displayed to users of the app, for example `WebApp`.
70
76
- In the **Supported account types** section, select **Accounts in this organizational directory only ({tenant name})**.
> Note that there are more than one redirect URIs. You'll need to add them from the **Authentication** tab later after the app has been created succesfully.
84
+
72
85
1. Select **Register** to create the application.
73
86
1. On the app **Overview** page, find the **Application (client) ID** value and record it for later. You'll need it to configure the Visual Studio configuration file for this project.
0 commit comments