This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
<target name="-after-generate-model"> | |
... use ${args.path}, ${args.name} and ${args.fields} as needed ... | |
</target> | |
Other targets are similar. There are properties prefixed with "args." and the name of | |
the command line option that hold the parameters for the command. | |
--> | |
<!-- copy this in the .sencha/app/.plugin xml file below --> | |
<target name="-after-app-build"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HomeController : Controller | |
{ | |
public ActionResult Default() | |
{ | |
return this.Redirect("/Home/main"); | |
} | |
public ActionResult Index() | |
{ |
NewerOlder