Skip to main content
Devlooped avatar

Devlooped

NuGet publisher profile

Packages
146
Total Downloads
1.2B
1,215,531,303

Packages (146)

Moq package icon

Moq

Moq is the most popular and friendly mocking framework for .NET.

1.2B
downloads
GitInfo package icon

GitInfo

Access commit information from MSBuild and C#/F#/VB code, and infer SemVer from branch, tag or version file in Git repository.

12.1M
downloads
Mvp.Xml package icon

Mvp.Xml

.NET implementations of EXSLT, XML Base, XInclude, XPointer, as well as a unique set of utility classes making XML programming in .NET platform easier, more productive and effective.

8.2M
downloads
DotNetConfig package icon

DotNetConfig

APIs for handling dotnet-config compatible settings for any dotnet tool. Usage: var config = Config.Build(); var value = config.GetString("section", "subsection", "variable"); // Setting values config .SetString("section", "subsection", "variable", value) .SetBoolean("section", "subsection", "enabled", true);

5.4M
downloads
ThisAssembly.Constants package icon

ThisAssembly.Constants

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"; } } }

3.6M
downloads
xunit.assemblyfixture package icon

xunit.assemblyfixture

Assembly-level shared state via IAssemblyFixture, just like built-in collection and class fixture state.

1.8M
downloads
NuGetizer package icon

NuGetizer

Simple, flexible and powerful NuGet packaging

1.2M
downloads
Devlooped.JQ package icon

Devlooped.JQ

A .NET-friendly distribution of the official JQ implementation

911.6K
downloads
System.Diagnostics.Tracer package icon

System.Diagnostics.Tracer

An improved API on top of System.Diagnostics. Adds support for dynamic runtime configuration of trace sources, hierarchical trace sources and testability. Usage: static readonly ITracer tracer = Tracer.Get<MyClass>();

504.3K
downloads
Merq package icon

Merq

Merq: Message Bus (Commands + Events) mediator for internal application architecture via command and event messages. Only the main application assembly needs to reference this package. Components and extensions can simply reference the interfaces in Merq.Abstractions.

491.6K
downloads
dotnet-trx package icon

dotnet-trx

Pretty-print test results in TRX format

373.7K
downloads
ThisAssembly.AssemblyInfo package icon

ThisAssembly.AssemblyInfo

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.

369.2K
downloads
chromium.win-x64 package icon

chromium.win-x64

Chromium native binaries for Windows x64 runtime.

362.9K
downloads
chromium.linux-x64 package icon

chromium.linux-x64

Chromium native binaries for Linux x64 runtime.

337.5K
downloads
dotnet-retest package icon

dotnet-retest

Package Description

334.2K
downloads
chromium package icon

chromium

Provides a dynamic locator of the referenced chromium native runtime via the Chromium.Path property.

333.8K
downloads
NuDoq package icon

NuDoq

A lightweight API to read and write .NET XML documentation files, optionally augmented with reflection information. Built from https://github.com/devlooped/NuDoq/tree/c2be4d4e1

307.0K
downloads
ThisAssembly.Project package icon

ThisAssembly.Project

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"; } }

297.7K
downloads
ThisAssembly.Prerequisites package icon

ThisAssembly.Prerequisites

Ensures that referencing project is using a compatible Compiler API (Roslyn).

266.4K
downloads
ThisAssembly package icon

ThisAssembly

Meta-package that includes all ThisAssembly.* packages.

246.3K
downloads
ThisAssembly.Metadata package icon

ThisAssembly.Metadata

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"; } }

221.3K
downloads
ThisAssembly.Resources package icon

ThisAssembly.Resources

This package generates a static `ThisAssembly.Resources` class with public properties exposing `string` and `Stream` shortcuts to access embedded resources.

219.0K
downloads
dotnet-file package icon

dotnet-file

A dotnet global tool for downloading and updating loose files from arbitrary URLs.

217.6K
downloads
ThisAssembly.Git package icon

ThisAssembly.Git

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).

217.4K
downloads
dotnet-vs package icon

dotnet-vs

Legacy package id for the Visual Studio management tool. This package is obsolete. Use `dnx vs` instead. Usage: dnx vs -- [command] [options|-?|-h|--help] [--save=ALIAS [--global]] See full documentation at https://clarius.org/dotnet-vs.

213.9K
downloads
ThisAssembly.Strings package icon

ThisAssembly.Strings

This package generates a static `ThisAssembly.Strings` class with public constants exposing string resources in .resx files or methods with the right number of parameters for strings that use formatting parameters. In addition, it groups constants and methods in nested classes according to an optional underscore separator to organize strings. For example, *User_InvalidCredentials* can be accessed with *ThisAssembly.Strings.User.InvalidCredentials* if it contains a simple string, or as a method with the right number of parametres if its value has a format string. Finally, format strings can use named parameters too to get more friendly parameter names, such as "Hello {name}".

210.8K
downloads
xunit.vsix package icon

xunit.vsix

Allows creating reliable, flexible and fast VS SDK integration (VSIX) tests that run using any xUnit capable runner, such as Visual Studio built-in Test Explorer or TestDriven.NET.

171.3K
downloads
dotnet-config package icon

dotnet-config

A global tool for managing hierarchical configurations for dotnet tools, using git config format.

166.1K
downloads
JsonPeek package icon

JsonPeek

MSBuild task to read values from JSON using JSONPath.

154.5K
downloads
Avatar package icon

Avatar

Avatars blend with the Na'vi seamlessly, and you can control their behavior precisely ('drive' them) with a psionic link. Just like a dynamic proxy, with behavior driven by code. IMyService service = Avatar.Of<IMyService>(); service.AddBehavior(...); Built from https://github.com/devlooped/avatar/tree/e60cc54d2

119.8K
downloads

116 more packages load after hydration.