A series of helpers to enable using DotNetOpenAuth in an ASP.NET application that utilizes the Membership system for user management.
IdentityManager is an user management tool for MembershipReboot and ASP.NET Identity.
Claims-based user account and identity management framework
Platform.VirtualFileSystem is a powerful .NET library that provides a uniform and cross-platform abstraction layer for file systems. It is similar to VFS features of various operating systems like Linux except it all runs in managed code. You can use one common API for accessing files from various sources (local, http, zip etc) as well as create user-defined file systems using views and overlays. Find out more at: https://github.com/platformdotnet/Platform.VirtualFileSystem
This version is for Windows desktop applications using Visual Studio 2015 Update 3, Visual Studio 2017, or Visual Studio 2019. Features: Audio - low-level audio API using XAudio2 CommonStates - factory providing commonly used D3D state objects DirectXHelpers - misc C++ helpers for D3D programming DDSTextureLoader - light-weight DDS file texture loader Effects - set of built-in shaders for common rendering tasks GamePad - gamepad controller helper using XInput GeometricPrimitive - draws basic shapes such as cubes and spheres GraphicsMemory - helper for managing dynamic graphics memory allocation Keyboard - keyboard state tracking helper Model - draws meshes loaded from .CMO, .SDKMESH, or .VBO files Mouse - mouse helper PostProcess - set of built-in shaders for common post-processing operations PrimitiveBatch - simple and efficient way to draw user primitives ScreenGrab - light-weight screen shot saver SimpleMath - simplified C++ wrapper for DirectXMath SpriteBatch - simple & efficient 2D sprite rendering SpriteFont - bitmap based text rendering VertexTypes - structures for commonly used vertex data formats WICTextureLoader - WIC-based image file texture loader
Virgil Security allows to identify users in your digital solutions. Create users Virgil Cards with Public Keys inside and use Public Key Management to protect data. Docs - https://developer.virgilsecurity.com/docs/how-to#sdk-configuration Source - https://github.com/VirgilSecurity/virgil-sdk-net Supported Platforms: - .NET Standard 1.1+ - .NET Framework 4.5+ - .NET Core 1.0+ - Universal Windows Platform 10 - Windows 8.0+ - Windows Phone 8.1+ - Xamarin.Android 7.0+ - Xamarin.iOS 10.0+ - Xamarin.Mac 3.0+ - Mono 4.6+ (OSX)
Thinktecture IdentityManager is an user management tool for MembershipReboot and ASP.NET Identity.
Basic user account management system for use with Bam
Dynamicweb 9 package containing components for the users area
Managed Fusion URL Rewriter and Reverse Proxy is a powerful URL manipulation engine based on the Apache mod_rewrite extension. It is designed, from the ground up to bring all the features of Apache mod_rewrite to IIS 6.0 and IIS 7.0. Managed Fusion Url Rewriter works with ASP.NET on Microsoft's Internet Information Server (IIS) 6.0 and Mono XPS Server and is fully supported, for all languages, in IIS 7.0, including ASP.NET and PHP. Managed Fusion Url Rewriter gives you the freedom to go beyond the standard URL schemes and develop your own scheme. URL Rewriter provides web site owners with the ability to replace URL paths and querystring into links that your users can easily remember without the need for bookmarks. As an added benefit your web site becomes search engine friendly, which means higher page ranking from the search engines, and should result in better lead generation.
The official ASP.NET API for WURFL. WURFL is a data repository containing the descriptions of tens of thousands of mobile devices. As of version 1.9.0.1, the AGPL-licensed evaluation version of the library has been discontinued. Updated versions of the WURFL .NET API are available from ScientiaMobile, Inc. under commercial terms. Licensed customers have access to the latest version of the library through a private NuGet repository managed by ScientiaMobile. (https://docs.scientiamobile.com/documentation/onsite/onsite-Dotnet-api) We strongly advise NuGet users against installing older version of the WURFL .NET API for anything else than understanding the general working of the library, as older version won’t correctly detect devices that have been released in the last two years or more. The latest version of the WURFL API can be trialed free of charge by contacting ScientiaMobile directly (https://www.scientiamobile.com/products/wurfl-onsite-device-detection/).
This version is for Universal Windows Platform apps on Windows 10 / Windows 11 using Visual Studio 2022. Features: Audio - low-level audio API using XAudio2 BufferHelpers - C++ helpers for creating D3D resources from CPU data CommonStates - factory providing commonly used D3D state objects DirectXHelpers - misc C++ helpers for D3D programming DDSTextureLoader - light-weight DDS file texture loader Effects - set of built-in shaders for common rendering tasks GamePad - gamepad controller helper using Windows.Gaming.Input GeometricPrimitive - draws basic shapes such as cubes and spheres GraphicsMemory - helper for managing dynamic graphics memory allocation Keyboard - keyboard state tracking helper Model - draws meshes loaded from .CMO, .SDKMESH, or .VBO files Mouse - mouse helper PostProcess - set of built-in shaders for common post-processing operations PrimitiveBatch - simple and efficient way to draw user primitives ScreenGrab - light-weight screen shot saver SimpleMath - simplified C++ wrapper for DirectXMath SpriteBatch - simple & efficient 2D sprite rendering SpriteFont - bitmap based text rendering VertexTypes - structures for commonly used vertex data formats WICTextureLoader - WIC-based image file texture loader
This logging library makes large use of enterprise correlation. In a lot of applications that incorporate various small and large services, it is often important to correlate events that happen across these services. It gives us a business workflow view of the various events that happen in the application, its components and services. This library provide operation and activity ID management and propagation. The main difference with this library over other is that you can configure each type of log separately. You can enable fatal, error, warning, debugging, informational, progress and sensitive data logging all independently of each other. This is more flexible than the concept of minimum level logging, such as that in log4net or serilog e.g. enabling one warning in this libraries will enable error and fatal logging as well. This library allows you to set those settings independently of each other. The SqlLogger maps AdditionalData to table columns, where the key of the dictionary entry is the column name and the value is serialised to JSON as the column value. MetaData is serialised to a single JSON value stored in the MetaData column. This means you can store data such as a User ID or Job ID in a separate column so you can filter more efficiently with indexes and partitions. TraceLogger and ConsoleLogger both seralise and format all information into a single string. The MultiLogger allows you to configure several different loggers to be used at once with different settings for each logger. Usage is in the form of: static void Main() {   ICorrelationIdHelper correlationIdHelper = new WebCorrelationIdHelper();   // This value will be set automatically to all logs within this thread... so long as System.Threading.Tasks.Task.Factory.StartNew is used.   correlationIdHelper.SetCorrelationId(Guid.NewGuid());   DoSyncWork();   DoAsyncWork(); } static void DoSyncWork() {   ILogger logger = new SqlLogger();   logger.LogDebug("Some technical debugging details."); } static void DoAsyncWork() {   System.Threading.Tasks.Task.Factory.StartNew(() => {     ILogger logger = new ConsoleLogger();     logger.LogInfo("An informative message.");   }); } This package installs cdmdotnet.Logging.dll with includes core logging functionality. Other packages depend on cdmdotnet.Logging for specific implementations.
Claims-based user account and identity management framework
Adds zip scheme/file support to Platform.VirtualFileSystem. Platform.VirtualFileSystem is a powerful .NET library that provides a uniform and cross-platform abstraction layer for file systems. It is similar to VFS features of various operating systems like Linux except it all runs in managed code. You can use one common API for accessing files from various sources (local, http, zip etc) as well as create user-defined file systems using views and overlays. Find out more at: https://github.com/platformdotnet/Platform.VirtualFileSystem
Claims-based user account and identity management framework
User authentication and management for the Schematic CMS framework
Snippets on the fly! Manage C# code snippets on solution level _about this package_ This package will enable you to manage and maintain solution agnostic C# code snippets. In other words, snippets in a solution will be deployed automatically upon build - so you can manage snippets on a "per solution" basis. Just drop the *.snippet files that should be availabe to developers of your solution anywhere under the solution folder (excluding files under your solutions "packages" folder). SolutionSnippets will discover all those files and deploy them into a special folder "__Blue.Utils.SolutionSnippets" to the current user´s snippet folder. (this would be "{Documents}\Visual Studio 2012\Code Snippets\Visual C#\My Code Snippets\__Blue.Utils.SolutionSnippets", where {Documents} is the local user´s documents library. This way, SolutionSnippets won´t interfere with already existing snippets. It is totally sufficient when there is exactly one project within your solution that installs SolutionSnippets, as all snippets-files under your solution folder will be deployed. All you need to do to deploy your solution agnostic snippets is to start a build. When building your solution, all existing solution agnostic snippets are removed. After that, all snippets in the scope of the current solution are deployed to your user´s snippet folder (remember: SolutionSnippets does not touch any existing snippets) _under the hood_ There is (sadly) no black magic involved in deploying solution agnostic snippets. The main work is done by common msbuild-tasks. Only resolving the local user´s snippet folder is done by a custom build-task. _known caveats_ Under certain circumstances Visual Studio does not reflect changes to snippets immediatly. In those cases, just restart the Visual Studio instance. In the meantime, go vote for this feature: http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/4152530-add-the-ability-to-refresh-individual-or-all-snipp Send feedback, feature-request, unexpected breaking changes, bugs, etc. via the projects nuget-page, http://www.nuget.org/packages/SolutionSnippets/ContactOwners, until there is a projet homepage...
User, Organization and Location Management API for LagoVista IoT and Device Framework
IdentityManager is an user management tool for ASP.NET Core. Maintained by Rock Solid Knowledge.
See: http://alphachitech.wordpress.com/2015/01/31/virtualizing-observable-collection/ GitHub is here: https://github.com/anagram4wander/VirtualizingObservableCollection There are no performant large data set observable collections that support write operations in .NET, so we wrote the VirtualizingObservableCollection, which does the following: ◾Implements the same interfaces as ObsevableCollection<T> so you can use it anywhere you’d use an ObsevableCollection<T> – no need to change any of your existing controls. ◾Supports true multi-user read/write without resets (maximizing performance for large-scale concurrency scenarios). ◾Manages memory on its own so it never runs out of memory, no matter how large the data set is (especially important for mobile devices). ◾Natively works asynchronously – great for slow network connections and occasionally-connected models. ◾Works great out of the box, but is flexible and extendable enough to customize for your needs. ◾Has a data access performance curve nearly as good as the regular ObsevableCollection – the cost of using it is negligible. ◾Works in any .NET project because it’s implemented in a Portable Code Library (PCL).
DEPRECATED. This package exists only for backwards compatibility. If your project references this package ("Datadog.Trace.ClrProfiler.Managed") or "Datadog.Trace.AspNet", you can remove them both. .NET Core applications no longer require any NuGet package to enable automatic instrumentation. Automatic instrumentation for both ASP.NET and ASP.NET Core is now automatically enabled. Users who need manual instrumentation should reference the "Datadog.Trace" package.
An XActLib assembly: a library of services for management of Tips shown to an application's users (generally new users).
SumoSoft Cms is an advanced Framework based on MVC5 that will let you build highly customizable websites with extreme ease. The main features include: blog, e-commerce, dynamic user permissions, advanced internationalization, IP based geo-localization, media management using both local FTP folders and Windows Azure Storage accounts, email templating, logging system
Fully managed library providing five types of heap. It implements d-ary, binary, binomial, Fibonacci and pairing heaps, in order to let the user choose the best heap to fit her needs. Each heap has its own advantages and disadvantages: please see the documentation or Wikipedia to better understand how those data structures work and how they behave in each operation.
Enterprise-grade security simplified for developers. Protect MVC web apps and RESTful APIs with a multi-stage security pipeline that includes XSS detection, authentication, IP firewall, two-factor, activity/data authorization, account verification and suspension checks. Available for all major platforms including .NET Framework MVC/Web API, .NET Core and Service Stack. To get started Visit https://ASPSecurityKit.net/docs/article/getting-started/ This is the base platform-agnostic package. To get started You should also install one of the platform specific packages such as ASPSecurityKit.NetCore, ASPSecurityKit.NetFramework.Mvc, ASPSecurityKit.NetFramework.WebApi or ASPSecurityKit.ServiceStack. Additionally, ASPSecurityKit also provides drop-in source code packages for both API and MVC web apps giving you end-to-end implementation of commonly needed functionality including login, register, forgot password, account settings (change email/password), user management, permission management, administration (impersonation), localization, production-grade graceful error handling etc. To download these source code packages into your project, install ASPSecurityKit.Tools package if you haven't already and execute start-ask command in Visual Studio Package Manager Console. For more information, visit https://ASPSecurityKit.net/docs/article/source-packages/ Commonly Used Types: ASPSecurityKit.ISecurityPipeline ASPSecurityKit.IUserService
Asp.Net Identity management dashboard to help you manage user accounts and roles
A user interface for conveniently managing Duality packages.
Abp.Zero.EntityFrameworkCore
This package implements logic for jwt generation including a set of claims widely used for user management. It also handles user data deserialization through a set of claims obtained from HttpContext making data available through dependency injection.
Octopus is a user-friendly DevOps tool for developers that supports release management, deployment automation, and operations runbooks. This package contains the Octopus CLI (octo), a tool to create and deploy releases, create and push packages, and manage environments with Octopus.
Command line tool to manage user secrets for Microsoft.Extensions.Configuration.
A tiny library that lets you impersonate any user, by acting as a managed wrapper for the LogonUser Win32 function.
IdentityUI is a simple platform for administrative management of users and admins with a graphical interface. It is easy to set up, has a clean API, and runs on all recent .NET platforms.
HereSay is a Content Management System, or CMS, with three objectives: SEO, End-User Simplicity, Extensibility.
Provides all the base classes and interfaces for managing users, roles, and tenants.
Provides Microsoft Entity Framework implementation for DevAccelerate ASP.NET Identity.
Dactevird users management library
The CoreVar.CommandLineInterface.Blazor library extends the powerful features of the CoreVar CLI framework into the Blazor environment, allowing developers to seamlessly integrate command-line interfaces within Blazor applications. This package provides custom Blazor components and services that facilitate the creation of interactive CLI tools, enabling real-time command execution and response within a web interface. It’s perfect for developers aiming to enhance their Blazor applications with dynamic CLI capabilities, improving user interaction and backend manageability.
Refit proxy to call Identity service.