The latest update of my github projects

Jincod.CQRS

Jincod.CQRS

  • Added .NET Core support
  • Removed Castle Windsor from dependencies
  • Updated nuget package to 2.0.0

Dotnetcore Buildpack

dotnetcore-buildpack

  • Updated to latest .NET Core release

ASP.NET Core Demo App

AspNet5DemoApp

  • Migrated to cproj from project.json
  • Updated to latest .NET Core release
  • Added build on Appveyor CI

Build scripts

build-scripts

  • Added cake build system

Deploying ASP.NET Core on heroku

I have created new jincod/dotnetcore-buildpack

heroku buildpacks:set https://github.com/jincod/dotnetcore-buildpack

AspNet5 Demo App

git clone https://github.com/jincod/AspNet5DemoApp.git
git push origin master

Deploy to Heroku

Click the button below to set up this sample app on Heroku:

Deploy

Update spreadsheet values

Update spreadsheet values using Google Sheets API V4 and google-api-nodejs-client

Deploy to surge.sh from appveyor

Appveyor.yml

environment:
  SURGE_LOGIN: login
  SURGE_TOKEN:
    secure: secure-string
install:
  - ps: Install-Product node 0
  - npm install -g npm
  - npm install
build: off
build_script:
  - npm run build
deploy_script:
  - npm run deploy

Scripts section in package.json

"scripts": {
  "build": "webpack --config webpack.config.js",
  "deploy": "surge --project ./dist --domain domain.surge.sh"
}

Run NUnit3 tests from powershell

My previous post about running NUnit2 tests from powershell. Bellow script for running NUnit3 tests.