[WIP] embed code generation
This commit is contained in:
parent
ec468c97f2
commit
32c7ce0867
11 changed files with 303 additions and 37 deletions
16
src/cli/Settings/GenMvcSettings.cs
Normal file
16
src/cli/Settings/GenMvcSettings.cs
Normal 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";
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue