npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

strider-dot-net

v0.6.0

Published

build .NET projects

Downloads

8

Readme

strider-dot-net

NPM

Dependency Status

##.NET build actions for strider.

Calls msbuild on a project or solution file. If none is specified in configuration, msbuild will attempt to build a file ending in "proj". If none (or more than one) exists in the root directory, the build will fail.

There is configuration in the plugin to select the version of msbuild to use to build the project. Prior to Visual Studio 2013, msbuild was bundled with certain versions of .NET. Going forward, Microsoft says that it will be bundled with Visual Studio. It also supports just using the msbuild that is already in the path. The build will fail if the selected version of .NET is not installed on the build agent.

You can specify a CPU architecure (Any CPU, x86, x64, ARM), and one or more targets to execute (most of the time this is Build or Rebuild).

You can pass as many custom parameters to msbuild as you need to.

NuGet packages

It will get the latest version of nuget.exe from nuget.org in order to restore nuget packages. This means that your solution doesn't need NuGet Package Restore, but if it does, disable this feature of the plugin for your project. You can also specify custom package sources to pull from, in case you use a private nuget feed (or want to consume packages from a network share drive).

Colorized output

Since there is no way to force msbuild to colorize its output, I've written an msbuild logger for strider. This is included in this project as an optional dependency. That way, if your strider instance can't build this file for some strange reason, strider-dot-net will fallback to black and white output.

You can follow its progress at gettinggui.com