DNTCommon.Web.Core 11.8.5

dotnet add package DNTCommon.Web.Core --version 11.8.5
                    
NuGet\Install-Package DNTCommon.Web.Core -Version 11.8.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DNTCommon.Web.Core" Version="11.8.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DNTCommon.Web.Core" Version="11.8.5" />
                    
Directory.Packages.props
<PackageReference Include="DNTCommon.Web.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DNTCommon.Web.Core --version 11.8.5
                    
#r "nuget: DNTCommon.Web.Core, 11.8.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DNTCommon.Web.Core@11.8.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DNTCommon.Web.Core&version=11.8.5
                    
Install as a Cake Addin
#tool nuget:?package=DNTCommon.Web.Core&version=11.8.5
                    
Install as a Cake Tool

DNTCommon.Web.Core

DNTCommon.Web.Core

DNTCommon.Web.Core provides common scenarios' solutions for ASP.NET Core applications.

Install via NuGet

To install DNTCommon.Web.Core, run the following command in the Package Manager Console:

Nuget

PM> Install-Package DNTCommon.Web.Core

You can also view the package page on NuGet.

Linux (and containers) support

The SkiaSharp library needs extra dependencies to work on Linux and containers. Please install the following NuGet packages:

PM> Install-Package SkiaSharp.NativeAssets.Linux.NoDependencies
PM> Install-Package HarfBuzzSharp.NativeAssets.Linux

You also need to modify your .csproj file to include some MSBuild directives that ensure the required files are in a good place. These extra steps are normally not required but seems to be some issues on how .NET loads them.

<Target Name="CopyFilesAfterPublish" AfterTargets="AfterPublish">
    <Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libSkiaSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />
    <Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libHarfBuzzSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />    
</Target>

Usage

After installing the DNTCommon.Web.Core package, to register its default providers, call services.AddDNTCommonWeb(); method in your Startup class.

using DNTCommon.Web.Core;

namespace MyWebApp
{
    public class Startup
    {
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddDNTCommonWeb();
        }

Features

  • ActionResults

  • Caching

    • ICacheService encapsulates IMemoryCache functionalities.
    • [NoBrowserCache] action filter sets no-cache, must-revalidate, no-store headers for the current Response.
  • DependencyInjection

    • IServiceProviderExtensions creates an IServiceScope which contains an IServiceProvider used to resolve dependencies from a newly created scope and then runs an associated callback.
  • Drawing

  • Http

    • ICommonHttpClientFactory service, reuses a single HttpClient instance across a multi-threaded application.
    • DomainHelperExtensions provides useful extension methods to extract domain info of the URL's.
    • IDownloaderService encapsulates HttpClient's best practices of downloading large files.
    • IHtmlHelperService provides helper methods to work with HTML contents such as extracting links and titles or changing relative Urls to absolute Urls.
    • IHttpRequestInfoService provides useful methods to work with current HttpContext.Request.
    • IRedirectUrlFinderService finds the actual hidden URL after multiple redirects.
    • IUrlNormalizationService transforms a URL into a normalized URL so it is possible to determine if two syntactically different URLs may be equivalent.
    • IHtmlReaderService reads the HTML document's nodes recursively.
    • IUAParserService is the updated version of the UAParser library with the latest regexes.yaml file.
  • Mail

    • IWebMailService simplifies sending an email using the MailKit library. It's able to use razor based email templates.
  • ModelBinders

    • PersianDateModelBinderProvider parses an incoming Persian date and then binds it to a DateTime property automatically. To use it globally ( assuming your app only sends Persian dates to the server), Add it to MvcOptions: services.AddMvc(options => options.UsePersianDateModelBinder()) or just apply it to an specific view-model [ModelBinder(BinderType = typeof(PersianDateModelBinder))].
    • YeKeModelBinderProvider parses an incoming text and then corrects its Ye & Ke characters automatically. To use it globally, Add it to MvcOptions: services.AddMvc(options => options.UseYeKeModelBinder()) or just apply it to an specific view-model [ModelBinder(BinderType = typeof(YeKeModelBinder))].
    • ApplyCorrectYeKeFilterAttribute parses an incoming text and then corrects its Ye & Ke characters automatically. To use it globally, Add it to MvcOptions: services.AddControllersWithViews(options => options.Filters.Add(typeof(ApplyCorrectYeKeFilterAttribute))).
  • Mvc

  • Blazor

  • Schedulers

    • BackgroundQueueController A .NET Core replacement for the old HostingEnvironment.QueueBackgroundWorkItem method.
    • ScheduledTasksController DNTScheduler.Core is a lightweight ASP.NET Core's background tasks runner and scheduler. To define a new task, create a new class that implements the IScheduledTask interface. To register this new task, call services.AddDNTScheduler(); method in your Startup class. AddDNTScheduler method, adds this new task to the list of the defined tasks. Also its first parameter defines the custom logic of the running intervals of this task. It's a callback method that will be called every second and provides the utcNow value. If it returns true, the job will be executed.If you have multiple jobs at the same time, the order parameter's value indicates the order of their execution.
  • Security

