QRCodeHelper
by: J.Sakamoto
- 27 total downloads
- Latest version: 1.0.4
This helper for WebMatrix and ASP.NET Web Pages allows you to easily display QR Code on your site.
あなたのASP.NETページにQRコードを容易に表示することのできる、WebMatrix および ASP.NET Web Pages 用のヘルパーです。
reCAPTCH.MVC
by: Bhaumik Patel
- 25 total downloads
- Latest version: 1.0.1
ReCAPTCHA MVC lets you embed a CAPTCHA in your web pages in order to protect them against spam and other types of automated abuse.
DEMO and Document => http://recaptchamvc.apphb.com/
The primary features of the library are:
--> reCAPTCHA API verion 2.0 Support
--> The color theme of the widget. (dark, light)
--> The type of CAPTCHA to serve. (audio, image)
--> MVC 4 and MVC 5 Support
Remotion.Linq
by: rubicon IT GmbH
- 20 total downloads
- Latest version: 2.1.1
re-linq Frontend: A foundation for parsing LINQ expression trees and generating queries in SQL or other languages.
Key features:
- Transforms expression trees into abstract syntax trees resemblying LINQ query expressions (from ... select syntax)
- Simplifies many aspects of this tree (sub queries, transparent identifieres, pre-evaluation ...)
- Provides basic infrastructure for backend development (e.g. SQL generation)
- Provides a framework for user-defined query extensions and transformations
Respond
by: Scott Jehl Paul Irish Nicholas Zakas
- 23 total downloads
- Latest version: 1.4.2
The goal of this script is to provide a fast and lightweight (3kb minified / 1kb gzipped) script to enable responsive web designs in browsers that don't support CSS3 Media Queries - in particular, Internet Explorer 8 and under. It's written in such a way that it will probably patch support for other non-supporting browsers as well (more information on that soon).
RestSharp
by: John Sheehan RestSharp Community
- 19 total downloads
- Latest version: 106.5.1
Simple REST and HTTP API Client
Serilog
by: Serilog Contributors
- 20 total downloads
- Latest version: 2.9.0
Simple .NET logging with fully-structured events
Serilog.Extensions.Logging
by: Microsoft Serilog Contributors
- 11 total downloads
- Latest version: 3.1.0
Low-level Serilog provider for Microsoft.Extensions.Logging
Sharpnado.Tabs
by: Jean-Marie Alfonsi
- 9 total downloads
- Latest version: 2.2.0
Pure Xamarin.Forms tabs:
* Fixed tabs (android tabs style)
* Scrollable tabs
* Vertical tabs
* Material design tabs (top and leading icon)
* Support for SVG images
* Segmented tabs
* Custom shadows (neumorphism ready)
* Badges on tabs
* Circle button in tab bar
* Bottom bar tabs (ios tabs style)
* Custom tabs (be creative just implement TabItem)
* Independent ViewSwitcher
* Bindable with ItemsSource
--------------
Installation
--------------
* In Core project, in `App.xaml.cs`:
public App()
{
InitializeComponent();
Sharpnado.Tabs.Initializer.Initialize(loggerEnable: false);
...
}
* In iOS project:
Xamarin.Forms.Forms.Init();
Sharpnado.Tabs.iOS.Preserver.Preserve();
* In UWP project:
var rendererAssemblies = new[]
{
typeof(UWPShadowsRenderer).GetTypeInfo().Assembly,
typeof(UwpTintableImageEffect).GetTypeInfo().Assembly,
};
Xamarin.Forms.Forms.Init(e, rendererAssemblies);
SharpZipLib
by: ICSharpCode
- 9 total downloads
- Latest version: 1.3.3
SharpZipLib (#ziplib, formerly NZipLib) is a compression library for Zip, GZip, BZip2, and Tar written entirely in C# for .NET. It is implemented as an assembly (installable in the GAC), and thus can easily be incorporated into other projects (in any .NET language)
SimpleInjector
by: Simple Injector Contributors
- 98 total downloads
- Latest version: 4.10.2
Simple Injector is an easy, flexible and fast dependency injection library that uses best practice to guide your solutions toward the pit of success.
SimpleInjector.Extensions.LifetimeScoping
by: Simple Injector Contributors
- 23 total downloads
- Latest version: 4.0.0
The Lifetime Scoping package adds an advanced new lifestyle called 'Lifetime Scope', which allows instances to live within an explicitly defined thread-specific scope and get disposed when this scope ends.
SimpleInjector.Integration.Web
by: Simple Injector Contributors
- 17 total downloads
- Latest version: 4.9.0
The Simple Injector ASP.NET Integration package adds a lifestyle to the Simple Injector called 'Per Web Request', which allows instances to live within a single HTTP request and get disposed when the request ends.
SimpleInjector.Integration.Web.Mvc
by: Simple Injector Contributors
- 18 total downloads
- Latest version: 4.9.0
Simple Injector ASP.NET MVC Integration.
SixLabors.Fonts
by: Six Labors and contributors
- 8 total downloads
- Latest version: 1.0.0-beta19
A cross-platform library for loading and laying out fonts for processing and measuring; written in C#
SkiaSharp
by: Microsoft
- 25 total downloads
- Latest version: 2.88.1
SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library.
It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
Splat
by: Paul Betts
- 15 total downloads
- Latest version: 2.0.0
A library to make things cross-platform that should be
sqlite-net-pcl
by: SQLite-net
- 33 total downloads
- Latest version: 1.9.141-beta
SQLite-net is an open source and light weight library providing easy SQLite database storage for .NET, Mono, and Xamarin applications.
This version uses SQLitePCLRaw to provide platform independent versions of SQLite.
SQLitePCLRaw.bundle_e_sqlite3
by: Eric Sink
- 14 total downloads
- Latest version: 2.0.2
This 'batteries-included' bundle brings in SQLitePCLRaw.core and the necessary stuff for certain common use cases. Call SQLitePCL.Batteries.Init(). Policy of this bundle: e_sqlite3 included
SQLitePCLRaw.bundle_green
by: Eric Sink
- 66 total downloads
- Latest version: 2.1.2
This 'batteries-included' bundle brings in SQLitePCLRaw.core and the necessary stuff for certain common use cases. Call SQLitePCL.Batteries.Init(). Policy of this bundle: iOS=system SQLite, others=e_sqlite3 included. Note that this bundle is identical to bundle_e_sqlite3, except on iOS where it uses the system SQLite library instead of e_sqlite3. In other words, when you use this bundle in a cross-platform app, your app is not using the same SQLite build configuration on all platforms.
SQLitePCLRaw.core
by: Eric Sink
- 76 total downloads
- Latest version: 2.1.6
SQLitePCL.raw is a Portable Class Library (PCL) for low-level (raw) access to SQLite. This package does not provide an API which is friendly to app developers. Rather, it provides an API which handles platform and configuration issues, upon which a friendlier API can be built. In order to use this package, you will need to also add one of the SQLitePCLRaw.provider.* packages and call raw.SetProvider(). Convenience packages are named SQLitePCLRaw.bundle_*.