Skip to content

Releases: Janus-vistaprint/gulp-dotnet-cli

Emit errors to node stream

08 Feb 00:48
Compare
Choose a tag to compare
  • When we run into errors we should emit the errors into the node stream signaling that we should end the stream.

This fixes the case where you have the following code, with a failure in restore. In the past errors in restore would still call build. #27

return gulp.src("**/*.csproj")
                .pipe(restore())
                .pipe(build());

Fix version suffix declaration, remove lodash

13 Jan 14:44
Compare
Choose a tag to compare
  • Version suffix should be a string
  • Remove lodash!
  • Update docs
  • Make our unit tests run without having to compile the code
  • Lint the unit tests
  • Fix unit test lint issues

#26

Unpublished release

13 Jan 14:38
Compare
Choose a tag to compare

This release contained #26 but accidentally our dist directory was not included in the package we uploaded to npm. This package has been unpublished.

CWD for run

30 Dec 06:42
Compare
Choose a tag to compare
  • Fix regression where run command was not setting the cwd to be the root of the called csproj
  • Fix ts definitions so that you don't have to pass an object, and all items in all objects are actually not required
  • Add a whole lot more tests
  • Handle edge cases where file is null when being called by gulp.

Echo not defined

29 Dec 06:14
Compare
Choose a tag to compare

fix a minor bug where echo was not defined. Default to echo being off

Big refactor

29 Dec 06:13
Compare
Choose a tag to compare

No breaking changes, big refactor. Remove excessive dependencies on gulp-util

Typescript, run action change

27 Dec 22:15
Compare
Choose a tag to compare
  • First release of our typescript refactor
  • Remove msbuildArgs from the run command as previously deprecated in 0.9.0
    • additionalArgs should have the same behavior

Have run use the working directory of the target csproj

21 Dec 19:13
Compare
Choose a tag to compare

Given a csproj when the run command is invoked, we should set the current working directory to the root of the csproj's folder.

New args for run

27 Oct 23:00
Compare
Choose a tag to compare
  • add no restore, and no dependencies to pack. Both options require netcore 2.0+

Fix up run

27 Oct 03:26
Compare
Choose a tag to compare
  • Remove version from run since it never worked
  • Deprecated msbuildArgs from run
  • add additionalArgs to run thanks to @dmonego