Giter Club home page Giter Club logo

generator-aspnet's Introduction

generator-aspnet

Build Status Version Downloads per month

Yeoman generator for ASP.NET 5 projects

Getting Started

  • Dependencies:
    • Node.js: brew install node for Mac OS X, choco install nodejs for Windows OS
    • Yeoman: npm install -g yo
  • Install: npm install -g generator-aspnet
  • Run: yo aspnet

Usage

  • yo aspnet shows a wizard for generating a new ASP.NET app

  • yo aspnet --grunt generates Gruntfile.js files for web templates instead of gulpfile.js

  • yo aspnet --help shows flags and other configurable options

Template projects

Full, template based projects available in generator:

  • Empty Application
  • Console Application
  • Web Application
  • Web Application Basic [without Membership and Authorization]
  • Web API Application
  • Nancy ASP.NET Application
  • Class Library
  • Unit Test project

The Empty Application, Console Application, Web Application, Web Application Basic (a.k.a. Web Application No Auth), Web API Application and Class Library are based on the templates introduced with Visual Studio 2015. They are available and maintained in the ASP.NET Templates project.

ASP.NET Templates provide project templates which are used in Visual Studio for creating ASP.NET 5 applications.

The Nancy project is based on framework's "Hello World" template: Nancy Getting Started: Introduction

The Docker support with Dockerfile configuration files is based on the official Docker image for ASP.NET 5

Related yeoman generators

The goal of generator-aspnet is to provide an experience consistent with creating new ASP.NET 5 (DNX) projects and files in Visual Studio 2015.

The list of related generators can be seen on our Wiki section

Sub Generators

The alphabetic list of available sub generators (to create files after the project has been created):

** Note: files generated are created in the working directory, no conventions are forced **

Return to top

AngularController

Creates AngularJS controller file using $scope

Example:

yo aspnet:AngularController filename

Produces filename.js

Return to top

AngularControllerAs

Creates AngularJS controller file using Controller As syntax.

Example:

yo aspnet:AngularControllerAs filename

Produces filename.js

Return to top

AngularDirective

Creates AngularJS directive file.

Example:

yo aspnet:AngularDirective filename

Produces filename.js

Return to top

AngularFactory

Creates AngularJS factory file.

Example:

yo aspnet:AngularFactory filename

Produces filename.js

Return to top

AngularModule

Creates AngularJS module file

Example:

yo aspnet:AngularModule filename

Produces filename.js

Return to top

AppSettings

Creates a new appsettings.json file

Example:

yo aspnet:AppSettings

Produces appsettings.json

Return to top

BowerJson

Creates a new bower.json and configuration file.

Example:

yo aspnet:BowerJson

Produces bower.json and .bowerrc

Return to top

Class

Creates a new ASP.NET 5 Class

Example:

yo aspnet:Class Contact

Produces /Contact.cs

using System;

namespace MyNamespace
{
    public class Contact
    {

    }
}

Return to top

CoffeeScript

Creates a new CoffeeScript file

Example:

yo aspnet:CoffeeScript filename

Produces filename.coffee

Return to top

Dockerfile

Creates a new Docker configuration file. By default Mono based definition file is created. To create CoreCLR based definition file use --coreclr option

Example:

yo aspnet:Dockerfile

Creates a new Dockerfile

Are you curious about Docker, Linux containers and ASP.NET 5 Docker image and all these buzz words?

Return to top

gitignore

Creates a new .gitignore file

Example:

yo aspnet:gitignore

Produces .gitignore

Return to top

Gruntfile

Creates a new Grunt file

Example:

yo aspnet:Gruntfile

Produces Gruntfile.js

Return to top

Gulpfile

Creates a new Gulp file

Example:

yo aspnet:Gulpfile

Produces gulpfile.js

Return to top

HTMLPage

Creates a new HTML file

Example:

yo aspnet:HTMLPage filename

Produces filename.html

Return to top

Interface

Creates a new ASP.NET 5 Interface

Example:

yo aspnet:Interface IContact

Produces /IContact.cs

Return to top

JavaScript

Creates a new JavaScript file

Example:

yo aspnet:JavaScript filename

Produces filename.js

Return to top

JScript

Creates a new JavaScript file

Example:

yo aspnet:JScript filename

Produces filename.js

Return to top

JSON

Creates a new JSON file

Example:

yo aspnet:JSON filename

Produces filename.json

Return to top

JSONSchema

Creates a new JSON schema file

Example:

yo aspnet:JSONSchema filename

Produces filename.json

Return to top

JSX

Creates a new React JSX file

Example:

yo aspnet:JSX filename

Produces filename.jsx

