├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md └── src ├── .nuget └── packages.config ├── UoN.ExpressiveAnnotations.NetCore.sln ├── UoN.ExpressiveAnnotations.NetCore ├── Analysis │ ├── Expr.cs │ ├── Lexer.cs │ ├── Location.cs │ ├── ParseErrorException.cs │ ├── Parser.cs │ ├── Token.cs │ ├── TokenType.cs │ ├── TypeAdapter.cs │ └── TypeWall.cs ├── Attributes │ ├── AssertThatAttribute.cs │ ├── ExpressiveAttribute.cs │ ├── RequiredIfAttribute.cs │ └── ValueParserAttribute.cs ├── Caching │ ├── ProcessCacheItem.cs │ └── RequestCache.cs ├── DependencyInjection │ └── ServiceCollectionExtensions.cs ├── Functions │ ├── FunctionsManager.cs │ ├── IFunctionsManager.cs │ ├── IFunctionsProvider.cs │ └── Toolchain.cs ├── Helper.cs ├── MessageFormatter.cs ├── UoN.ExpressiveAnnotations.NetCore.csproj └── Validators │ ├── AssertThatValidator.cs │ ├── ExpressiveValidator.cs │ └── RequiredIfValidator.cs └── UoN.ExpressiveAnnotations.NetCoreSample ├── Controllers ├── BaseController.cs ├── DefaultController.cs ├── HomeController.cs └── SystemController.cs ├── Inheritance ├── CustomAssertThatAttribute.cs └── CustomRequiredIfAttribute.cs ├── Misc ├── CultureManager.cs ├── CustomToolchain.cs ├── Extensions.cs ├── IndicationsManager.cs ├── TriggersManager.cs ├── ValidationManager.cs └── VerbosityManager.cs ├── Models ├── Address.cs ├── Contact.cs ├── ErrorViewModel.cs └── Query.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Resources.Designer.cs ├── Resources.pl.resx ├── Resources.resx ├── Startup.cs ├── UoN.ExpressiveAnnotations.NetCoreSample.csproj ├── Views ├── Home │ ├── EditorTemplates │ │ ├── Address.cshtml │ │ ├── Contact.cshtml │ │ └── Query.cshtml │ └── Home.cshtml ├── Shared │ ├── DisplayTemplates │ │ ├── ISO8601Date.cshtml │ │ └── IntArray.cshtml │ ├── Error.cshtml │ ├── _Culture.cshtml │ ├── _EAOptions.cshtml │ ├── _Indications.cshtml │ ├── _Layout.cshtml │ ├── _Validation.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── libman.json ├── package-lock.json ├── package.json └── wwwroot ├── css └── site.css ├── favicon.ico └── images ├── banner1.svg ├── banner2.svg └── banner3.svg /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/README.md -------------------------------------------------------------------------------- /src/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/.nuget/packages.config -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore.sln -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Analysis/Expr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Analysis/Expr.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Analysis/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Analysis/Lexer.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Analysis/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Analysis/Location.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Analysis/ParseErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Analysis/ParseErrorException.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Analysis/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Analysis/Parser.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Analysis/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Analysis/Token.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Analysis/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Analysis/TokenType.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Analysis/TypeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Analysis/TypeAdapter.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Analysis/TypeWall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Analysis/TypeWall.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Attributes/AssertThatAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Attributes/AssertThatAttribute.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Attributes/ExpressiveAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Attributes/ExpressiveAttribute.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Attributes/RequiredIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Attributes/RequiredIfAttribute.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Attributes/ValueParserAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Attributes/ValueParserAttribute.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Caching/ProcessCacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Caching/ProcessCacheItem.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Caching/RequestCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Caching/RequestCache.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Functions/FunctionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Functions/FunctionsManager.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Functions/IFunctionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Functions/IFunctionsManager.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Functions/IFunctionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Functions/IFunctionsProvider.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Functions/Toolchain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Functions/Toolchain.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Helper.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/MessageFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/MessageFormatter.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/UoN.ExpressiveAnnotations.NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/UoN.ExpressiveAnnotations.NetCore.csproj -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Validators/AssertThatValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Validators/AssertThatValidator.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Validators/ExpressiveValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Validators/ExpressiveValidator.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCore/Validators/RequiredIfValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCore/Validators/RequiredIfValidator.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Controllers/BaseController.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Controllers/SystemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Controllers/SystemController.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Inheritance/CustomAssertThatAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Inheritance/CustomAssertThatAttribute.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Inheritance/CustomRequiredIfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Inheritance/CustomRequiredIfAttribute.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/CultureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/CultureManager.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/CustomToolchain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/CustomToolchain.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/Extensions.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/IndicationsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/IndicationsManager.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/TriggersManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/TriggersManager.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/ValidationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/ValidationManager.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/VerbosityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Misc/VerbosityManager.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Models/Address.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Models/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Models/Contact.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Models/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Models/Query.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Program.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Resources.Designer.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Resources.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Resources.pl.resx -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Resources.resx -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Startup.cs -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/UoN.ExpressiveAnnotations.NetCoreSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/UoN.ExpressiveAnnotations.NetCoreSample.csproj -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Home/EditorTemplates/Address.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Home/EditorTemplates/Address.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Home/EditorTemplates/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Home/EditorTemplates/Contact.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Home/EditorTemplates/Query.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Home/EditorTemplates/Query.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Home/Home.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Home/Home.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/DisplayTemplates/ISO8601Date.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/DisplayTemplates/ISO8601Date.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/DisplayTemplates/IntArray.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/DisplayTemplates/IntArray.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_Culture.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_Culture.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_EAOptions.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_EAOptions.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_Indications.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_Indications.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_Validation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_Validation.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/appsettings.Development.json -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/appsettings.json -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/bundleconfig.json -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/libman.json -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/package-lock.json -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/package.json -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uon-nuget/UoN.ExpressiveAnnotations.NetCore/HEAD/src/UoN.ExpressiveAnnotations.NetCoreSample/wwwroot/images/banner3.svg --------------------------------------------------------------------------------