System.Xml.XmlDocument
by: Microsoft
- 213 total downloads
- Latest version: 4.3.0
Provides an older in-memory Extensible Markup Language (XML) programming interface that enables you to modify XML documents. Developers should prefer the classes in the System.Xml.XDocument package.
Commonly Used Types:
System.Xml.XmlNode
System.Xml.XmlElement
System.Xml.XmlAttribute
System.Xml.XmlDocument
System.Xml.XmlDeclaration
System.Xml.XmlText
System.Xml.XmlComment
System.Xml.XmlNodeList
System.Xml.XmlWhitespace
System.Xml.XmlCDataSection
When using NuGet 3.x this package requires at least version 3.4.
System.Xml.XmlSerializer
by: Microsoft
- 187 total downloads
- Latest version: 4.3.0
Provides classes for serializing objects to the Extensible Markup Language (XML) and deserializing XML data to objects.
Commonly Used Types:
System.Xml.Serialization.IXmlSerializable
System.Xml.Serialization.XmlSerializer
System.Xml.Serialization.XmlIgnoreAttribute
System.Xml.Serialization.XmlElementAttribute
System.Xml.Serialization.XmlAttributeAttribute
System.Xml.Serialization.XmlArrayAttribute
System.Xml.Serialization.XmlRootAttribute
System.Xml.Serialization.XmlArrayItemAttribute
System.Xml.Serialization.XmlTypeAttribute
System.Xml.Serialization.XmlEnumAttribute
When using NuGet 3.x this package requires at least version 3.4.
System.Xml.XPath
by: Microsoft
- 213 total downloads
- Latest version: 4.3.0
Provides the classes that define a cursor model for navigating and editing Extensible Markup Language (XML) information items as instances of the XQuery 1.0 and XPath 2.0 Data Model.
Commonly Used Types:
System.Xml.XPath.XPathNavigator
System.Xml.XPath.IXPathNavigable
System.Xml.XPath.XPathNodeType
System.Xml.XPath.XPathNodeIterator
System.Xml.XPath.XPathExpression
System.Xml.XPath.XPathResultType
System.Xml.XPath.XPathException
System.Xml.XPath.XPathDocument
System.Xml.XPath.XPathItem
System.Xml.XPath.XPathNamespaceScope
When using NuGet 3.x this package requires at least version 3.4.
System.Xml.XPath.XDocument
by: Microsoft
- 204 total downloads
- Latest version: 4.3.0
Provides extension methods that add System.Xml.XPath support to the System.Xml.XDocument package.
Commonly Used Types:
System.Xml.XPath.Extensions
System.Xml.XPath.XDocumentExtensions
When using NuGet 3.x this package requires at least version 3.4.
System.Xml.XPath.XmlDocument
by: Microsoft
- 265 total downloads
- Latest version: 4.7.0
System.Xml.XPath.XmlDocument
TaskExtensions
by: Prabir Shrestha
- 46 total downloads
- Latest version: 0.1.1
Helper extension methods for Task Parallel Library (TPL)
TaskScheduler
by: David Hall
- 569 total downloads
- Latest version: 2.12.2
Provides a single assembly wrapper for the 1.0 and 2.0 versions of Task Scheduler found in all Microsoft operating systems post Windows 98. It simplifies the coding, aggregates the multiple versions and allows for localization support.
TestableIO.System.IO.Abstractions
by: Tatham Oddie & friends
- 1.386k total downloads
- Latest version: 22.1.1
A set of abstractions to help make file system interactions testable.
TestableIO.System.IO.Abstractions.TestingHelpers
by: Tatham Oddie & friends
- 1.328k total downloads
- Latest version: 22.1.1
A set of pre-built mocks to help when testing file system interactions.
TestableIO.System.IO.Abstractions.Wrappers
by: Tatham Oddie & friends
- 1.359k total downloads
- Latest version: 22.1.1
A set of abstractions to help make file system interactions testable.
Testably.Abstractions.FileSystem.Interface
by: Testably
- 211 total downloads
- Latest version: 10.2.0
A set of abstractions to help make file system interactions testable.
Text.Analyzers
by: Microsoft
- 1.622k total downloads
- Latest version: 5.0.0-1.25277.114
Text Analyzers
TextCopy
by: https://github.com/CopyText/TextCopy/graphs/contributors
- 624 total downloads
- Latest version: 6.2.1
A cross platform package to copy text to the clipboard.
ThisAssembly
by: Daniel Cazzulino
- 181 total downloads
- Latest version: 2.1.2
Meta-package that includes all ThisAssembly.* packages.
ThisAssembly.AssemblyInfo
by: Daniel Cazzulino
- 261 total downloads
- Latest version: 2.1.2
This package generates a static `ThisAssembly.Info` class with public constants exposing the following attribute values generated by default for SDK style projects:
* AssemblyConfigurationAttribute * AssemblyCompanyAttribute * AssemblyTitleAttribute * AssemblyProductAttribute
* AssemblyVersionAttribute * AssemblyInformationalVersionAttribute * AssemblyFileVersionAttribute
If your project includes these attributes by other means, they will still be emitted properly on the `ThisAssembly.Info` class.
ThisAssembly.Constants
by: Daniel Cazzulino
- 241 total downloads
- Latest version: 2.1.2
This package generates a static `ThisAssembly.Constants` class with public constants for each Constant MSBuild item in the project.
For example:
<ItemGroup> <Constant Include="Foo.Bar" Value="Baz" /> </ItemGroup>
Results in a corresponding `ThisAssembly.Constants.Foo.Bar` constant with the value `Baz`:
Generated code: C#:
partial class ThisAssembly { public static partial class Constants { public static partial class Foo { public const string Bar = "Baz"; } } }
ThisAssembly.Git
by: Daniel Cazzulino
- 122 total downloads
- Latest version: 2.1.2
This package generates a static `ThisAssembly.Git` class with public constants for the following properties provided by Microsoft.SourceLink (git-based) packages:
* Commit * Sha (first 9 chars from Commit) * Root (normalized to forward slashes) * Url (if PublishRepositoryUrl=true)
It also provides the Branch property, calculated from supported CI environment variables (GitHub Actions, Azure DevOps, AppVeyor, TeamCity, Travis CI, Circle CI, GitLab CI, Buddy, and Jenkins).
ThisAssembly.Metadata
by: Daniel Cazzulino
- 268 total downloads
- Latest version: 2.1.2
This package generates a static `ThisAssembly.Metadata` class with public constants exposing each `[System.Reflection.AssemblyMetadata(..)]` defined for the project, such as when using .NET 5.0+ support for `AssemblyMetadata` MSBuild items.
So for an attribute like:
[assembly: System.Reflection.AssemblyMetadataAttribute("Foo", "Bar")]
A corresponding `ThisAssembly.Metadata.Foo` constant with the value `Bar` is provided. The metadata attribute can alternatively be declared using MSBuild in the project (for .NET 5.0+ projects):
<ItemGroup> <AssemblyMetadata Include="Foo" Value="Bar" /> </ItemGroup>
Generated code: C#:
partial class ThisAssembly { public static partial class Metadata { public const string Foo = "Bar"; } }
ThisAssembly.Prerequisites
by: Daniel Cazzulino
- 186 total downloads
- Latest version: 1.2.11
Ensures that referencing project is using a compatible Compiler API (Roslyn).
ThisAssembly.Project
by: Daniel Cazzulino
- 208 total downloads
- Latest version: 2.1.2
This package generates a static `ThisAssembly.Project` class with public constants exposing project properties that have been opted into this mechanism by adding them as `ProjectProperty` MSBuild items in project file, such as:
<PropertyGroup> <Foo>Bar</Foo> </PropertyGroup>
<ItemGroup> <ProjectProperty Include="Foo" /> </ItemGroup>
A corresponding `ThisAssembly.Project.Foo` constant with the value `Bar` is provided.
Generated code: C#:
partial class ThisAssembly { public static partial class Project { public const string Foo = "Bar"; } }