Return to top

Middleware

Creates a new C# Middleware class file

Example:

yo aspnet:Middleware filename

Produces filename.cs

Return to top

MvcController

Creates a new ASP.NET 5 MvcController class

Example:

yo aspnet:MvcController ContactController

Produces /ContactController.cs

using Microsoft.AspNet.Mvc;

// For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860

namespace MyNamespace
{
    public class ContactController : Controller
    {
        // GET: /<controller>/
        public IActionResult Index()
        {
            return View();
        }
    }
}

Return to top

MvcView

Creates a new ASP.NET 5 MvcView page file

Example:

yo aspnet:MvcView ContactView

Produces /ContactView.cshtml

@*
    For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
*@
@{
    // ViewBag.Title = "ContactView Page";
}

Return to top

nuget

Creates a new NuGet.config file. The support for unstable development feed is provided by --unstable option.

Example:

yo aspnet:nuget --unstable

Produces NuGet.config with unstable NuGet feed

Return to top

PackageJson

Creates a new package.json file

Example:

yo aspnet:PackageJson

Produces package.json

Return to top

README

Creates a new REAMDE.md documentation file in Markdown format You can optionally pass --txt option to use .txt extension. Example:

yo aspnet:readme [--txt]

Produces readme.md

Return to top

StartupClass

Creates a new Startup Class file

Example:

yo aspnet:StartupClass

Produces Startup.cs

Return to top

StyleSheet

Creates a new CSS file

Example:

yo aspnet:StyleSheet style

Produces style.css

Return to top

StyleSheetLess

Creates a new Less class file

Example:

yo aspnet:StyleSheetLess filename

Produces filename.less

Return to top

StyleSheetSCSS

Creates a new Sass SCSS class file

Example:

yo aspnet:StyleSheetSCSS filename

Produces filename.scss

Return to top

TagHelper

Creates a new TagHelper class file

Example:

yo aspnet:TagHelper filename

Produces filename.cs

Return to top

TextFile

Creates a new Text file

Example:

yo aspnet:TextFile filename

Produces filename.txt

Return to top

tfignore

Creates a new .tfignore file

Example:

yo aspnet:tfignore

Produces .tfignore

Return to top

TypeScript

Creates a new TypeScript file

Example:

yo aspnet:TypeScript filename

Produces filename.ts

Return to top

TypeScriptConfig

Creates a new TypeScript configuration file

Example:

yo aspnet:TypeScriptConfig

Produces tsconfig.json

Return to top

TypeScriptJSX

Creates a new JSX-enabled TypeScript file

Example:

yo aspnet:TypeScriptJSX filename

Produces filename.tsx

Return to top

UserSecrets

Adds UserSecrets information to ASP.NET5 project.json file. The generator do not update existing keys if found and does not create new project.json file.

Example:

yo aspnet:UserSecrets

This will add following keys to project.json:

  • "userSecretsId" key
  • "Microsoft.Extensions.Configuration.UserSecrets" key under "dependencies"

Return to top

WebApiController

Creates a new ASP.NET 5 WebApiController class

Example:

yo aspnet:WebApiController ValuesController

Produces /ValuesController.cs

using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNet.Mvc;

// For more information on enabling Web API for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860

namespace MyNamespace.Controllers
{
    [Route("api/[controller]")]
    public class ValuesController : Controller
    {
        // GET: api/values
        [HttpGet]
        public IEnumerable<string> Get()
        {
            return new string[] { "value1", "value2" };
        }

        // GET api/values/5
        [HttpGet("{id}")]
        public string Get(int id)
        {
            return "value";
        }

        // POST api/values
        [HttpPost]
        public void Post([FromBody]string value)
        {
        }

        // PUT api/values/5
        [HttpPut("{id}")]
        public void Put(int id, [FromBody]string value)
        {
        }

        // DELETE api/values/5
        [HttpDelete("{id}")]
        public void Delete(int id)
        {
        }
    }
}

Return to top

License

Copyright 2014-2016 OmniSharp

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Return to top

generator-aspnet's People

Contributors

aeschli avatar alexchesser avatar anthonychu avatar david-driscoll avatar doggy8088 avatar francisrath avatar gavdraper avatar ghuntley avatar glennc avatar gutek avatar horsdal avatar jchannon avatar jpinho avatar larsw avatar marcusoftnet avatar markrendle avatar nosami avatar paitoanderson avatar peterblazejewicz avatar sandcastle avatar saper avatar sayedihashimi avatar scottaddie avatar shirhatti avatar spboyer avatar spinarooni avatar travisthetechie avatar xtianus79 avatar yantrio avatar yukozh avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.