bootstrap
by: The Bootstrap Authors
- 307 total downloads
- Latest version: 5.3.3
The most popular front-end framework for developing responsive, mobile first projects on the web.
BouncyCastle
by: Bouncy Castle Project Contributors
- 44 total downloads
- Latest version: 1.8.9
The Bouncy Castle Crypto package is a C# implementation of cryptographic algorithms and protocols, it was developed by the Legion of the Bouncy Castle, a registered Australian Charity, with a little help! The Legion, and the latest goings on with this package, can be found at [http://www.bouncycastle.org](http://www.bouncycastle.org). In addition to providing basic cryptography algorithms, the package also provides support for CMS, TSP, X.509 certificate generation and a variety of other standards such as OpenPGP.
BouncyCastle.Cryptography
by: Legion of the Bouncy Castle Inc.
- 52 total downloads
- Latest version: 2.5.0-beta.105
BouncyCastle.NET is a popular cryptography library for .NET
BuildBundlerMinifier
by: Mads Kristensen
- 584 total downloads
- Latest version: 3.2.449
Bundles and minifies CSS, JS and HTML files
CacheManager.Core
by: MichaConrad
- 188 total downloads
- Latest version: 2.0.0-beta-1629
CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features. The Core library contains all base interfaces and tools. You should install at least one other CacheManager package to get cache handle implementations.
CacheManager.Microsoft.Extensions.Configuration
by: MichaConrad
- 89 total downloads
- Latest version: 2.0.0-beta-1629
CacheManager extension package to use Microsoft.Extensions.Configuration to configure the CacheManager instance. CacheManager is an open source caching abstraction layer for .NET written in C#. This is the ASP.NET Core configuration integration package.
CacheManager.Microsoft.Extensions.Logging
by: MichaConrad
- 87 total downloads
- Latest version: 2.0.0-beta-1629
CacheManager extension package to work with Microsoft.Extensions.Logging as logging provider. CacheManager is an open source caching abstraction layer for .NET written in C#. The ASP.NET Core logging provides a bridge to the Microsoft.Extensions.Logging framework.
Castle.Core
by: Castle Project Contributors
- 193 total downloads
- Latest version: 5.1.1
Castle Core, including DynamicProxy, Logging Abstractions and DictionaryAdapter
CommandLineParser
by: gsscoder nemec ericnewton76 moh-hassan
- 182 total downloads
- Latest version: 2.9.1
Terse syntax C# command line parser for .NET. For FSharp support see CommandLineParser.FSharp. The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks.
Common.Logging
by: Aleksandar Seovic Mark Pollack Erich Eichinger Stephen Bohlen
- 170 total downloads
- Latest version: 3.4.1
Common.Logging library introduces a simple abstraction to allow you to select a specific logging implementation at runtime.
Common.Logging.Core
by: Aleksandar Seovic Mark Pollack Erich Eichinger Stephen Bohlen
- 113 total downloads
- Latest version: 3.4.1
Common.Logging.Core contains the portable (PCL) implementation of the Common.Logging low-level abstractions common to all other Common.Logging packages.
Common.Logging.Log4Net.Universal
by: mperdeck
- 28 total downloads
- Latest version: 1.2.0
Common Logging Adapter for Log4Net. Unlike Common.Logging.Log4Net1215 etc., this package is not tied to a particular version of Log4Net, so does not need to be upgraded for each new version of Log4Net.
Common.Logging.Log4Net1211
by: Aleksandar Seovic Mark Pollack Erich Eichinger Stephen Bohlen
- 143 total downloads
- Latest version: 3.4.1
Common.Logging library bindings for Log4Net 1.2.11 logging framework.
Common.Logging.Log4Net1212
by: Aleksandar Seovic Mark Pollack Erich Eichinger Stephen Bohlen
- 81 total downloads
- Latest version: 3.4.1
Common.Logging library bindings for Log4Net 1.2.12 logging framework.
Common.Logging.Log4Net1215
by: Aleksandar Seovic Mark Pollack Erich Eichinger Stephen Bohlen G. Stoynev
- 68 total downloads
- Latest version: 3.4.1
Common.Logging library bindings for Log4Net 1.2.15 logging framework.
CommonServiceLocator
by: .NET Foundation and Contributors
- 58 total downloads
- Latest version: 2.0.7
The library provides an abstraction over IoC containers and service locators. Using the library allows an application to indirectly access the capabilities without relying on hard references.
coverlet.collector
by: tonerdo
- 96 total downloads
- Latest version: 6.0.2
Coverlet is a cross platform code coverage library for .NET, with support for line, branch and method coverage.
Dapper
by: Sam Saffron Marc Gravell Nick Craver
- 407 total downloads
- Latest version: 2.1.35
A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..
DartSassBuilder
by: Johan van Rensburg Dean Wiseman
- 54 total downloads
- Latest version: 1.1.0
Compile Sass files to css on project build.
Data8.PowerPlatform.Dataverse.Client
by: MarkMpn Data8 Ltd
- 56 total downloads
- Latest version: 2.4.2
Provides a WS-Trust compatible client for connecting to on-premise IFD instances of Dynamics 365 from .NET Core.
This package builds on top of Microsoft.PowerPlatform.Dataverse.Client and offers an alternative IOrganizationService implementation using WS-Trust.
This allows you to connect using the URL of the organization service, username and password without any additional
configuration.
Because this OnPremiseClient implements the same IOrganizationService as the standard ServiceClient implementation
your code can work with either as shown in the sample code below.
using Data8.PowerPlatform.Dataverse.Client;
using Microsoft.PowerPlatform.Dataverse.Client;
using Microsoft.Xrm.Sdk;
var onPrem = new OnPremiseClient("https://org.crm.contoso.com/XRMServices/2011/Organization.svc", "AD\\username", "password!");
var online = new ServiceClient("AuthType=ClientSecret;Url=https://contoso.crm.dynamics.com;ClientId=637C79F7-AE71-4E9A-BD5B-1EC5EC9F397A;ClientSecret=p1UiydoIWwUH5AdMbiVBOrEYn8t4RXud");
CreateRecord(onPrem);
CreateRecord(online);
void CreateRecord(IOrganizationService svc)
{
var entity = new Entity("account")
{
["name"] = "Data8"
};
entity.Id = svc.Create(entity);
}