Skip to content

Commit 8452f1b

Browse files
authored
Merge pull request #235084 from rmca14/warn-4-19
Fix build warnings AM publish
2 parents 173b152 + e3ec63f commit 8452f1b

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

articles/active-directory/saas-apps/leapsome-tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ Follow these steps to enable Azure AD SSO in the Azure portal.
9696

9797
| Name | Source Attribute | Namespace |
9898
| ---------------| --------------- | --------- |
99-
| firstname | user.givenname | http://schemas.xmlsoap.org/ws/2005/05/identity/claims |
100-
| lastname | user.surname | http://schemas.xmlsoap.org/ws/2005/05/identity/claims |
101-
| title | user.jobtitle | http://schemas.xmlsoap.org/ws/2005/05/identity/claims |
102-
| picture | URL to the employee's picture | http://schemas.xmlsoap.org/ws/2005/05/identity/claims |
99+
| firstname | user.givenname | https://schemas.xmlsoap.org/ws/2005/05/identity/claims |
100+
| lastname | user.surname | https://schemas.xmlsoap.org/ws/2005/05/identity/claims |
101+
| title | user.jobtitle | https://schemas.xmlsoap.org/ws/2005/05/identity/claims |
102+
| picture | URL to the employee's picture | https://schemas.xmlsoap.org/ws/2005/05/identity/claims |
103103
| | |
104104

105105
> [!Note]

articles/active-directory/saas-apps/textmagic-tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ Follow these steps to enable Azure AD SSO in the Azure portal.
8888

8989
| Name | Source Attribute| Namespace |
9090
| --------------- | --------------- | --------------- |
91-
| company | user.companyname | http://schemas.xmlsoap.org/ws/2005/05/identity/claims |
92-
| firstName | user.givenname | http://schemas.xmlsoap.org/ws/2005/05/identity/claims |
93-
| lastName | user.surname | http://schemas.xmlsoap.org/ws/2005/05/identity/claims |
94-
| phone | user.telephonenumber | http://schemas.xmlsoap.org/ws/2005/05/identity/claims |
91+
| company | user.companyname | https://schemas.xmlsoap.org/ws/2005/05/identity/claims |
92+
| firstName | user.givenname | https://schemas.xmlsoap.org/ws/2005/05/identity/claims |
93+
| lastName | user.surname | https://schemas.xmlsoap.org/ws/2005/05/identity/claims |
94+
| phone | user.telephonenumber | https://schemas.xmlsoap.org/ws/2005/05/identity/claims |
9595

9696
1. On the **Set up single sign-on with SAML** page, in the **SAML Signing Certificate** section, find **Certificate (Base64)** and select **Download** to download the certificate and save it on your computer.
9797

articles/active-directory/verifiable-credentials/using-authenticator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Using the Authenticator for the first time presents a set of screens that you ha
5959

6060
When the Microsoft Authenticator app is installed and ready, you use the public end to end demo webapp to issue your first verifiable credential onto the Authenticator.
6161

