├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SimpleFeedReader.Tests ├── Services │ └── NewsServiceTests.cs └── SimpleFeedReader.Tests.csproj ├── SimpleFeedReader.sln └── SimpleFeedReader ├── GlobalUsings.cs ├── Pages ├── Error.cshtml ├── Error.cshtml.cs ├── Index.cshtml ├── Index.cshtml.cs ├── _Layout.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── Program.cs ├── Services └── NewsService.cs ├── SimpleFeedReader.csproj ├── Startup.cs ├── ViewModels └── NewsStoryViewModel.cs ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json └── wwwroot ├── css ├── site.css └── site.min.css ├── favicon.ico └── lib ├── bootstrap ├── .bower.json ├── LICENSE └── dist │ ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css.map │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ └── js │ ├── bootstrap.js │ └── npm.js ├── jquery-validation-unobtrusive ├── .bower.json ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── .bower.json ├── LICENSE.md └── dist │ ├── additional-methods.js │ └── jquery.validate.js └── jquery ├── .bower.json ├── LICENSE.txt └── dist ├── jquery.js └── jquery.min.map /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/README.md -------------------------------------------------------------------------------- /SimpleFeedReader.Tests/Services/NewsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader.Tests/Services/NewsServiceTests.cs -------------------------------------------------------------------------------- /SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj -------------------------------------------------------------------------------- /SimpleFeedReader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader.sln -------------------------------------------------------------------------------- /SimpleFeedReader/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/GlobalUsings.cs -------------------------------------------------------------------------------- /SimpleFeedReader/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Pages/Error.cshtml -------------------------------------------------------------------------------- /SimpleFeedReader/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /SimpleFeedReader/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Pages/Index.cshtml -------------------------------------------------------------------------------- /SimpleFeedReader/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /SimpleFeedReader/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /SimpleFeedReader/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /SimpleFeedReader/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /SimpleFeedReader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Program.cs -------------------------------------------------------------------------------- /SimpleFeedReader/Services/NewsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Services/NewsService.cs -------------------------------------------------------------------------------- /SimpleFeedReader/SimpleFeedReader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/SimpleFeedReader.csproj -------------------------------------------------------------------------------- /SimpleFeedReader/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/Startup.cs -------------------------------------------------------------------------------- /SimpleFeedReader/ViewModels/NewsStoryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/ViewModels/NewsStoryViewModel.cs -------------------------------------------------------------------------------- /SimpleFeedReader/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/appsettings.Development.json -------------------------------------------------------------------------------- /SimpleFeedReader/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/appsettings.json -------------------------------------------------------------------------------- /SimpleFeedReader/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/bundleconfig.json -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/css/site.css -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/favicon.ico -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /SimpleFeedReader/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-architecture/simple-feed-reader/HEAD/SimpleFeedReader/wwwroot/lib/jquery/dist/jquery.min.map --------------------------------------------------------------------------------