    • [AjaxOnly] action filter determines whether the HttpRequest's X-Requested-With header has XMLHttpRequest value.
    • IProtectionProviderService is an encryption provider based on Microsoft.AspNetCore.DataProtection.IDataProtector. It's only useful for short-term encryption scenarios such as creating encrypted HTTP cookies.
    • IFileNameSanitizerService determines whether the requested file is safe to download to avoid Directory Traversal & File Inclusion attacks.
    • UploadFileExtensions attribute determines only selected file extensions are safe to be uploaded.
    • AllowUploadSafeFiles attribute disallows uploading dangerous files such as .aspx, web.config and .asp files.
    • AntiDosMiddleware is a rate limiter and throttling middleware for ASP.NET Core apps. To use it first add app.UseAntiDos() and services.Configure<AntiDosConfig> to Startup.cs file. Then complete the AntiDosConfig section of the appsettings.json file.
    • IAntiXssService provides a cleaning service for unsafe HTML fragments that can lead to XSS attacks based on a whitelist of allowed tags and attributes. To use it add services.Configure<AntiXssConfig> to Startup.cs file. Then complete the AntiXssConfig section of the appsettings.json file.
    • IPasswordHasherService provides a custom Pbkdf2 hashing and validating service.
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on DNTCommon.Web.Core:

Repository Stars
VahidN/DNTIdentity
A highly customized sample of the ASP.NET Core Identity
VahidN/DntSite
این پروژه، سورس کامل و در حال استفاده‌ی وب‌سایت «دات‌نت تيپس» است
Version Downloads Last Updated
11.8.5 650 9/30/2025
11.8.4 581 8/24/2025
11.8.3 295 8/24/2025
11.8.2 975 7/22/2025
11.8.1 362 7/14/2025
11.8.0 443 6/30/2025
11.7.0 406 6/15/2025
11.6.1 445 6/13/2025
11.6.0 419 6/13/2025
11.5.1 458 6/13/2025
11.5.0 453 6/1/2025
11.4.0 487 5/27/2025
11.3.0 417 5/25/2025
11.2.0 409 5/16/2025
11.1.0 452 5/7/2025
11.0.0 604 5/6/2025
10.9.0 346 5/4/2025
10.8.0 280 5/2/2025
10.7.1 318 4/27/2025
10.7.0 245 4/26/2025
10.6.0 439 4/20/2025
10.5.0 459 4/9/2025
10.4.0 664 3/28/2025
10.3.0 249 3/15/2025
10.2.0 285 3/13/2025
10.1.0 450 3/5/2025
10.0.0 379 3/3/2025
9.9.1 270 3/2/2025
9.9.0 232 3/1/2025
9.8.2 464 2/21/2025
9.8.1 280 2/21/2025
9.8.0 296 2/21/2025
9.7.0 332 2/18/2025
9.6.1 395 2/14/2025
9.6.0 339 2/13/2025
9.5.0 340 2/11/2025
9.4.0 344 2/10/2025
9.3.0 470 2/7/2025
9.2.0 256 2/5/2025
9.1.0 269 2/4/2025
9.0.0 410 2/2/2025
8.9.0 785 2/1/2025
8.8.0 404 1/25/2025
8.7.1 480 1/19/2025
8.7.0 230 1/18/2025
8.6.0 284 1/17/2025
8.5.0 303 1/14/2025
8.4.0 273 1/12/2025
8.3.0 391 1/10/2025
8.2.7 271 1/8/2025
8.2.6 220 1/8/2025
8.2.5 376 1/1/2025
8.2.4 312 12/29/2024
8.2.3 294 12/26/2024
8.2.2 856 12/25/2024
8.2.1 248 12/24/2024
8.2.0 261 12/22/2024
8.1.0 204 12/22/2024
8.0.0 1,355 12/22/2024
7.9.11 224 12/21/2024
7.9.10 736 12/20/2024
7.9.9 162 12/19/2024
7.9.8 155 12/19/2024
7.9.7 181 12/18/2024
7.9.6 161 12/18/2024
7.9.5 379 12/17/2024
7.9.4 182 12/16/2024
7.9.3 198 12/15/2024
7.9.2 166 12/15/2024
7.9.1 189 12/14/2024
7.9.0 256 12/10/2024
7.8.1 261 12/6/2024
7.8.0 252 12/4/2024
7.7.0 250 12/1/2024
7.6.9 250 11/28/2024
7.6.8 2,101 11/19/2024
7.6.7 231 11/17/2024
7.6.6 173 11/17/2024
7.6.5 175 11/17/2024
7.6.4 156 11/17/2024
7.6.3 328 11/15/2024
7.6.2 180 11/13/2024
7.6.1 258 11/10/2024
7.6.0 203 11/9/2024
7.5.0 191 11/8/2024
7.4.0 173 11/8/2024
7.3.0 190 11/7/2024
7.2.0 216 10/31/2024
7.1.0 338 10/17/2024
7.0.0 172 10/15/2024
6.9.3 185 10/14/2024
6.9.2 170 10/14/2024
6.9.1 189 10/13/2024
6.9.0 191 10/13/2024
6.8.3 218 10/9/2024
6.8.2 177 10/9/2024
6.8.1 175 10/6/2024
6.8.0 213 10/1/2024
6.7.0 337 9/22/2024
6.6.2 177 9/21/2024
6.6.1 288 9/17/2024
6.6.0 229 9/15/2024
6.5.1 279 9/15/2024
6.5.0 186 9/15/2024
6.4.0 412 9/8/2024
6.3.1 258 8/30/2024
6.3.0 431 8/27/2024
6.2.1 308 8/21/2024
6.2.0 1,004 8/18/2024
6.1.0 196 8/17/2024
6.0.3 194 8/17/2024
6.0.2 218 8/16/2024
6.0.1 221 8/14/2024
6.0.0 217 8/13/2024
5.9.2 231 8/8/2024
5.9.1 149 8/5/2024
5.9.0 178 8/2/2024
5.8.0 163 7/31/2024
5.7.0 120 7/31/2024
5.6.2 172 7/29/2024
5.6.1 155 7/29/2024
5.6.0 171 7/29/2024
5.5.0 241 7/26/2024
5.4.0 201 7/25/2024
5.3.7 496 7/6/2024
5.3.6 328 6/29/2024
5.3.5 184 6/29/2024
5.3.4 648 6/25/2024
5.3.3 454 6/3/2024
5.3.2 224 6/2/2024
5.3.1 174 6/2/2024
5.3.0 280 5/12/2024
5.2.0 202 5/11/2024
5.1.0 214 5/9/2024
5.0.0 262 4/29/2024
4.9.0 208 4/25/2024
4.8.0 193 4/23/2024
4.7.2 203 4/22/2024
4.7.1 201 4/22/2024
4.7.0 192 4/22/2024
4.6.0 245 4/15/2024
4.5.0 208 4/13/2024
4.3.1 371 4/9/2024
4.3.0 218 4/5/2024
4.2.1 297 3/27/2024
4.2.0 206 3/27/2024
4.1.0 303 3/17/2024
4.0.1 249 3/17/2024
4.0.0 196 3/16/2024
3.9.2 263 3/2/2024
3.9.1 201 2/29/2024
3.9.0 520 2/18/2024
3.8.2 253 2/6/2024
3.8.1 194 1/31/2024
3.8.0 228 1/30/2024
3.7.0 764 12/28/2023
3.6.0 641 11/19/2023
3.5.5 216 11/18/2023
3.5.4 2,479 9/21/2023
3.5.3 1,013 8/30/2023
3.5.2 2,084 3/15/2023
3.5.1 451 3/5/2023
3.5.0 1,141 12/22/2022
3.4.1 2,214 11/20/2022
3.4.0 7,349 6/28/2022
3.3.1 577 6/25/2022
3.3.0 5,002 1/27/2022
3.2.1 824 12/18/2021
3.2.0 471 12/18/2021
3.1.0 624 11/28/2021
3.0.0 754 11/9/2021
2.9.5 883 10/26/2021
2.9.4 1,753 7/31/2021
2.9.3 556 7/31/2021
2.9.2 1,168 6/7/2021
2.9.1 2,615 2/24/2021
2.9.0 823 1/15/2021
2.8.2 672 1/8/2021
2.8.1 633 12/27/2020
2.8.0 616 12/27/2020
2.7.1 745 12/25/2020
2.7.0 589 12/24/2020
2.6.0 699 12/17/2020
2.5.0 1,889 11/23/2020
2.4.0 1,816 11/11/2020
2.3.2 871 10/17/2020
2.3.1 739 10/10/2020
2.3.0 621 10/8/2020
2.2.0 749 9/29/2020
2.1.1 1,118 9/12/2020
2.1.0 689 9/11/2020
2.0.0 974 9/3/2020
1.9.0 1,091 9/2/2020
1.8.2 2,848 6/8/2020
1.8.1 2,815 12/7/2019
1.8.0 1,086 10/23/2019
1.7.0 857 10/17/2019
1.6.1 1,077 9/24/2019
1.6.0 727 8/28/2019
1.5.1 536 8/14/2019
1.5.0 498 8/8/2019
1.4.0 9,021 3/23/2019
1.3.3 4,303 12/6/2018
1.3.2 1,641 9/20/2018
1.3.1 1,249 9/18/2018
1.3.0 2,033 6/7/2018
1.2.0 1,792 4/30/2018
1.1.0 1,642 4/21/2018
1.0.0 1,855 4/18/2018