62-
1. Open [end to end demo](http://woodgroveemployee.azurewebsites.net/) in your browser
62+
1. Open [end to end demo](https://woodgroveemployee.azurewebsites.net/) in your browser
6363
1. Enter your First Name and Last Name and press **Next**
6464
1. Select **Verify with True Identity**
6565
1. Click **Take a selfie** and **Upload government issued ID**. The demo uses simulated data and you don't need to provide a real selfie or an ID.

articles/app-service/quickstart-dotnetcore.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,12 @@ If you've already installed Visual Studio 2022:
146146
### [.NET 6.0](#tab/net60)
147147

148148
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/dotnet).
149-
- A GitHub account [Create an account for free](http://github.com/).
149+
- A GitHub account [Create an account for free](https://github.com/).
150150

151151
### [.NET Framework 4.8](#tab/netframework48)
152152

153153
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/dotnet).
154-
- A GitHub account [Create an account for free](http://github.com/).
154+
- A GitHub account [Create an account for free](https://github.com/).
155155

156156
:::zone-end
157157

articles/automation/automation-use-azure-ad.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Before installing the Azure AD modules on your computer:
5050

5151
3. Run Windows PowerShell as an administrator to create an elevated Windows PowerShell command prompt.
5252

53-
4. Deploy Azure Active Directory from [MSOnline 1.0](http://www.powershellgallery.com/packages/MSOnline/1.0).
53+
4. Deploy Azure Active Directory from [MSOnline 1.0](https://www.powershellgallery.com/packages/MSOnline/1.0).
5454

5555
5. If you're prompted to install the NuGet provider, type Y and press ENTER.
5656

articles/cognitive-services/Computer-vision/Tutorials/storage-lab-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ In this section, you'll create a new Web app in Visual Studio and add code to im
295295
}
296296
```
297297

298-
The language used here is [Razor](http://www.asp.net/web-pages/overview/getting-started/introducing-razor-syntax-c), which lets you embed executable code in HTML markup. The ```@foreach``` statement in the middle of the file enumerates the **BlobInfo** objects passed from the controller in **ViewBag** and creates HTML ```<img>``` elements from them. The ```src``` property of each element is initialized with the URI of the blob containing the image thumbnail.
298+
The language used here is [Razor](https://www.asp.net/web-pages/overview/getting-started/introducing-razor-syntax-c), which lets you embed executable code in HTML markup. The ```@foreach``` statement in the middle of the file enumerates the **BlobInfo** objects passed from the controller in **ViewBag** and creates HTML ```<img>``` elements from them. The ```src``` property of each element is initialized with the URI of the blob containing the image thumbnail.
299299

300300
1. Download and unzip the _photos.zip_ file from the [GitHub sample data repository](https://github.com/Azure-Samples/cognitive-services-sample-data-files/tree/master/ComputerVision/storage-lab-tutorial). This is an assortment of different photos you can use to test the app.
301301

articles/digital-twins/concepts-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ If you need to delete all models in an Azure Digital Twins instance at once, you
252252

253253
### Visualize models
254254

255-
Once you have uploaded models into your Azure Digital Twins instance, you can use [Azure Digital Twins Explorer](http://explorer.digitaltwins.azure.net/) to view them. The explorer contains a list of all models in the instance, as well as a **model graph** that illustrates how they relate to each other, including any inheritance and model relationships.
255+
Once you have uploaded models into your Azure Digital Twins instance, you can use [Azure Digital Twins Explorer](https://explorer.digitaltwins.azure.net/) to view them. The explorer contains a list of all models in the instance, as well as a **model graph** that illustrates how they relate to each other, including any inheritance and model relationships.
256256

257257
Here's an example of what a model graph might look like:
258258

articles/iot-edge/version-history.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This table provides recent version history for IoT Edge package releases, and hi
4242
4343
| Release notes and assets | Type | Release Date | End of Support Date | Highlights |
4444
| ------------------------ | ---- | ------------ | ------------------- | ---------- |
45-
| [1.4](https://github.com/Azure/azure-iotedge/releases/tag/1.4.0) | Long-term support (LTS) | August 2022 | November 12, 2024 | IoT Edge 1.4 LTS is supported through November 12, 2024 to match the [.NET 6 release lifecycle](https://dotnet.microsoft.com/platform/support/policy/dotnet-core#lifecycle). <br> Automatic image clean-up of unused Docker images <br> Ability to pass a [custom JSON payload to DPS on provisioning](../iot-dps/how-to-send-additional-data.md#iot-edge-support) <br> Ability to require all modules in a deployment be downloaded before restart <br> Use of the TCG TPM2 Software Stack which enables TPM hierarchy authorization values, specifying the TPM index at which to persist the DPS authentication key, and accommodating more [TPM configurations](http://github.com/Azure/iotedge/blob/897aed8c5573e8cad4b602e5a1298bdc64cd28b4/edgelet/contrib/config/linux/template.toml#L262-L288) |
45+
| [1.4](https://github.com/Azure/azure-iotedge/releases/tag/1.4.0) | Long-term support (LTS) | August 2022 | November 12, 2024 | IoT Edge 1.4 LTS is supported through November 12, 2024 to match the [.NET 6 release lifecycle](https://dotnet.microsoft.com/platform/support/policy/dotnet-core#lifecycle). <br> Automatic image clean-up of unused Docker images <br> Ability to pass a [custom JSON payload to DPS on provisioning](../iot-dps/how-to-send-additional-data.md#iot-edge-support) <br> Ability to require all modules in a deployment be downloaded before restart <br> Use of the TCG TPM2 Software Stack which enables TPM hierarchy authorization values, specifying the TPM index at which to persist the DPS authentication key, and accommodating more [TPM configurations](https://github.com/Azure/iotedge/blob/897aed8c5573e8cad4b602e5a1298bdc64cd28b4/edgelet/contrib/config/linux/template.toml#L262-L288) |
4646
| [1.3](https://github.com/Azure/azure-iotedge/releases/tag/1.3.0) | Stable | June 2022 | August 2022 | Support for Red Hat Enterprise Linux 8 on AMD and Intel 64-bit architectures.<br>Edge Hub now enforces that inbound/outbound communication uses minimum TLS version 1.2 by default<br>Updated runtime modules (edgeAgent, edgeHub) based on .NET 6 |
4747
| [1.2](https://github.com/Azure/azure-iotedge/releases/tag/1.2.0) | Stable | April 2021 | June 2022 | [IoT Edge devices behind gateways](how-to-connect-downstream-iot-edge-device.md)<br>[IoT Edge MQTT broker (preview)](how-to-publish-subscribe.md)<br>New IoT Edge packages introduced, with new installation and configuration steps. For more information, see [Update from 1.0 or 1.1 to latest release](how-to-update-iot-edge.md#special-case-update-from-10-or-11-to-latest-release).<br>Includes [Microsoft Defender for IoT micro-agent for Edge](../defender-for-iot/device-builders/overview.md).<br> Integration with Device Update. For more information, see [Update IoT Edge](how-to-update-iot-edge.md). |
4848
| [1.1](https://github.com/Azure/azure-iotedge/releases/tag/1.1.0) | Long-term support (LTS) | February 2021 | December 13, 2022 | IoT Edge 1.1 LTS is supported through December 13, 2022 to match the [.NET Core 3.1 release lifecycle](https://dotnet.microsoft.com/platform/support/policy/dotnet-core). <br> [Long-term support plan and supported systems updates](support.md) |

includes/notification-hubs-send-categories-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ In this section, you send breaking news as tagged template notifications from a
8181
[Notification Hubs REST interface]: /previous-versions/azure/reference/dn223264(v=azure.100)
8282
[Add push notifications for Mobile Apps]: /previous-versions/azure/app-service-mobile/app-service-mobile-windows-store-dotnet-get-started-push
8383
[How to use Notification Hubs from Java or PHP]: ../articles/notification-hubs/notification-hubs-java-push-notification-tutorial.md
84-
[Microsoft.Azure.NotificationHubs]: http://www.nuget.org/packages/Microsoft.Azure.NotificationHubs/
84+
[Microsoft.Azure.NotificationHubs]: https://www.nuget.org/packages/Microsoft.Azure.NotificationHubs/

includes/storage-table-concepts-include.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ Table storage contains the following components:
4141
For details about naming tables and properties, see [Understanding the Table Service Data Model](/rest/api/storageservices/Understanding-the-Table-Service-Data-Model).
4242

4343
[Table1]: ./media/storage-table-concepts-include/table1.png
44-
[OData.org]: http://www.odata.org/
44+
[OData.org]: https://www.odata.org/

0 commit comments

Comments
 (0)