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
One of the easiest ways to contribute is to participate in discussions and discuss issues. You can also contribute by submitting pull requests with code changes.
4
+
5
+
6
+
## General feedback and discussions?
7
+
Please start a discussion on the [Issue tracker](https://github.com/aspnet/aspnetoutputcache/issues).
8
+
9
+
10
+
## Bugs and feature requests?
11
+
For non-security related bugs please log a new issue according to the [Functional bug template](https://github.com/aspnet/AspNetOutputCache/wiki/Functional-bug-template).
12
+
13
+
14
+
15
+
## Reporting security issues and bugs
16
+
Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) [email protected]. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the [Security TechCenter](https://technet.microsoft.com/en-us/security/ff852094.aspx).
17
+
18
+
19
+
## Contributing code and content
20
+
21
+
**Obtaining the source code**
22
+
23
+
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.
24
+
25
+
**Submitting a pull request**
26
+
27
+
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.
28
+
29
+
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.
30
+
31
+
**Commit/Pull Request Format**
32
+
33
+
```
34
+
Summary of the changes (Less than 80 chars)
35
+
- Detail 1
36
+
- Detail 2
37
+
38
+
Addresses #bugnumber (in this specific format)
39
+
```
40
+
41
+
**Tests**
42
+
43
+
- Tests need to be provided for every bug/feature that is completed.
44
+
- Tests only need to be present for issues that need to be verified by QA (e.g. not tasks)
45
+
- If there is a scenario that is far too hard to test there does not need to be a test for it.
46
+
- "Too hard" is determined by the team as a whole.
47
+
48
+
**Feedback**
49
+
50
+
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**.
OutputCacheModule is ASP.NET’s default handler for storing the generated output of pages, controls, and HTTP responses. This content can then be reused when appropriate to improve performance. Prior to the .NET Framework 4.6.2, the OutputCache Module did not support async read/write to the storage. You can find more details on [this blog post](https://blogs.msdn.microsoft.com/webdev/2016/12/05/introducing-the-asp-net-async-outputcache-module/).
3
+
4
+
## How to build
5
+
1. Open a [VS developer command prompt](https://docs.microsoft.com/en-us/dotnet/framework/tools/developer-command-prompt-for-vs)
6
+
2. Run build.cmd. This will build Nuget package and run all the unit tests.
7
+
3. All the build artifacts will be under AspNetOutputCache\bin\Release\ folder.
8
+
9
+
## How to contribute
10
+
Information on contributing to this repo is in the [Contributing Guide](CONTRIBUTING.md).
0 commit comments