Skip to content

Commit 79b2cbc

Browse files
StephenMolloyHongGit
authored andcommitted
Updating License text. (#8)
1 parent 47b0a79 commit 79b2cbc

11 files changed

Lines changed: 61 additions & 12 deletions

CONTRIBUTING.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,37 @@ Here are questions you can answer before you file a bug to make sure you're not
2323
4. What version Powershell are you using?
2424
5. What version of VS (including update version) are you using?
2525

26-
GitHub supports [markdown](https://help.github.com/articles/github-flavored-markdown/), so when filing bugs make sure you check the formatting before clicking submit.
26+
GitHub supports [markdown](https://help.github.com/articles/github-flavored-markdown/), so when filing bugs make sure you check the formatting before clicking submit.
27+
28+
## Contributing code and content
29+
30+
**Obtaining the source code**
31+
32+
If you are an outside contributer, please fork the repository. See the GitHub documentation for [forking a repo](https://help.github.com/articles/fork-a-repo/) if you have any questions about this.
33+
34+
**Submitting a pull request**
35+
36+
You will need to sign a [Contributor License Agreement](https://cla.opensource.microsoft.com//) when submitting your pull request. To complete the Contributor License Agreement (CLA), you will need to follow the instructions provided by the CLA bot when you send the pull request. This needs to only be done once for any Microsoft OSS project.
37+
38+
If you don't know what a pull request is read this article: https://help.github.com/articles/using-pull-requests. Make sure the respository can build and all tests pass.
39+
40+
**Commit/Pull Request Format**
41+
42+
```
43+
Summary of the changes (Less than 80 chars)
44+
- Detail 1
45+
- Detail 2
46+
47+
Addresses #bugnumber (in this specific format)
48+
```
49+
50+
**Tests**
51+
52+
- Tests need to be provided for every bug/feature that is completed.
53+
- Tests only need to be present for issues that need to be verified by QA (e.g. not tasks)
54+
- If there is a scenario that is far too hard to test there does not need to be a test for it.
55+
- "Too hard" is determined by the team as a whole.
56+
57+
**Feedback**
58+
59+
Your pull request will now go through extensive checks by the subject matter experts on our team. Please be patient; we have hundreds of pull requests across all of our repositories. Update your pull request according to feedback until it is approved by one of the ASP.NET team members. After that, one of our team members will add the pull request to **dev**.

LICENSE.txt

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
11
ASP.NET Configuration Builders
22

33
Copyright (c) Microsoft Corporation
4+
45
All rights reserved.
56

67
MIT License
78

8-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
9+
Permission is hereby granted, free of charge, to any person obtaining a copy of
10+
this software and associated documentation files (the ""Software""), to deal in
11+
the Software without restriction, including without limitation the rights to
12+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
13+
the Software, and to permit persons to whom the Software is furnished to do so,
14+
subject to the following conditions:
915

10-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
16+
The above copyright notice and this permission notice shall be included in all
17+
copies or substantial portions of the Software.
1118

12-
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
21+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
22+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
23+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,10 @@ public class CustomConfigBuilder : KeyValueConfigBuilder
179179
}
180180
```
181181

182+
## How to contribute
183+
184+
Information on contributing to this repo is in the [Contributing Guide](CONTRIBUTING.md).
185+
182186
## Blog Posts
183187
[Announcing .NET 4.7.1 Tools for the Cloud](https://blogs.msdn.microsoft.com/webdev/2017/11/17/announcing-net-4-7-1-tools-for-the-cloud/)
184188
[.Net Framework 4.7.1 ASP.NET and Configuration features](https://blogs.msdn.microsoft.com/dotnet/2017/09/13/net-framework-4-7-1-asp-net-and-configuration-features/)

src/Azure/AzureKeyVaultConfigBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT license.
2+
// Licensed under the MIT license. See the License.txt file in the project root for full license information.
33

44
using System;
55
using System.Collections.Concurrent;

src/Base/KeyValueConfigBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT license.
2+
// Licensed under the MIT license. See the License.txt file in the project root for full license information.
33

44
using System;
55
using System.Configuration;

src/Base/KeyValueMode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT license.
2+
// Licensed under the MIT license. See the License.txt file in the project root for full license information.
33

44
namespace Microsoft.Configuration.ConfigurationBuilders
55
{

src/Base/Utils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT license.
2+
// Licensed under the MIT license. See the License.txt file in the project root for full license information.
33

44
using System;
55
using System.IO;

src/Environment/EnvironmentConfigBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT license.
2+
// Licensed under the MIT license. See the License.txt file in the project root for full license information.
33

44
using System;
55
using System.Collections;

src/Json/SimpleJsonConfigBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT license.
2+
// Licensed under the MIT license. See the License.txt file in the project root for full license information.
33

44
using System;
55
using System.Collections;

src/Json/SimpleJsonConfigBuilderMode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT license.
2+
// Licensed under the MIT license. See the License.txt file in the project root for full license information.
33

44
namespace Microsoft.Configuration.ConfigurationBuilders
55
{

0 commit comments

Comments
 (0)