Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tanveery authored Jan 16, 2021
1 parent 2531e7a commit 0b50801
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ reCAPTCHA for .NET is one of the most popular and well-documented reCAPTCHA libr
"RecaptchaSecretKey": "Your secret key"
</code></pre>
<p>In the <strong>ConfigureServices</strong> method of the <strong>Startup</strong> class, add the following line of code:</p>
<pre><code>using Recaptcha.Web.Configuration;
<pre><code class="language-cs">using Recaptcha.Web.Configuration;
...
RecaptchaConfigurationManager.SetConfiguration(Configuration);</pre></code>
<h3>Render reCAPTCHA Widget</h3>
Expand Down Expand Up @@ -202,14 +202,14 @@ if (recaptchaResult != RecaptchaVerificationResult.Success)
</tr>
</table>
<h2>Samples</h2>
<p>The repo comes with three working <a href="https://github.com/tanveery/recaptcha-net/tree/master/samples" target="_blank">samples</a> that you can use to quickly understand and test the library:</p>
<p>The repo comes with three working <a href="https://github.com/tanveery/recaptcha-net/tree/master/samples">samples</a> that you can use to quickly understand and test the library:</p>
<ul>
<li><strong>RecaptchaAspNetCoreSample</strong> (.NET Core 3.1 + ASP.NET Core)</li>
<li><strong>RecaptchaMVCSample</strong> (.NET Framework 4.5 + ASP.NET MVC 5)</li>
<li><strong>RecaptchaWebFormSample</strong> (.NET Framework 4.5 + ASP.NET Web Forms)</li>
</ul>
<p><strong>Note:</strong> Before running these samples, please ensure that the site key and secret key are set in the web.config (.NET Framework) or appsettings.json (.NET Core) file.</p>
<h2>Tooling</h2>
<p>The current version of the repo is created using <a href="https://visualstudio.microsoft.com/vs/community/" target="_blank">Microsoft Visual Studio 2019 Community Edition</a> with <a href="https://dotnet.microsoft.com/download/dotnet-framework/net45" target="_blank">.NET Framework 4.5</a> and <a href="https://dotnet.microsoft.com/download/dotnet-core/3.1" target="_blank">.NET Core 3.1</a> as compilation targets.
<p>The current version of the repo is created using <a href="https://visualstudio.microsoft.com/vs/community/">Microsoft Visual Studio 2019 Community Edition</a> with <a href="https://dotnet.microsoft.com/download/dotnet-framework/net45" target="_blank">.NET Framework 4.5</a> and <a href="https://dotnet.microsoft.com/download/dotnet-core/3.1">.NET Core 3.1</a> as compilation targets.
<h2>Issues</h2>
If you find a bug in the library or you have an idea about a new feature, please try to search in the existing list of <a href="https://github.com/tanveery/recaptcha-net/issues">issues</a>. If the bug or idea is not listed and addressed there, please <a href="https://github.com/tanveery/recaptcha-net/issues/new">open a new issue</a>.

0 comments on commit 0b50801

Please sign in to comment.