Skip to content

Instantly share code, notes, and snippets.

@algopia
Created March 29, 2016 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save algopia/0720722318d3394f1457 to your computer and use it in GitHub Desktop.
Save algopia/0720722318d3394f1457 to your computer and use it in GitHub Desktop.
.NETアプリケーションをMacで開発してAzureにデプロイする ref: http://qiita.com/pia/items/5fad8247cce33ec66b79
code () {
if [[ $# = 0 ]]
then
open -a "Visual Studio Code"
else
[[ $1 = /* ]] && F="$1" || F="$PWD/${1#./}"
open -a "Visual Studio Code" --args "$F"
fi
}
? ==========================================================================
We're constantly looking for ways to make yo better!
May we anonymously report usage statistics to improve the tool over time?
More info: https://github.com/yeoman/insight & http://yeoman.io
========================================================================== Yes
_-----_===========================
| | .--------------------------.
|--(o)--| | Welcome to the |
`---------´ | marvellous ASP.NET 5 |
( _´U`_ ) | generator! |
/___A___\ '--------------------------'
| ~ |
__'.___.'__
´ ` |° ´ Y `
? What type of application do you want to create? Empty Application
? What's the name of your ASP.NET application? MyWebAPI
create MyWebAPI/.gitignore
create MyWebAPI/Startup.cs
create MyWebAPI/project.json
create MyWebAPI/Dockerfile
create MyWebAPI/wwwroot/README.md
create MyWebAPI/wwwroot/web.config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment