├── .gitignore ├── LICENSE ├── NetDevPL.sln ├── README.md ├── appveyor.yml ├── codecov.yml ├── docs └── solution_layout.md ├── licence.txt ├── scripts └── runCoverage.ps1 ├── src ├── Apps │ ├── NetDevPL.Apps.BackgoundJobs │ │ ├── App.config │ │ ├── Jobs │ │ │ ├── BlogsUpdateJob.cs │ │ │ ├── FacebookJob.cs │ │ │ └── NetGroupsUpdateJob.cs │ │ ├── NetDevPL.Apps.BackgoundJobs.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── blogsConfig.json │ │ ├── job_scheduling_data_2_0.xsd │ │ ├── netGroupsConfig.json │ │ ├── packages.config │ │ └── sensitive-data.config.sample │ └── NetDevPL.Apps.WebApp │ │ ├── App.config │ │ ├── Bootstrapper.cs │ │ ├── Content │ │ ├── css │ │ │ └── custom.css │ │ └── images │ │ │ ├── cup-of-coffee-1280537_1920.jpg │ │ │ └── netdevspoland.jpg │ │ ├── Features │ │ ├── Blogs │ │ │ ├── BlogsModule.cs │ │ │ ├── BlogsViewModel.cs │ │ │ └── Views │ │ │ │ └── blogList.cshtml │ │ ├── ConferenceVideos │ │ │ ├── ConferenceVideosModule.cs │ │ │ ├── ConferenceVideosSource.cs │ │ │ ├── ConferenceVideosViewModel.cs │ │ │ ├── Views │ │ │ │ └── conferenceVideosList.cshtml │ │ │ └── conferenceVideosList.json │ │ ├── Contributors │ │ │ ├── ContributorsListViewModel.cs │ │ │ ├── ContributorsModule.cs │ │ │ └── Views │ │ │ │ └── contributorsList.cshtml │ │ ├── Events │ │ │ ├── ConferencesListViewModel.cs │ │ │ ├── EventsModule.cs │ │ │ ├── Views │ │ │ │ └── EventsList.cshtml │ │ │ └── conferences.json │ │ ├── Facebook │ │ │ ├── FacebookModule.cs │ │ │ ├── FacebookPostsViewModel.cs │ │ │ └── Views │ │ │ │ └── facebookPosts.cshtml │ │ ├── Groups │ │ │ ├── GroupsModule.cs │ │ │ ├── GroupsViewModel.cs │ │ │ └── Views │ │ │ │ └── groupsList.cshtml │ │ ├── Home │ │ │ ├── HomeModule.cs │ │ │ └── Views │ │ │ │ ├── ToS.cshtml │ │ │ │ ├── index.cshtml │ │ │ │ └── login.cshtml │ │ ├── LearnOnline │ │ │ ├── LearnOnlineModule.cs │ │ │ ├── LearnOnlineSource.cs │ │ │ ├── Views │ │ │ │ └── learnOnlineList.cshtml │ │ │ ├── WebsiteViewModel.cs │ │ │ ├── programmingChallenges.json │ │ │ └── toolsMastering.json │ │ ├── Resources │ │ │ ├── ResourcesModule.cs │ │ │ ├── ResourcesSource.cs │ │ │ ├── ResourcesViewModel.cs │ │ │ ├── Views │ │ │ │ └── resourcesList.cshtml │ │ │ └── resources.json │ │ ├── Shared │ │ │ ├── BaseViewModel.cs │ │ │ └── Views │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ └── WebCasts │ │ │ ├── Views │ │ │ └── webcastsList.cshtml │ │ │ ├── WebCastsModule.cs │ │ │ ├── WebcastsSource.cs │ │ │ ├── WebcastsViewModel.cs │ │ │ └── webcastsList.json │ │ ├── Infrastructure │ │ ├── AuthUserIdentity.cs │ │ ├── FormsUser.cs │ │ ├── MonthRouteSegmentConstraint.cs │ │ └── YearRouteSegmentConstraint.cs │ │ ├── NLog.config │ │ ├── NetDevPL.Apps.WebApp.csproj │ │ ├── NetDevPL.Apps.WebApp.csproj.DotSettings │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RazorConfiguration.cs │ │ ├── SampleAuthenticationCallbackProvider.cs │ │ ├── packages.config │ │ └── sensitive-data.config.sample ├── Features │ ├── NetDevPL.Features.Blogs │ │ ├── Blog.cs │ │ ├── BlogDataProvider.cs │ │ ├── BlogDataSnapshot.cs │ │ ├── BlogPost.cs │ │ ├── NetDevPL.Features.Blogs.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Repository.cs │ │ └── packages.config │ ├── NetDevPL.Features.Facebook │ │ ├── DataProvider │ │ │ ├── FacebookComment.cs │ │ │ ├── FacebookDataProvider.cs │ │ │ ├── FacebookLikesContainer.cs │ │ │ ├── FacebookNews.cs │ │ │ ├── FacebookNewsContainer.cs │ │ │ ├── FacebookObject.cs │ │ │ ├── FacebookPaging.cs │ │ │ ├── FacebookPagingCursors.cs │ │ │ ├── FacebookReactions.cs │ │ │ ├── FacebookSummary.cs │ │ │ └── FaceboookCommentsContainer.cs │ │ ├── FacebookComment.cs │ │ ├── FacebookLike.cs │ │ ├── FacebookPost.cs │ │ ├── FacebookUser.cs │ │ ├── NetDevPL.Features.Facebook.csproj │ │ ├── PostFilter.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Repository.cs │ │ ├── SortDirection.cs │ │ └── packages.config │ ├── NetDevPL.Features.NetGroups │ │ ├── MeetupDataProvider.cs │ │ ├── NetDevPL.Features.NetGroups.csproj │ │ ├── NetGroup.cs │ │ ├── NetGroupDataSnapshot.cs │ │ ├── NetGroupMeeting.cs │ │ ├── NetGroupMeetingSeat.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Repository.cs │ │ └── packages.config │ ├── NetDevPL.Features.Reporting │ │ ├── DomainModels.cs │ │ ├── FacebookStats.cs │ │ ├── NetDevPL.Features.Reporting.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── NetDevPL.Features.UserManagement │ │ ├── NetDevPL.Features.UserManagement.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Repository.cs │ │ ├── User.cs │ │ └── packages.config ├── Infrastructure │ ├── NetDevPL.Infrastructure.Helpers │ │ ├── IJsonReader.cs │ │ ├── JsonReader.cs │ │ ├── NetDevPL.Infrastructure.Services.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RssProvider.cs │ │ └── packages.config │ ├── NetDevPL.Infrastructure.MongoDB │ │ ├── MongoDBProvider.cs │ │ ├── NetDevPL.Infrastructure.MongoDB.csproj │ │ ├── NetDevPL.Infrastructure.MongoDB.csproj.DotSettings │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── NetDevPL.Infrastructure.SharedKernel │ │ ├── Logger.cs │ │ ├── NetDevPL.Infrastructure.SharedKernel.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config └── Tests │ └── Integration │ └── NetDevPL.Features.Facebook.IntegrationTests │ ├── App.config │ ├── FacebookDataProviderTests.cs │ ├── NetDevPL.Features.Facebook.IntegrationTests.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config └── tests ├── Integration └── NetDevPL.Features.NetGroups.IntegrationTests │ ├── App.config │ ├── MeetupDataProviderTests.cs │ ├── NetDevPL.Features.NetGroups.IntegrationTests.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── NetDevPL.CodeQualityTests ├── CodeQualityTests.cs ├── NetDevPL.CodeQualityTests.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── NetDevPL.TestHelpers ├── NetDevPL.TestHelpers.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config └── Unit ├── NetDevPL.Apps.WebApp.Tests ├── Features │ ├── ConferenceVideos │ │ ├── ConferenceVideoSourceTests.cs │ │ └── ConferenceVideoViewModelTests.cs │ ├── LearnOnline │ │ ├── LearnOnlineListViewModelTests.cs │ │ └── LearnOnlineSourceTests.cs │ ├── Resources │ │ ├── ResourcesSourceTests.cs │ │ └── ResourcesViewModelTests.cs │ └── Webcasts │ │ ├── WebcastsSourceTests.cs │ │ └── WebcastsViewModelTests.cs ├── Infrastructure │ ├── MonthRouteSegmentConstraintTests.cs │ └── YearRouteSegmentConstraintTests.cs ├── NetDevPL.Apps.WebApp.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config └── NetDevPL.Features.Facebook.Tests ├── FacebookPostTests.cs ├── NetDevPL.Features.Facebook.Tests.csproj ├── Properties └── AssemblyInfo.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/LICENSE -------------------------------------------------------------------------------- /NetDevPL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/NetDevPL.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/solution_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/docs/solution_layout.md -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- 1 | https://pixabay.com/pl/fili%C5%BCanka-kawy-laptop-urz%C4%85d-macbook-1280537/ 2 | 3 | -------------------------------------------------------------------------------- /scripts/runCoverage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/scripts/runCoverage.ps1 -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/App.config -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/Jobs/BlogsUpdateJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/Jobs/BlogsUpdateJob.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/Jobs/FacebookJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/Jobs/FacebookJob.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/Jobs/NetGroupsUpdateJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/Jobs/NetGroupsUpdateJob.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/NetDevPL.Apps.BackgoundJobs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/NetDevPL.Apps.BackgoundJobs.csproj -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/Program.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/blogsConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/blogsConfig.json -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/job_scheduling_data_2_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/job_scheduling_data_2_0.xsd -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/netGroupsConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/netGroupsConfig.json -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/packages.config -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.BackgoundJobs/sensitive-data.config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.BackgoundJobs/sensitive-data.config.sample -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/App.config -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Bootstrapper.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Content/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Content/css/custom.css -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Content/images/cup-of-coffee-1280537_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Content/images/cup-of-coffee-1280537_1920.jpg -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Content/images/netdevspoland.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Content/images/netdevspoland.jpg -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Blogs/BlogsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Blogs/BlogsModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Blogs/BlogsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Blogs/BlogsViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Blogs/Views/blogList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Blogs/Views/blogList.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/ConferenceVideosModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/ConferenceVideosModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/ConferenceVideosSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/ConferenceVideosSource.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/ConferenceVideosViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/ConferenceVideosViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/Views/conferenceVideosList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/Views/conferenceVideosList.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/conferenceVideosList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/ConferenceVideos/conferenceVideosList.json -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Contributors/ContributorsListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Contributors/ContributorsListViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Contributors/ContributorsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Contributors/ContributorsModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Contributors/Views/contributorsList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Contributors/Views/contributorsList.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Events/ConferencesListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Events/ConferencesListViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Events/EventsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Events/EventsModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Events/Views/EventsList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Events/Views/EventsList.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Events/conferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Events/conferences.json -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Facebook/FacebookModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Facebook/FacebookModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Facebook/FacebookPostsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Facebook/FacebookPostsViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Facebook/Views/facebookPosts.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Facebook/Views/facebookPosts.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Groups/GroupsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Groups/GroupsModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Groups/GroupsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Groups/GroupsViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Groups/Views/groupsList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Groups/Views/groupsList.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Home/HomeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Home/HomeModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Home/Views/ToS.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Home/Views/ToS.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Home/Views/index.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Home/Views/login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Home/Views/login.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/LearnOnlineModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/LearnOnlineModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/LearnOnlineSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/LearnOnlineSource.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/Views/learnOnlineList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/Views/learnOnlineList.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/WebsiteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/WebsiteViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/programmingChallenges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/programmingChallenges.json -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/toolsMastering.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/LearnOnline/toolsMastering.json -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Resources/ResourcesModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Resources/ResourcesModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Resources/ResourcesSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Resources/ResourcesSource.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Resources/ResourcesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Resources/ResourcesViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Resources/Views/resourcesList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Resources/Views/resourcesList.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Resources/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Resources/resources.json -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Shared/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Shared/BaseViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Shared/Views/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Shared/Views/_Layout.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/Shared/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/Shared/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/Views/webcastsList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/Views/webcastsList.cshtml -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/WebCastsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/WebCastsModule.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/WebcastsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/WebcastsSource.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/WebcastsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/WebcastsViewModel.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/webcastsList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Features/WebCasts/webcastsList.json -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Infrastructure/AuthUserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Infrastructure/AuthUserIdentity.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Infrastructure/FormsUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Infrastructure/FormsUser.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Infrastructure/MonthRouteSegmentConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Infrastructure/MonthRouteSegmentConstraint.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Infrastructure/YearRouteSegmentConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Infrastructure/YearRouteSegmentConstraint.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/NLog.config -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/NetDevPL.Apps.WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/NetDevPL.Apps.WebApp.csproj -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/NetDevPL.Apps.WebApp.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/NetDevPL.Apps.WebApp.csproj.DotSettings -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Program.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/RazorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/RazorConfiguration.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/SampleAuthenticationCallbackProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/SampleAuthenticationCallbackProvider.cs -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/packages.config -------------------------------------------------------------------------------- /src/Apps/NetDevPL.Apps.WebApp/sensitive-data.config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Apps/NetDevPL.Apps.WebApp/sensitive-data.config.sample -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Blogs/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Blogs/Blog.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Blogs/BlogDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Blogs/BlogDataProvider.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Blogs/BlogDataSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Blogs/BlogDataSnapshot.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Blogs/BlogPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Blogs/BlogPost.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Blogs/NetDevPL.Features.Blogs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Blogs/NetDevPL.Features.Blogs.csproj -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Blogs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Blogs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Blogs/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Blogs/Repository.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Blogs/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Blogs/packages.config -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookComment.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookDataProvider.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookLikesContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookLikesContainer.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookNews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookNews.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookNewsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookNewsContainer.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookObject.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookPaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookPaging.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookPagingCursors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookPagingCursors.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookReactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookReactions.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FacebookSummary.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/DataProvider/FaceboookCommentsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/DataProvider/FaceboookCommentsContainer.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/FacebookComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/FacebookComment.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/FacebookLike.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/FacebookLike.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/FacebookPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/FacebookPost.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/FacebookUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/FacebookUser.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/NetDevPL.Features.Facebook.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/NetDevPL.Features.Facebook.csproj -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/PostFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/PostFilter.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/Repository.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/SortDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/SortDirection.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Facebook/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Facebook/packages.config -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.NetGroups/MeetupDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.NetGroups/MeetupDataProvider.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.NetGroups/NetDevPL.Features.NetGroups.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.NetGroups/NetDevPL.Features.NetGroups.csproj -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.NetGroups/NetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.NetGroups/NetGroup.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.NetGroups/NetGroupDataSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.NetGroups/NetGroupDataSnapshot.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.NetGroups/NetGroupMeeting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.NetGroups/NetGroupMeeting.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.NetGroups/NetGroupMeetingSeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.NetGroups/NetGroupMeetingSeat.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.NetGroups/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.NetGroups/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.NetGroups/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.NetGroups/Repository.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.NetGroups/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.NetGroups/packages.config -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Reporting/DomainModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Reporting/DomainModels.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Reporting/FacebookStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Reporting/FacebookStats.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Reporting/NetDevPL.Features.Reporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Reporting/NetDevPL.Features.Reporting.csproj -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.Reporting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.Reporting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.UserManagement/NetDevPL.Features.UserManagement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.UserManagement/NetDevPL.Features.UserManagement.csproj -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.UserManagement/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.UserManagement/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.UserManagement/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.UserManagement/Repository.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.UserManagement/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.UserManagement/User.cs -------------------------------------------------------------------------------- /src/Features/NetDevPL.Features.UserManagement/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Features/NetDevPL.Features.UserManagement/packages.config -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.Helpers/IJsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.Helpers/IJsonReader.cs -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.Helpers/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.Helpers/JsonReader.cs -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.Helpers/NetDevPL.Infrastructure.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.Helpers/NetDevPL.Infrastructure.Services.csproj -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.Helpers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.Helpers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.Helpers/RssProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.Helpers/RssProvider.cs -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.Helpers/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.Helpers/packages.config -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.MongoDB/MongoDBProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.MongoDB/MongoDBProvider.cs -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.MongoDB/NetDevPL.Infrastructure.MongoDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.MongoDB/NetDevPL.Infrastructure.MongoDB.csproj -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.MongoDB/NetDevPL.Infrastructure.MongoDB.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.MongoDB/NetDevPL.Infrastructure.MongoDB.csproj.DotSettings -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.MongoDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.MongoDB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.MongoDB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.MongoDB/packages.config -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.SharedKernel/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.SharedKernel/Logger.cs -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.SharedKernel/NetDevPL.Infrastructure.SharedKernel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.SharedKernel/NetDevPL.Infrastructure.SharedKernel.csproj -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.SharedKernel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.SharedKernel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Infrastructure/NetDevPL.Infrastructure.SharedKernel/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Infrastructure/NetDevPL.Infrastructure.SharedKernel/packages.config -------------------------------------------------------------------------------- /src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/App.config -------------------------------------------------------------------------------- /src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/FacebookDataProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/FacebookDataProviderTests.cs -------------------------------------------------------------------------------- /src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/NetDevPL.Features.Facebook.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/NetDevPL.Features.Facebook.IntegrationTests.csproj -------------------------------------------------------------------------------- /src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/src/Tests/Integration/NetDevPL.Features.Facebook.IntegrationTests/packages.config -------------------------------------------------------------------------------- /tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/App.config -------------------------------------------------------------------------------- /tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/MeetupDataProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/MeetupDataProviderTests.cs -------------------------------------------------------------------------------- /tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/NetDevPL.Features.NetGroups.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/NetDevPL.Features.NetGroups.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Integration/NetDevPL.Features.NetGroups.IntegrationTests/packages.config -------------------------------------------------------------------------------- /tests/NetDevPL.CodeQualityTests/CodeQualityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/NetDevPL.CodeQualityTests/CodeQualityTests.cs -------------------------------------------------------------------------------- /tests/NetDevPL.CodeQualityTests/NetDevPL.CodeQualityTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/NetDevPL.CodeQualityTests/NetDevPL.CodeQualityTests.csproj -------------------------------------------------------------------------------- /tests/NetDevPL.CodeQualityTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/NetDevPL.CodeQualityTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/NetDevPL.CodeQualityTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/NetDevPL.CodeQualityTests/app.config -------------------------------------------------------------------------------- /tests/NetDevPL.CodeQualityTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/NetDevPL.CodeQualityTests/packages.config -------------------------------------------------------------------------------- /tests/NetDevPL.TestHelpers/NetDevPL.TestHelpers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/NetDevPL.TestHelpers/NetDevPL.TestHelpers.csproj -------------------------------------------------------------------------------- /tests/NetDevPL.TestHelpers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/NetDevPL.TestHelpers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/NetDevPL.TestHelpers/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/NetDevPL.TestHelpers/packages.config -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/ConferenceVideos/ConferenceVideoSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/ConferenceVideos/ConferenceVideoSourceTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/ConferenceVideos/ConferenceVideoViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/ConferenceVideos/ConferenceVideoViewModelTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/LearnOnline/LearnOnlineListViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/LearnOnline/LearnOnlineListViewModelTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/LearnOnline/LearnOnlineSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/LearnOnline/LearnOnlineSourceTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/Resources/ResourcesSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/Resources/ResourcesSourceTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/Resources/ResourcesViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/Resources/ResourcesViewModelTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/Webcasts/WebcastsSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/Webcasts/WebcastsSourceTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/Webcasts/WebcastsViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Features/Webcasts/WebcastsViewModelTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Infrastructure/MonthRouteSegmentConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Infrastructure/MonthRouteSegmentConstraintTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Infrastructure/YearRouteSegmentConstraintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Infrastructure/YearRouteSegmentConstraintTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/NetDevPL.Apps.WebApp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/NetDevPL.Apps.WebApp.Tests.csproj -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/app.config -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Apps.WebApp.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Apps.WebApp.Tests/packages.config -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Features.Facebook.Tests/FacebookPostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Features.Facebook.Tests/FacebookPostTests.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Features.Facebook.Tests/NetDevPL.Features.Facebook.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Features.Facebook.Tests/NetDevPL.Features.Facebook.Tests.csproj -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Features.Facebook.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Features.Facebook.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Unit/NetDevPL.Features.Facebook.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetDevelopersPoland/NetDevPLWebsite/HEAD/tests/Unit/NetDevPL.Features.Facebook.Tests/packages.config --------------------------------------------------------------------------------