Skip to content

Commit 446c5e2

Browse files
authored
[Mgmt] Update contribution section of readme (Azure#27947)
* update contribution section of readme * update monitor
1 parent 7cd48c7 commit 446c5e2

File tree

9 files changed

+50
-33
lines changed
  • sdk
    • cdn/Azure.ResourceManager.Cdn
    • compute/Azure.ResourceManager.Compute
    • dnsresolver/Azure.ResourceManager.DnsResolver
    • monitor/Azure.ResourceManager.Monitor
    • storagepool/Azure.ResourceManager.StoragePool
    • storage/Azure.ResourceManager.Storage
    • webpubsub/Azure.ResourceManager.WebPubSub
    • websites/Azure.ResourceManager.AppService

9 files changed

+50
-33
lines changed

sdk/cdn/Azure.ResourceManager.Cdn/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This package follows the [new Azure SDK guidelines](https://azure.github.io/azur
66

77
### Install the package
88

9-
Install the Azure cdn management library for .NET with [NuGet](https://www.nuget.org/):
9+
Install the Azure Cdn management library for .NET with [NuGet](https://www.nuget.org/):
1010

1111
```PowerShell
1212
Install-Package Azure.ResourceManager.Cdn -Version 1.0.0-beta.4

sdk/compute/Azure.ResourceManager.Compute/README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ The default option to create an authenticated client is to use `DefaultAzureCred
3434
To authenticate to Azure and create an `ArmClient`, do the following:
3535

3636
```C# Snippet:Readme_AuthClient
37+
using Azure.Core;
3738
using Azure.Identity;
3839
using Azure.ResourceManager;
39-
using Azure.Core;
4040

4141
// Code omitted for brevity
4242
@@ -202,7 +202,7 @@ For more information on Azure SDK, please refer to [this website](https://azure.
202202

203203
## Contributing
204204

205-
For details on contributing to this repository, see the [contributing guide](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/docs/CONTRIBUTING.md).
205+
For details on contributing to this repository, see the [contributing guide][cg].
206206

207207
This project welcomes contributions and suggestions. Most contributions
208208
require you to agree to a Contributor License Agreement (CLA) declaring
@@ -215,6 +215,11 @@ whether you need to provide a CLA and decorate the PR appropriately
215215
bot. You will only need to do this once across all repositories using
216216
our CLA.
217217

218-
This project has adopted the Microsoft Open Source Code of Conduct. For
219-
more information see the Code of Conduct FAQ or contact
218+
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For
219+
more information see the [Code of Conduct FAQ][coc_faq] or contact
220220
<[email protected]> with any additional questions or comments.
221+
222+
<!-- LINKS -->
223+
[cg]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/docs/CONTRIBUTING.md
224+
[coc]: https://opensource.microsoft.com/codeofconduct/
225+
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/

sdk/compute/Azure.ResourceManager.Compute/tests/Samples/Readme.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
// Licensed under the MIT License.
33

44
#region Snippet:Readme_AuthClient
5+
using Azure.Core;
56
using Azure.Identity;
67
using Azure.ResourceManager;
7-
using Azure.Core;
88
#if !SNIPPET
9-
using System.Threading.Tasks;
109
using Azure.ResourceManager.Resources;
1110
using Azure.ResourceManager.Resources.Models;
1211
using NUnit.Framework;
12+
using System.Threading.Tasks;
1313

1414
namespace Azure.ResourceManager.Compute.Tests.Samples
1515
{

sdk/dnsresolver/Azure.ResourceManager.DnsResolver/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ For more information on Azure SDK, please refer to [this website](https://azure.
5252

5353
## Contributing
5454

55-
For details on contributing to this repository, see the contributing
56-
guide.
55+
For details on contributing to this repository, see the [contributing guide][cg].
5756

5857
This project welcomes contributions and suggestions. Most contributions
5958
require you to agree to a Contributor License Agreement (CLA) declaring
@@ -66,11 +65,14 @@ whether you need to provide a CLA and decorate the PR appropriately
6665
bot. You will only need to do this once across all repositories using
6766
our CLA.
6867

69-
This project has adopted the Microsoft Open Source Code of Conduct. For
70-
more information see the Code of Conduct FAQ or contact
68+
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For
69+
more information see the [Code of Conduct FAQ][coc_faq] or contact
7170
<[email protected]> with any additional questions or comments.
7271

7372
<!-- LINKS -->
73+
[cg]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/docs/CONTRIBUTING.md
74+
[coc]: https://opensource.microsoft.com/codeofconduct/
75+
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
7476
[style-guide-msft]: https://docs.microsoft.com/style-guide/capitalization
7577
[style-guide-cloud]: https://aka.ms/azsdk/cloud-style-guide
7678

sdk/monitor/Azure.ResourceManager.Monitor/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Azure monitor Management client library for .NET
1+
# Azure Monitor Management client library for .NET
22

33
This package follows the [new Azure SDK guidelines](https://azure.github.io/azure-sdk/general_introduction.html) which provide a number of core capabilities that are shared amongst all Azure SDKs, including the intuitive Azure Identity library, an HTTP Pipeline with custom policies, error-handling, distributed tracing, and much more.
44

55
## Getting started
66

77
### Install the package
88

9-
Install the Azure monitor management library for .NET with [NuGet](https://www.nuget.org/):
9+
Install the Azure Monitor management library for .NET with [NuGet](https://www.nuget.org/):
1010

1111
```PowerShell
1212
Install-Package Azure.ResourceManager.Monitor -Version 1.0.0-beta.1
@@ -52,8 +52,7 @@ For more information on Azure SDK, please refer to [this website](https://azure.
5252

5353
## Contributing
5454

55-
For details on contributing to this repository, see the contributing
56-
guide.
55+
For details on contributing to this repository, see the [contributing guide][cg].
5756

5857
This project welcomes contributions and suggestions. Most contributions
5958
require you to agree to a Contributor License Agreement (CLA) declaring
@@ -66,11 +65,14 @@ whether you need to provide a CLA and decorate the PR appropriately
6665
bot. You will only need to do this once across all repositories using
6766
our CLA.
6867

69-
This project has adopted the Microsoft Open Source Code of Conduct. For
70-
more information see the Code of Conduct FAQ or contact
68+
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For
69+
more information see the [Code of Conduct FAQ][coc_faq] or contact
7170
<[email protected]> with any additional questions or comments.
7271

7372
<!-- LINKS -->
73+
[cg]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/docs/CONTRIBUTING.md
74+
[coc]: https://opensource.microsoft.com/codeofconduct/
75+
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
7476
[style-guide-msft]: https://docs.microsoft.com/style-guide/capitalization
7577
[style-guide-cloud]: https://aka.ms/azsdk/cloud-style-guide
7678

sdk/storage/Azure.ResourceManager.Storage/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ For more information on Azure SDK, please refer to [this website](https://azure.
133133

134134
## Contributing
135135

136-
For details on contributing to this repository, see the contributing
137-
guide.
136+
For details on contributing to this repository, see the [contributing guide][cg].
138137

139138
This project welcomes contributions and suggestions. Most contributions
140139
require you to agree to a Contributor License Agreement (CLA) declaring
@@ -147,11 +146,14 @@ whether you need to provide a CLA and decorate the PR appropriately
147146
bot. You will only need to do this once across all repositories using
148147
our CLA.
149148

150-
This project has adopted the Microsoft Open Source Code of Conduct. For
151-
more information see the Code of Conduct FAQ or contact
149+
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For
150+
more information see the [Code of Conduct FAQ][coc_faq] or contact
152151
<[email protected]> with any additional questions or comments.
153152

154153
<!-- LINKS -->
154+
[cg]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/docs/CONTRIBUTING.md
155+
[coc]: https://opensource.microsoft.com/codeofconduct/
156+
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
155157
[style-guide-msft]: https://docs.microsoft.com/style-guide/capitalization
156158
[style-guide-cloud]: https://aka.ms/azsdk/cloud-style-guide
157159

sdk/storagepool/Azure.ResourceManager.StoragePool/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ For more information on Azure SDK, please refer to [this website](https://azure.
5252

5353
## Contributing
5454

55-
For details on contributing to this repository, see the contributing
56-
guide.
55+
For details on contributing to this repository, see the [contributing guide][cg].
5756

5857
This project welcomes contributions and suggestions. Most contributions
5958
require you to agree to a Contributor License Agreement (CLA) declaring
@@ -66,11 +65,14 @@ whether you need to provide a CLA and decorate the PR appropriately
6665
bot. You will only need to do this once across all repositories using
6766
our CLA.
6867

69-
This project has adopted the Microsoft Open Source Code of Conduct. For
70-
more information see the Code of Conduct FAQ or contact
68+
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For
69+
more information see the [Code of Conduct FAQ][coc_faq] or contact
7170
<[email protected]> with any additional questions or comments.
7271

7372
<!-- LINKS -->
73+
[cg]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/docs/CONTRIBUTING.md
74+
[coc]: https://opensource.microsoft.com/codeofconduct/
75+
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
7476
[style-guide-msft]: https://docs.microsoft.com/style-guide/capitalization
7577
[style-guide-cloud]: https://aka.ms/azsdk/cloud-style-guide
7678

sdk/webpubsub/Azure.ResourceManager.WebPubSub/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ For more information on Azure SDK, please refer to [this website](https://azure.
5252

5353
## Contributing
5454

55-
For details on contributing to this repository, see the contributing
56-
guide.
55+
For details on contributing to this repository, see the [contributing guide][cg].
5756

5857
This project welcomes contributions and suggestions. Most contributions
5958
require you to agree to a Contributor License Agreement (CLA) declaring
@@ -66,11 +65,14 @@ whether you need to provide a CLA and decorate the PR appropriately
6665
bot. You will only need to do this once across all repositories using
6766
our CLA.
6867

69-
This project has adopted the Microsoft Open Source Code of Conduct. For
70-
more information see the Code of Conduct FAQ or contact
68+
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For
69+
more information see the [Code of Conduct FAQ][coc_faq] or contact
7170
<[email protected]> with any additional questions or comments.
7271

7372
<!-- LINKS -->
73+
[cg]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/docs/CONTRIBUTING.md
74+
[coc]: https://opensource.microsoft.com/codeofconduct/
75+
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
7476
[style-guide-msft]: https://docs.microsoft.com/style-guide/capitalization
7577
[style-guide-cloud]: https://aka.ms/azsdk/cloud-style-guide
7678

sdk/websites/Azure.ResourceManager.AppService/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ For more information on Azure SDK, please refer to [this website](https://azure.
6363

6464
## Contributing
6565

66-
For details on contributing to this repository, see the contributing
67-
guide.
66+
For details on contributing to this repository, see the [contributing guide][cg].
6867

6968
This project welcomes contributions and suggestions. Most contributions
7069
require you to agree to a Contributor License Agreement (CLA) declaring
@@ -77,11 +76,14 @@ whether you need to provide a CLA and decorate the PR appropriately
7776
bot. You will only need to do this once across all repositories using
7877
our CLA.
7978

80-
This project has adopted the Microsoft Open Source Code of Conduct. For
81-
more information see the Code of Conduct FAQ or contact
79+
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For
80+
more information see the [Code of Conduct FAQ][coc_faq] or contact
8281
<[email protected]> with any additional questions or comments.
8382

8483
<!-- LINKS -->
84+
[cg]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/resourcemanager/Azure.ResourceManager/docs/CONTRIBUTING.md
85+
[coc]: https://opensource.microsoft.com/codeofconduct/
86+
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
8587
[style-guide-msft]: https://docs.microsoft.com/style-guide/capitalization
8688
[style-guide-cloud]: https://aka.ms/azsdk/cloud-style-guide
8789

0 commit comments

Comments
 (0)