Mercurial > pub > ImplabNet
comparison Implab.ServiceHost/Unity/ConfigurationSchema.cs @ 271:d4d437ec4483 v3
Working on Unity xml configuration
author | cin |
---|---|
date | Wed, 25 Apr 2018 19:23:35 +0300 |
parents | ff581cff7003 |
children |
comparison
equal
deleted
inserted
replaced
270:ade80d94dfb5 | 271:d4d437ec4483 |
---|---|
36 | 36 |
37 static ConfigurationSchema CreateDefault() { | 37 static ConfigurationSchema CreateDefault() { |
38 var schema = new ConfigurationSchema(); | 38 var schema = new ConfigurationSchema(); |
39 | 39 |
40 schema.DefineMapping<RegisterElement>(); | 40 schema.DefineMapping<RegisterElement>(); |
41 schema.DefineMapping<IncludeElement>(); | |
42 schema.DefineMapping<AssemblyElement>(); | |
43 schema.DefineMapping<NamespaceElement>(); | |
41 | 44 |
42 return schema; | 45 return schema; |
43 } | 46 } |
44 | 47 |
45 | 48 |