New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

sln-builder

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sln-builder

Simple command line tool for building solutions (.sln) using MSBuild

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
12
140%
Maintainers
1
Weekly downloads
 
Created
Source

sln-builder

npm version

A lazy command line tool for building solutions.

It will look for solution files (.sln) recursively and compile them. If multiple .slns are found, you are prompted to pick one.

Currently only works with 2017 build tools (v15.0 of MSBuild) on Windows.

Install

npm install sln-builder -g

Usage

In a directory that has some .sln files - doesn't have to be top level:

build

Examples

build --configuration Release --all
build -c Release -a
build --all
build -a

Options

-V, --version                               output the version number
-c, --configuration <configurationProfile>  configuration. Defaults to 'Debug'
-cl, --clean                                cleans solution before building
-a, --all                                   flag to indicate that all solutions found should be compiled
-h, --help                                  output usage information

Custom sources

If you specify an environment variable of NUGET_SOURCES listing your package sources - separated by ;, then they will be included as package sources alongside nuget.orgs package feed. See this StackOverflow answer on setting up environment variables.

$env:NUGET_SOURCES='https://mynugetfeed.com;https://anotherfeed.com'
build

Keywords

msbuild

FAQs

Package last updated on 24 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts