[WIP] embed code generation

This commit is contained in:
Paul Schneider 2019-01-08 15:00:58 +00:00
commit 32c7ce0867
11 changed files with 303 additions and 37 deletions

View file

@ -0,0 +1,16 @@
namespace cli.Settings
{
public class GenMvcSettings
{
public string NameSpace { get; set; }
public string ModelFullName { get; set; }
public string ControllerName { get; set; }
public string AppBase { get; set; }
public string RelativePath { get; set; }
public string DbContextFullName { get; set; }
// FIXME this appears to be dropped soon ... as all configuration should be concerned
public string ConfigurationName { get; set; } = "Development";
}
}