Wangkanai.Responsive 3.3.200

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Wangkanai.Responsive --version 3.3.200
                    
NuGet\Install-Package Wangkanai.Responsive -Version 3.3.200
                    
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="Wangkanai.Responsive" Version="3.3.200" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Wangkanai.Responsive" Version="3.3.200" />
                    
Directory.Packages.props
<PackageReference Include="Wangkanai.Responsive" />
                    
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 Wangkanai.Responsive --version 3.3.200
                    
#r "nuget: Wangkanai.Responsive, 3.3.200"
                    
#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 Wangkanai.Responsive@3.3.200
                    
#: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=Wangkanai.Responsive&version=3.3.200
                    
Install as a Cake Addin
#tool nuget:?package=Wangkanai.Responsive&version=3.3.200
                    
Install as a Cake Tool

Wangkanai Responsive View

ASP.NET Core Responsive middleware for routing base upon request client device detection to specific view. Also in the added feature of user preference made this library even more comprehensive must for developers whom to target multiple devices with view rendered and optimized directly from the server side.

Build Status Open Collective Patreon GitHub

Installation

Installation of detection library is now done with a single package reference point.

PM> install-package Wangkanai.Responsive

Configuration

This library host the component to resolve the access client device type.

Implement of the library into your web application is done by configuring the Startup.cs by adding the detection service in the ConfigureServices method.

public void ConfigureServices(IServiceCollection services)
{
    // Add detection services container and device resolver service.
    services.AddResponsive();

    // Add framework services.
    services.AddControllersWithViews();
}
  • AddResponsive() Adds the responsive services to the services container.

The current device on a request is set in the Responsive middleware. The Responsive middleware is enabled in the Configure method of Startup.cs file.

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
    app.UseResponsive();
    
    app.UseRouting();  

    app.UseEndpoints(endpoints => endpoints.MapDefaultControllerRoute());
}

Adding the TagHelper features to your web application with following in your _ViewImports.cshtml

@using WebApplication1

@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Wangkanai.Responsive
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 was computed.  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 was computed.  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 was computed.  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

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
7.14.0 2,679 7/17/2025
7.13.0 259 6/19/2025
7.12.0 1,049 6/8/2025
7.11.0 270 5/29/2025
7.10.0 266 5/19/2025
7.9.0 627 3/28/2025
7.8.0 15,234 11/27/2023
7.7.0 654 11/23/2023
7.6.0 686 11/17/2023
7.5.0 667 11/15/2023
7.4.0 175 11/1/2023
7.3.0 263 10/22/2023
7.2.0 187 9/28/2023
7.1.0 175 9/21/2023
7.0.0 953 7/20/2023
6.2.0 1,091 7/7/2023
6.1.0 901 7/1/2023
6.0.0 994 6/28/2023
5.4.0 2,102 6/16/2023
5.3.1 1,130 6/7/2023
5.3.0 1,594 5/15/2023
5.2.0 981 5/11/2023
5.1.1 1,138 4/13/2023
5.1.0 1,467 4/3/2023
5.0.0 1,228 1/18/2023
4.10.4 1,137 1/17/2023
4.10.3 1,147 1/10/2023
4.10.2 1,211 1/3/2023
4.10.1 1,154 12/31/2022
4.10.0 5,362 12/27/2022
4.9.0 1,193 12/23/2022
4.8.0 1,312 11/30/2022
4.7.0 1,107 11/28/2022
4.6.0 1,170 11/27/2022
4.5.0 1,179 11/26/2022
4.4.0 1,158 11/24/2022
4.3.0 1,173 11/24/2022
4.2.0 1,196 11/15/2022
4.1.0 1,224 11/9/2022
4.0.0 1,172 11/9/2022
3.5.2 2,423 9/27/2022
3.5.1 1,261 9/19/2022
3.5.0 1,683 9/13/2022
3.4.0 1,250 9/13/2022
3.3.300 1,290 9/9/2022
3.3.200 1,482 8/23/2022
3.3.100 1,249 8/21/2022
3.2.0 2,592 6/23/2022
3.1.0 2,215 3/6/2022
3.0.0 2,526 2/9/2022
3.0.0-alpha3 964 2/9/2022
3.0.0-alpha2 923 2/8/2022
3.0.0-alpha1 987 2/4/2022
2.0.1 34,741 9/25/2020
2.0.0 19,178 12/29/2019
2.0.0-beta15 1,773 12/27/2019 2.0.0-beta15 is deprecated because it is no longer maintained.
2.0.0-beta14 1,651 12/25/2019 2.0.0-beta14 is deprecated because it is no longer maintained.
2.0.0-beta13 1,982 12/8/2019 2.0.0-beta13 is deprecated because it is no longer maintained.
2.0.0-beta12 4,109 8/2/2019 2.0.0-beta12 is deprecated because it is no longer maintained.
2.0.0-beta11 2,426 5/2/2019 2.0.0-beta11 is deprecated because it is no longer maintained.
2.0.0-beta04 1,896 5/3/2019 2.0.0-beta04 is deprecated because it is no longer maintained.