Found 1,621 packages
The Open XML PowerTools provides guidance and example code for programming with Open XML Documents (DOCX, XLSX, and PPTX). It is based on, and extends the functionality of the Open XML SDK. It supports scenarios such as: •Splitting DOCX/PPTX files into multiple files. •Combining multiple DOCX/PPTX files into a single file. •Populating content in template DOCX files with data from XML. •High-fidelity conversion of DOCX to HTML. •Searching and replacing content in DOCX/PPTX using regular expressions. •Managing tracked-revisions, including detecting tracked revisions, and accepting tracked revisions. •Updating Charts in DOCX/PPTX files, including updating cached data, as well as the embedded XLSX. •Retrieving metrics from DOCX files, including the hierarchy of styles used, the languages used, and the fonts used. •Writing XLSX files using far simpler code than directly writing the markup, including a streaming approach that enables writing XLSX files with millions of rows.
Based on maintainer EricWhite's vNext fork, includes .NET 6.0 and .NET Standard 2.0 build target for use in cross-platform scenarios. The Open XML PowerTools provides guidance and example code for programming with Open XML Documents (DOCX, XLSX, and PPTX). It is based on, and extends the functionality of the Open XML SDK. It supports scenarios such as: •Splitting DOCX/PPTX files into multiple files. •Combining multiple DOCX/PPTX files into a single file. •Populating content in template DOCX files with data from XML. •High-fidelity conversion of DOCX to HTML. •Searching and replacing content in DOCX/PPTX using regular expressions. •Managing tracked-revisions, including detecting tracked revisions, and accepting tracked revisions. •Updating Charts in DOCX/PPTX files, including updating cached data, as well as the embedded XLSX. •Retrieving metrics from DOCX files, including the hierarchy of styles used, the languages used, and the fonts used. •Writing XLSX files using far simpler code than directly writing the markup, including a streaming approach that enables writing XLSX files with millions of rows.
C# Barcode on Microsoft PowerPoint document: The nuget package includes API to generate, read QR Code, Code 128, and 20+ barcodes on Office PowerPoint file in ASP.NET, MVC, web, Windows applications. Supported barcode formats : * QR Code (Steyled QR Code, GS1 version), Data Matrix (GS1 version), PDF-417 * Code 39, Code 128, GS1-128 * EAN 8, EAN 13, UPC-A, UPC-E * Interleaved 2 of 5, ITF-14 * And others Barcode Output Types : * Document : Microsoft Office PowerPoint (.pptx) * Raster images: BITMAP (.bmp), JPEG, PNG, TIFF, GIF * Vector images: SVG, EPS * Stream objects or Byte array Compatible with : * .NET Standard 2.0 * .NET 8, .NET 7, .NET 6, .NET 5 * .NET Core 3.x, & 2.x * .NET Framework 4.6 Online Guides : * Developer Guide : https://www.onbarcode.com/tutorial/csharp-barcode-generation.html * Contact US : support@onbarcode.com
Command line tools for the Power Query SDK for VS Code
Makes FakeItEasy Dummies useful by wiring-them-up to real-looking, random test data. Leverages the power of AutoFixture to create anonymous variables. Fixes some of AutoFixture's poor default behaviors. Makes unit tests more expressive with less lines of code.
FakeXrmEasy is the open source test automation framework for .net core and the Power Platform / Dataverse. This package contains helpers to unit test code activities.
Based on maintainer Lionel Vallet's vNext fork, includes .NET 6.0 and .NET 7.0 build target for use in cross-platform scenarios. For compatibility with .NET 7.0, the System.Drawing.Common library was replaced with the cross-platform SkiaSharp library. The Open XML PowerTools provides guidance and example code for programming with Open XML Documents (DOCX, XLSX, and PPTX). It is based on, and extends the functionality of the Open XML SDK. It supports scenarios such as: •Splitting DOCX/PPTX files into multiple files. •Combining multiple DOCX/PPTX files into a single file. •Populating content in template DOCX files with data from XML. •High-fidelity conversion of DOCX to HTML. •Searching and replacing content in DOCX/PPTX using regular expressions. •Managing tracked-revisions, including detecting tracked revisions, and accepting tracked revisions. •Updating Charts in DOCX/PPTX files, including updating cached data, as well as the embedded XLSX. •Retrieving metrics from DOCX files, including the hierarchy of styles used, the languages used, and the fonts used. •Writing XLSX files using far simpler code than directly writing the markup, including a streaming approach that enables writing XLSX files with millions of rows.
Provides an extension method to generate code from "PowerCode", a code generation specification.
IDE Settings, Roslyn Analyzers and PowerShell Scripts.
Handy Features for .Net, includes Encryption, Lightweight ORM for SqlServer, Db CRUD operations, Text to speech, Bootstrap/Chart/Dashboard, Extension Methods e.t.c.
An extension for Markdig that adds syntax highlighting to code through the power of ColorCode.
Enable/disable Entities and attributes for Portal Web API and Generate Code Snippets
BarcodeLib - A barcode library to quickly create QR Code and other barcodes on PowerPoint (.pptx) with comprehensive options to customize the ISO compatible barcodes. This package includes shared VB.NET example source code for all barcode formats on PowerPoint (.pptx). Documents ============================== How to Guide : https://www.barcodelib.com/vb_net/ Email : support@barcodelib.com
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); }
Package Description
This assembly is designed to assist in the coupling between legacy database and new .NET code.
Wintellect Power Collections is a community project to develop the best public license type-safe collection classes for .NET. Power Collections implements classical data structures (lists, sets, bags, dictionaries) in C#, which are well optimized for performance, and makes heavy use of .NET generics. The goal of the project is to provide generic high-performance collection classes that are not available in .NET standard library. Data structures, implemented in PowerCollections: Set<T>: a collection of items (maintained in unpredictable order). Duplicate items are not allowed. Bag<T>: a collection of items, which allows duplicates. Similar to Set<T> but allows duplicates. BigList<T>: a list of items, optimized for efficient operations on large lists (especially for insertions, deletions, copies, and concatenations). Deque<T>: implementation of Deque (Double Ended Queue), with efficient inserting elements at the beginning and at the end. MultiDictionary<TKey, TValue>: a dictionary collection, which associates multiple values with a key. Lookup by key returns an enumeration of items. OrderedSet<T>: a collection of items, maintained in a sorted order (duplicates are not allowed). Each item has an index in the set (0…Count-1). Provides efficient sub-range extraction. OrderedBag<T>: a collection of items, maintained in a sorted order, with duplicates. Provides efficient sub-range extraction. OrderedDictionary<TKey, TValue>: a dictionary collection that associates keys to values. The keys are maintained in a sorted order. Provides efficient sub-range extraction. OrderedMultiDictionary<TKey, TValue>: a dictionary collection that associates multiple values with a key. The keys are maintained in a sorted order. Lookup by key returns an enumeration of items. Provides efficient sub-range extraction. This library was originally produced by Wintellect and is offered AS IS. It has been available on the Wintellect site for some time, later moved to Codeplex to encourage its growth and use, and then it was lost with the shutdown of Codeplex. Power Collections is free for all to use within the bounds of the standard Eclipse Public License (EPL). The code is originally written by Peter Golde (at Wintellect, in the period 2004-2007), then evolved in the open-source community.
KA.Barcode Generator for .NET is a C# library to create QR Code, Code 128, GS1, EAN/UPC and other barcode formats on PowerPoint (pptx) file in ASP.NET Core, Windows Forms, WPF web and desktop application. Supported barcode formats : * QR Code (+GS1, Micro, Macro), Data Matrix (+GS1), PDF-417 * Code 39, Code 128, GS1-128 * EAN 8, EAN 13, UPC-A, UPC-E, +2, +5 * Interleaved 2 of 5, ITF-14 * Postal : Intelligent Mail, Identcode, PLANET, POSTNET, Leitcode, RM4SCC Guides: * How to Guide : https://www.keepautomation.com/guide/csharp_barcode_generator.html * Tutorial - ASP.NET Core : https://www.keepautomation.com/guide/csharp_barcode_generator_aspnet_core.html * Tutorial - Windows Forms : https://www.keepautomation.com/how_to/net_winforms/csharp_barcode.html * Tutorial - WPF : https://www.keepautomation.com/guide/csharp_barcode_generator_wpf.html * Email : support@keepautomation.com