├── Links.txt ├── README.md ├── doc ├── Examples-CSharp-Basic.txt ├── Examples-CSharp.txt ├── Questions │ └── Questions.txt ├── ebooks │ └── ECMA-404_2nd_edition_december_2017.pdf ├── figures │ ├── GeneralMultilayerArchitecture.png │ ├── MultiLayerArchitecture-Mehmet-Gunes.png │ └── ikinci-dereceden-denklem.jpg └── notes │ ├── CSharp.pdf │ ├── HTML5.docx │ ├── NotesLinks.txt │ ├── curl.txt │ ├── httpie.txt │ └── scaffold.txt ├── homework ├── Dotnet │ ├── Homework-001.pdf │ └── Homework-002.pdf └── Javascript │ ├── Homework-JavaScript-002.pdf │ ├── Homework-JavaScript-003.pdf │ ├── Homework-JavaScript-004.pdf │ └── Homework-Javascript-001.pdf └── src ├── DotnetCore ├── Libraries │ ├── DataUtilLib │ │ ├── .vs │ │ │ └── DataUtilLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── DataUtilLib.csproj │ │ ├── DataUtilLib.sln │ │ ├── DatabaseUtil.cs │ │ ├── Repository │ │ │ ├── CrudRepository.cs │ │ │ ├── CrudRepositoryEx.cs │ │ │ ├── ICrudRepository.cs │ │ │ ├── IEntity.cs │ │ │ └── RepositoryException.cs │ │ ├── Service │ │ │ └── DataServiceException.cs │ │ ├── bin │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.deps.json │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Data.dll │ │ └── obj │ │ │ ├── DataUtilLib.csproj.nuget.dgspec.json │ │ │ ├── DataUtilLib.csproj.nuget.g.props │ │ │ ├── DataUtilLib.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── DataUtilLib.AssemblyInfo.cs │ │ │ │ ├── DataUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── DataUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── DataUtilLib.assets.cache │ │ │ │ ├── DataUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── DataUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── DataUtilLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ └── CSD.Data.dll │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── DataUtilLib.AssemblyInfo.cs │ │ │ │ ├── DataUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── DataUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── DataUtilLib.assets.cache │ │ │ │ ├── DataUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── DataUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── DataUtilLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ └── CSD.Data.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── ExceptionUtilLib │ │ ├── .vs │ │ │ └── ExceptionUtilLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── ExceptionUtil.cs │ │ ├── ExceptionUtilLib.csproj │ │ ├── ExceptionUtilLib.sln │ │ ├── bin │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.Error.deps.json │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Error.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── ExceptionUtilLib.AssemblyInfo.cs │ │ │ │ ├── ExceptionUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── ExceptionUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ExceptionUtilLib.assets.cache │ │ │ │ └── ExceptionUtilLib.csproj.AssemblyReference.cache │ │ │ ├── ExceptionUtilLib.csproj.nuget.dgspec.json │ │ │ ├── ExceptionUtilLib.csproj.nuget.g.props │ │ │ ├── ExceptionUtilLib.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ ├── ExceptionUtilLib.AssemblyInfo.cs │ │ │ │ ├── ExceptionUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── ExceptionUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ExceptionUtilLib.assets.cache │ │ │ │ ├── ExceptionUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── ExceptionUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── ExceptionUtilLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Error.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── HttpClientExtensionLib │ │ ├── .vs │ │ │ └── HttpClientExtensionLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── HttpClientExtensionLib.sln │ │ └── HttpClientExtensionLib │ │ │ ├── Extensions │ │ │ └── Net │ │ │ │ └── Http │ │ │ │ └── HttpClientExtensions.cs │ │ │ ├── HttpClientExtensionLib.csproj │ │ │ ├── bin │ │ │ ├── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ ├── CSD.Extensions.Net.Http.deps.json │ │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ │ └── CSD.Extensions.Net.Http.pdb │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Extensions.Net.Http.deps.json │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Extensions.Net.Http.dll │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfo.cs │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfoInputs.cache │ │ │ │ ├── HttpClientExtensionLib.assets.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.FileListAbsolute.txt │ │ │ │ └── HttpClientExtensionLib.csprojAssemblyReference.cache │ │ │ ├── HttpClientExtensionLib.csproj.nuget.dgspec.json │ │ │ ├── HttpClientExtensionLib.csproj.nuget.g.props │ │ │ ├── HttpClientExtensionLib.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ ├── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfo.cs │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfoInputs.cache │ │ │ │ ├── HttpClientExtensionLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── HttpClientExtensionLib.assets.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.AssemblyReference.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ │ └── CSD.Extensions.Net.Http.dll │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfo.cs │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfoInputs.cache │ │ │ │ ├── HttpClientExtensionLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── HttpClientExtensionLib.assets.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.AssemblyReference.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.FileListAbsolute.txt │ │ │ │ └── HttpClientExtensionLib.csprojAssemblyReference.cache │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── MapperUtilLib │ │ ├── .vs │ │ │ └── MapperUtilLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── AutoMapper │ │ │ └── Mapper.cs │ │ ├── IMapper.cs │ │ ├── MapperUtilLib.csproj │ │ ├── MapperUtilLib.sln │ │ ├── Mapster │ │ │ └── Mapper.cs │ │ ├── bin │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.Mappers.deps.json │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Mappers.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── MapperUtilLib.AssemblyInfo.cs │ │ │ │ ├── MapperUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── MapperUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── MapperUtilLib.assets.cache │ │ │ │ └── MapperUtilLib.csproj.AssemblyReference.cache │ │ │ ├── MapperUtilLib.csproj.nuget.dgspec.json │ │ │ ├── MapperUtilLib.csproj.nuget.g.props │ │ │ ├── MapperUtilLib.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── MapperUtilLib.AssemblyInfo.cs │ │ │ │ ├── MapperUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── MapperUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── MapperUtilLib.assets.cache │ │ │ │ ├── MapperUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── MapperUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── MapperUtilLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Mappers.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── TaskUtilLib │ │ ├── .vs │ │ └── TaskUtilLib │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ │ ├── TPL │ │ └── TaskUtil.cs │ │ ├── TaskUtilLib.csproj │ │ ├── TaskUtilLib.sln │ │ ├── bin │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.TPL.deps.json │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.TPL.dll │ │ └── Release │ │ │ └── net5.0 │ │ │ ├── CSD.Util.TPL.deps.json │ │ │ ├── CSD.Util.TPL.dll │ │ │ ├── CSD.Util.TPL.pdb │ │ │ └── ref │ │ │ └── CSD.Util.TPL.dll │ │ └── obj │ │ ├── Debug │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.TPL.dll │ │ │ ├── CSD.Util.TPL.pdb │ │ │ ├── TaskUtilLib.AssemblyInfo.cs │ │ │ ├── TaskUtilLib.AssemblyInfoInputs.cache │ │ │ ├── TaskUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── TaskUtilLib.assets.cache │ │ │ ├── TaskUtilLib.csproj.AssemblyReference.cache │ │ │ ├── TaskUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── TaskUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.TPL.dll │ │ ├── Release │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.TPL.dll │ │ │ ├── CSD.Util.TPL.pdb │ │ │ ├── TaskUtilLib.AssemblyInfo.cs │ │ │ ├── TaskUtilLib.AssemblyInfoInputs.cache │ │ │ ├── TaskUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── TaskUtilLib.assets.cache │ │ │ ├── TaskUtilLib.csproj.AssemblyReference.cache │ │ │ ├── TaskUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── TaskUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.TPL.dll │ │ ├── TaskUtilLib.csproj.nuget.dgspec.json │ │ ├── TaskUtilLib.csproj.nuget.g.props │ │ ├── TaskUtilLib.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── Projects │ ├── ASPDotnet │ └── WebAPI │ │ ├── 001-TodoApplicationRestAppIntro │ │ ├── .vs │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── 001-TodoApplicationRestApp.csproj │ │ ├── 001-TodoApplicationRestApp.csproj.user │ │ ├── 001-TodoApplicationRestApp.sln │ │ ├── Controllers │ │ │ └── TodoController.cs │ │ ├── Factory │ │ │ └── TodoRandomFactory.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── TodoInfo.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── obj │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── 001-TodoApplicationRestApp.assets.cache │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.FileListAbsolute.txt │ │ │ │ └── apphost.exe │ │ │ └── project.assets.json │ │ ├── 002-TodoApplicationRestAppStatusCodeIntro │ │ ├── .vs │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── 001-TodoApplicationRestApp.csproj │ │ ├── 001-TodoApplicationRestApp.csproj.user │ │ ├── 001-TodoApplicationRestApp.sln │ │ ├── Controllers │ │ │ └── TodoController.cs │ │ ├── Errors │ │ │ └── ErrorInfo.cs │ │ ├── Factories │ │ │ └── TodoRandomFactory.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── TodoInfo.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── obj │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── 001-TodoApplicationRestApp.assets.cache │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.FileListAbsolute.txt │ │ │ │ └── apphost.exe │ │ │ └── project.assets.json │ │ ├── 003-TodoApplicationRestAppMultiLayerIC │ │ ├── .vs │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── 001-TodoApplicationRestApp.csproj │ │ ├── 001-TodoApplicationRestApp.csproj.user │ │ ├── 001-TodoApplicationRestApp.sln │ │ ├── Controllers │ │ │ └── TodoController.cs │ │ ├── DAL │ │ │ └── TodoAppDAL.cs │ │ ├── Entities │ │ │ └── TodoInfo.cs │ │ ├── Errors │ │ │ └── ErrorInfo.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repositories │ │ │ ├── ITodoRepository.cs │ │ │ └── TodoRepository.cs │ │ ├── Services │ │ │ └── TodoAppService.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── db.sql │ │ └── obj │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── 001-TodoApplicationRestApp.assets.cache │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.FileListAbsolute.txt │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfo.cs │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ ├── TodoApplicationRestApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── TodoApplicationRestApp.assets.cache │ │ │ │ ├── TodoApplicationRestApp.csproj.AssemblyReference.cache │ │ │ │ └── apphost.exe │ │ │ ├── TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ ├── 004-TodoApplicationRestAppRelationIC │ │ ├── .vs │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ │ └── v16 │ │ │ │ ├── .suo │ │ │ │ └── TestStore │ │ │ │ └── 0 │ │ │ │ ├── 000.testlog │ │ │ │ └── testlog.manifest │ │ ├── 001-TodoApplicationRestApp.csproj │ │ ├── 001-TodoApplicationRestApp.csproj.user │ │ ├── 001-TodoApplicationRestApp.sln │ │ ├── Configuration │ │ │ └── ConnectionConfig.cs │ │ ├── Controllers │ │ │ ├── ItemController.cs │ │ │ └── TodoController.cs │ │ ├── DAL │ │ │ └── TodoAppDAL.cs │ │ ├── DTO │ │ │ └── TodoInfoDTO.cs │ │ ├── Entities │ │ │ ├── ItemInfo.cs │ │ │ ├── TodoInfo.cs │ │ │ └── TodoInfoItem.cs │ │ ├── Errors │ │ │ └── ErrorInfo.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repositories │ │ │ ├── IItemRepository.cs │ │ │ ├── ITodoRepository.cs │ │ │ ├── ItemRepository.cs │ │ │ └── TodoRepository.cs │ │ ├── Services │ │ │ └── TodoAppService.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── db.sql │ │ └── obj │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── 001-TodoApplicationRestApp.assets.cache │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.FileListAbsolute.txt │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfo.cs │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ ├── TodoApplicationRestApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── TodoApplicationRestApp.assets.cache │ │ │ │ ├── TodoApplicationRestApp.csproj.AssemblyReference.cache │ │ │ │ └── apphost.exe │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── 001-TodoApplicationRestApp.AssemblyInfo.cs │ │ │ │ ├── 001-TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ ├── 001-TodoApplicationRestApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ └── 001-TodoApplicationRestApp.assets.cache │ │ │ ├── TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ ├── 005-TodoApplicationRestAppRelationEF │ │ ├── .vs │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ │ └── v16 │ │ │ │ ├── .suo │ │ │ │ └── TestStore │ │ │ │ └── 0 │ │ │ │ ├── 000.testlog │ │ │ │ └── testlog.manifest │ │ ├── 001-TodoApplicationRestApp.csproj │ │ ├── 001-TodoApplicationRestApp.csproj.user │ │ ├── 001-TodoApplicationRestApp.sln │ │ ├── Configuration │ │ │ └── ConnectionConfig.cs │ │ ├── Controllers │ │ │ ├── ItemController.cs │ │ │ └── TodoController.cs │ │ ├── DAL │ │ │ └── TodoAppDAL.cs │ │ ├── DTO │ │ │ └── TodoInfoDTO.cs │ │ ├── Data │ │ │ └── TodoDbContext.cs │ │ ├── Entities │ │ │ ├── ItemInfo.cs │ │ │ ├── TodoInfo.cs │ │ │ └── TodoInfoItem.cs │ │ ├── Errors │ │ │ └── ErrorInfo.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repositories │ │ │ ├── IItemRepository.cs │ │ │ ├── ITodoRepository.cs │ │ │ ├── ItemRepository.cs │ │ │ └── TodoRepository.cs │ │ ├── Services │ │ │ └── TodoAppService.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── db.sql │ │ └── obj │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── 001-TodoApplicationRestApp.assets.cache │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.FileListAbsolute.txt │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfo.cs │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ ├── TodoApplicationRestApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── TodoApplicationRestApp.assets.cache │ │ │ │ ├── TodoApplicationRestApp.csproj.AssemblyReference.cache │ │ │ │ └── apphost.exe │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── 001-TodoApplicationRestApp.AssemblyInfo.cs │ │ │ │ ├── 001-TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ ├── 001-TodoApplicationRestApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ └── 001-TodoApplicationRestApp.assets.cache │ │ │ ├── TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ ├── 006-MovieRestServiceApplication-TODO │ │ ├── .vs │ │ │ └── MovieRestServiceApplication │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── Controllers │ │ │ ├── DirectorController.cs │ │ │ └── MovieController.cs │ │ ├── Data │ │ │ ├── DAL │ │ │ │ └── MoviesDataHelper.cs │ │ │ ├── DTO │ │ │ │ ├── DirectorSaveModel.cs │ │ │ │ ├── DirectorViewModel.cs │ │ │ │ ├── DirectorWithIdViewModel.cs │ │ │ │ ├── MovieSaveModel.cs │ │ │ │ └── MovieViewModel.cs │ │ │ ├── Entities │ │ │ │ ├── Director.cs │ │ │ │ ├── Movie.cs │ │ │ │ ├── MovieToDirector.cs │ │ │ │ └── Parts │ │ │ │ │ └── Director.cs │ │ │ ├── MovieAppDbContext.cs │ │ │ ├── Repositories │ │ │ │ ├── DirectorRepository.cs │ │ │ │ ├── IDirectorRepository.cs │ │ │ │ ├── IMovieRepository.cs │ │ │ │ └── MovieRepository.cs │ │ │ └── Service │ │ │ │ └── MoviesService.cs │ │ ├── Db.sql │ │ ├── MovieRestServiceApplication.csproj │ │ ├── MovieRestServiceApplication.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Question.txt │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.MovieRestServiceApplication.deps.json │ │ │ │ ├── CSD.MovieRestServiceApplication.dll │ │ │ │ ├── CSD.MovieRestServiceApplication.exe │ │ │ │ ├── CSD.MovieRestServiceApplication.pdb │ │ │ │ ├── CSD.MovieRestServiceApplication.runtimeconfig.dev.json │ │ │ │ ├── CSD.MovieRestServiceApplication.runtimeconfig.json │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ ├── Humanizer.dll │ │ │ │ ├── Mapster.Core.dll │ │ │ │ ├── Mapster.dll │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── ref │ │ │ │ └── CSD.MovieRestServiceApplication.dll │ │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ ├── netcoreapp2.1 │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ │ └── sni.dll │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ │ └── sni.dll │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ │ └── sni.dll │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp2.1 │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ ├── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ └── netstandard2.0 │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ ├── insert.sql │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.MovieRestServiceApplication.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── CSD.MovieRestServiceApplication.dll │ │ │ │ ├── CSD.MovieRestServiceApplication.pdb │ │ │ │ ├── MovieRestServiceApplication.AssemblyInfo.cs │ │ │ │ ├── MovieRestServiceApplication.AssemblyInfoInputs.cache │ │ │ │ ├── MovieRestServiceApplication.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── MovieRestServiceApplication.RazorTargetAssemblyInfo.cache │ │ │ │ ├── MovieRestServiceApplication.assets.cache │ │ │ │ ├── MovieRestServiceApplication.csproj.AssemblyReference.cache │ │ │ │ ├── MovieRestServiceApplication.csproj.CopyComplete │ │ │ │ ├── MovieRestServiceApplication.csproj.CoreCompileInputs.cache │ │ │ │ ├── MovieRestServiceApplication.csproj.FileListAbsolute.txt │ │ │ │ ├── MovieRestServiceApplication.genruntimeconfig.cache │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── CSD.MovieRestServiceApplication.dll │ │ │ │ └── staticwebassets │ │ │ │ ├── CSD.MovieRestServiceApplication.StaticWebAssets.Manifest.cache │ │ │ │ └── CSD.MovieRestServiceApplication.StaticWebAssets.xml │ │ │ ├── MovieRestServiceApplication.csproj.nuget.dgspec.json │ │ │ ├── MovieRestServiceApplication.csproj.nuget.g.props │ │ │ ├── MovieRestServiceApplication.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ ├── 007-WikiSearchAppGeonames │ │ ├── Entities │ │ │ ├── Geoname.cs │ │ │ ├── WikiSearch.cs │ │ │ ├── WikiSearchAppEntitiesLib.csproj │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ ├── Entities.AssemblyInfo.cs │ │ │ │ │ ├── Entities.AssemblyInfoInputs.cache │ │ │ │ │ ├── Entities.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── Entities.assets.cache │ │ │ │ │ ├── WikiSearchAppEntitiesLib.assets.cache │ │ │ │ │ ├── WikiSearchAppEntitiesLib.csproj.FileListAbsolute.txt │ │ │ │ │ ├── WikiSearchEntitiesLib.AssemblyInfo.cs │ │ │ │ │ ├── WikiSearchEntitiesLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── WikiSearchEntitiesLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── WikiSearchEntitiesLib.assets.cache │ │ │ │ │ └── WikiSearchEntitiesLib.csproj.AssemblyReference.cache │ │ │ │ ├── Entities.csproj.nuget.dgspec.json │ │ │ │ ├── Entities.csproj.nuget.g.props │ │ │ │ ├── Entities.csproj.nuget.g.targets │ │ │ │ ├── WikiSearchAppEntitiesLib.csproj.nuget.dgspec.json │ │ │ │ ├── WikiSearchAppEntitiesLib.csproj.nuget.g.props │ │ │ │ ├── WikiSearchAppEntitiesLib.csproj.nuget.g.targets │ │ │ │ ├── WikiSearchEntitiesLib.csproj.nuget.dgspec.json │ │ │ │ ├── WikiSearchEntitiesLib.csproj.nuget.g.props │ │ │ │ ├── WikiSearchEntitiesLib.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ ├── WikiSearchAppDALLib │ │ │ ├── WikiSearchAppDALLib.csproj │ │ │ ├── WikiSearchAppDataHelper.cs │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ ├── WikiSearchAppDALLib.assets.cache │ │ │ │ │ └── WikiSearchAppDALLib.csproj.FileListAbsolute.txt │ │ │ │ ├── WikiSearchAppDALLib.csproj.nuget.dgspec.json │ │ │ │ ├── WikiSearchAppDALLib.csproj.nuget.g.props │ │ │ │ ├── WikiSearchAppDALLib.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ ├── WikiSearchAppGeonamesLib │ │ │ ├── Geonames │ │ │ │ ├── Global.cs │ │ │ │ ├── WikiSearchClient.cs │ │ │ │ └── WikiSearchInfo.cs │ │ │ ├── WikiSearchAppGeonamesLib.csproj │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ ├── WikiSearchAppGeonamesLib.assets.cache │ │ │ │ │ └── WikiSearchAppGeonamesLib.csproj.FileListAbsolute.txt │ │ │ │ ├── WikiSearchAppGeonamesLib.csproj.nuget.dgspec.json │ │ │ │ ├── WikiSearchAppGeonamesLib.csproj.nuget.g.props │ │ │ │ ├── WikiSearchAppGeonamesLib.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ ├── WikiSearchAppRepositoryLib │ │ │ ├── Contexts │ │ │ │ └── WikiSearchAppDbContext.cs │ │ │ ├── IWikiSearchRepository.cs │ │ │ ├── WikiSearchAppRepositoryLib.csproj │ │ │ ├── WikiSearchRepository.cs │ │ │ ├── db.sql │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ ├── WikiSearchAppRepositoryLib.assets.cache │ │ │ │ │ └── WikiSearchAppRepositoryLib.csproj.FileListAbsolute.txt │ │ │ │ ├── WikiSearchAppRepositoryLib.csproj.nuget.dgspec.json │ │ │ │ ├── WikiSearchAppRepositoryLib.csproj.nuget.g.props │ │ │ │ ├── WikiSearchAppRepositoryLib.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ ├── WikiSearchAppServiceLib │ │ │ ├── WikiSearchAppService.cs │ │ │ ├── WikiSearchAppServiceLib.csproj │ │ │ ├── WikiSearchDTO.cs │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ ├── WikiSearchAppServiceLib.assets.cache │ │ │ │ │ └── WikiSearchAppServiceLib.csproj.FileListAbsolute.txt │ │ │ │ ├── WikiSearchAppServiceLib.csproj.nuget.dgspec.json │ │ │ │ ├── WikiSearchAppServiceLib.csproj.nuget.g.props │ │ │ │ ├── WikiSearchAppServiceLib.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ ├── WikiSearchDALTestLib │ │ │ ├── Test_ExistByQAsync.cs │ │ │ ├── Test_FindWikiSearchByQAsync.cs │ │ │ ├── Test_SaveWikiSearchAsync.cs │ │ │ ├── WikiSearchDALTestLib.csproj │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ └── nunit_random_seed.tmp │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ ├── WikiSearchDALTestLib.assets.cache │ │ │ │ │ └── WikiSearchDALTestLib.csproj.FileListAbsolute.txt │ │ │ │ ├── WikiSearchDALTestLib.csproj.nuget.dgspec.json │ │ │ │ ├── WikiSearchDALTestLib.csproj.nuget.g.props │ │ │ │ ├── WikiSearchDALTestLib.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ ├── WikiSearchGeoNUnitTest │ │ │ ├── Test_WikiSearchGeo.cs │ │ │ ├── Test_WikiSearchGeoFound.cs │ │ │ ├── Test_WikiSearchGeoNotFound.cs │ │ │ ├── WikiSearchGeoNUnitTest.csproj │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ └── nunit_random_seed.tmp │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ ├── WikiSearchGeoNUnitTest.assets.cache │ │ │ │ │ └── WikiSearchGeoNUnitTest.csproj.FileListAbsolute.txt │ │ │ │ ├── WikiSearchGeoNUnitTest.csproj.nuget.dgspec.json │ │ │ │ ├── WikiSearchGeoNUnitTest.csproj.nuget.g.props │ │ │ │ ├── WikiSearchGeoNUnitTest.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ ├── WikiSearchServiceGeoNames │ │ │ ├── .vs │ │ │ │ └── WikiSearchServiceGeoNames │ │ │ │ │ ├── DesignTimeBuild │ │ │ │ │ └── .dtbcache.v2 │ │ │ │ │ ├── config │ │ │ │ │ └── applicationhost.config │ │ │ │ │ └── v16 │ │ │ │ │ ├── .suo │ │ │ │ │ └── TestStore │ │ │ │ │ └── 0 │ │ │ │ │ ├── 008.testlog │ │ │ │ │ └── testlog.manifest │ │ │ ├── Controllers │ │ │ │ └── WikiSearchController.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── WikiSearchServiceGeoNames.csproj │ │ │ ├── WikiSearchServiceGeoNames.csproj.user │ │ │ ├── WikiSearchServiceGeoNames.sln │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ ├── WikiSearchServiceGeoNames.assets.cache │ │ │ │ │ ├── WikiSearchServiceGeoNames.csproj.FileListAbsolute.txt │ │ │ │ │ └── apphost.exe │ │ │ │ ├── WikiSearchServiceGeoNames.csproj.nuget.dgspec.json │ │ │ │ ├── WikiSearchServiceGeoNames.csproj.nuget.g.props │ │ │ │ ├── WikiSearchServiceGeoNames.csproj.nuget.g.targets │ │ │ │ └── project.assets.json │ │ └── WikiSearchServiceTestLib │ │ │ ├── Test_FindWikiSearchByQAsync.cs │ │ │ ├── WikiSearchServiceTestLib.csproj │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ └── nunit_random_seed.tmp │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── WikiSearchServiceTestLib.assets.cache │ │ │ │ └── WikiSearchServiceTestLib.csproj.FileListAbsolute.txt │ │ │ ├── WikiSearchServiceTestLib.csproj.nuget.dgspec.json │ │ │ ├── WikiSearchServiceTestLib.csproj.nuget.g.props │ │ │ ├── WikiSearchServiceTestLib.csproj.nuget.g.targets │ │ │ └── project.assets.json │ │ ├── 008-TodoApplicationRestAppAutoRepo │ │ ├── .vs │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── config │ │ │ │ └── applicationhost.config │ │ │ │ └── v16 │ │ │ │ ├── .suo │ │ │ │ └── TestStore │ │ │ │ └── 0 │ │ │ │ ├── 000.testlog │ │ │ │ └── testlog.manifest │ │ ├── 001-TodoApplicationRestApp.csproj │ │ ├── 001-TodoApplicationRestApp.csproj.user │ │ ├── 001-TodoApplicationRestApp.sln │ │ ├── Controllers │ │ │ ├── ItemController.cs │ │ │ └── TodoController.cs │ │ ├── DAL │ │ │ └── TodoAppDAL.cs │ │ ├── DTO │ │ │ └── TodoInfoDTO.cs │ │ ├── Data │ │ │ └── TodoDbContext.cs │ │ ├── Entities │ │ │ ├── ItemInfo.cs │ │ │ ├── TodoInfo.cs │ │ │ └── TodoInfoItem.cs │ │ ├── Errors │ │ │ └── ErrorInfo.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Repositories │ │ │ ├── IItemRepository.cs │ │ │ ├── ITodoRepository.cs │ │ │ ├── ItemRepository.cs │ │ │ └── TodoRepository.cs │ │ ├── Services │ │ │ └── TodoAppService.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── 001-TodoApplicationRestApp.deps.json │ │ │ │ ├── 001-TodoApplicationRestApp.dll │ │ │ │ ├── 001-TodoApplicationRestApp.exe │ │ │ │ ├── 001-TodoApplicationRestApp.pdb │ │ │ │ ├── 001-TodoApplicationRestApp.runtimeconfig.dev.json │ │ │ │ ├── 001-TodoApplicationRestApp.runtimeconfig.json │ │ │ │ ├── AutoMapper.dll │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ ├── Humanizer.dll │ │ │ │ ├── Mapster.Core.dll │ │ │ │ ├── Mapster.dll │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Microsoft.OpenApi.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── ref │ │ │ │ └── 001-TodoApplicationRestApp.dll │ │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ ├── netcoreapp2.1 │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ │ └── sni.dll │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ │ └── sni.dll │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ │ └── sni.dll │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp2.1 │ │ │ │ └── System.Data.SqlClient.dll │ │ │ │ ├── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ └── netstandard2.0 │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ ├── db.sql │ │ └── obj │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── 001-TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── 001-TodoApplicationRestApp.AssemblyInfo.cs │ │ │ │ ├── 001-TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ ├── 001-TodoApplicationRestApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── 001-TodoApplicationRestApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── 001-TodoApplicationRestApp.RazorTargetAssemblyInfo.cache │ │ │ │ ├── 001-TodoApplicationRestApp.assets.cache │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.AssemblyReference.cache │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.CopyComplete │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.CoreCompileInputs.cache │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.FileListAbsolute.txt │ │ │ │ ├── 001-TodoApplicationRestApp.dll │ │ │ │ ├── 001-TodoApplicationRestApp.genruntimeconfig.cache │ │ │ │ ├── 001-TodoApplicationRestApp.pdb │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfo.cs │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ ├── TodoApplicationRestApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── TodoApplicationRestApp.assets.cache │ │ │ │ ├── TodoApplicationRestApp.csproj.AssemblyReference.cache │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── 001-TodoApplicationRestApp.dll │ │ │ │ └── staticwebassets │ │ │ │ ├── 001-TodoApplicationRestApp.StaticWebAssets.Manifest.cache │ │ │ │ └── 001-TodoApplicationRestApp.StaticWebAssets.xml │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── 001-TodoApplicationRestApp.AssemblyInfo.cs │ │ │ │ ├── 001-TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ ├── 001-TodoApplicationRestApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ └── 001-TodoApplicationRestApp.assets.cache │ │ │ ├── TodoApplicationRestApp.csproj.nuget.dgspec.json │ │ │ ├── TodoApplicationRestApp.csproj.nuget.g.props │ │ │ ├── TodoApplicationRestApp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ └── WikiSearchGeonames │ │ ├── .vs │ │ └── WikiSearchGeonames │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v17 │ │ │ ├── .futdcache.v1 │ │ │ └── .suo │ │ ├── EntitiesLib │ │ ├── EntitiesLib.csproj │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── EntitiesLib.AssemblyInfo.cs │ │ │ │ ├── EntitiesLib.AssemblyInfoInputs.cache │ │ │ │ ├── EntitiesLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── EntitiesLib.GlobalUsings.g.cs │ │ │ │ ├── EntitiesLib.assets.cache │ │ │ │ ├── EntitiesLib.csproj.AssemblyReference.cache │ │ │ │ └── EntitiesLib.csproj.FileListAbsolute.txt │ │ │ ├── EntitiesLib.csproj.nuget.dgspec.json │ │ │ ├── EntitiesLib.csproj.nuget.g.props │ │ │ ├── EntitiesLib.csproj.nuget.g.targets │ │ │ └── project.assets.json │ │ ├── WikiSearchGeonames.sln │ │ └── WikiSearchServiceApp │ │ ├── Controllers │ │ └── WeatherForecastController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── WeatherForecast.cs │ │ ├── WikiSearchServiceApp.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── WikiSearchServiceApp.AssemblyInfo.cs │ │ │ ├── WikiSearchServiceApp.AssemblyInfoInputs.cache │ │ │ ├── WikiSearchServiceApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── WikiSearchServiceApp.GlobalUsings.g.cs │ │ │ ├── WikiSearchServiceApp.assets.cache │ │ │ ├── WikiSearchServiceApp.csproj.AssemblyReference.cache │ │ │ └── WikiSearchServiceApp.csproj.FileListAbsolute.txt │ │ ├── WikiSearchServiceApp.csproj.nuget.dgspec.json │ │ ├── WikiSearchServiceApp.csproj.nuget.g.props │ │ ├── WikiSearchServiceApp.csproj.nuget.g.targets │ │ └── project.assets.json │ └── SampleSolution │ ├── .vs │ ├── ProjectSettings.json │ ├── SampleSolution │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ ├── v16 │ │ │ ├── .suo │ │ │ └── TestStore │ │ │ │ └── 0 │ │ │ │ ├── 001.testlog │ │ │ │ └── testlog.manifest │ │ └── xs │ │ │ └── UserPrefs.xml │ ├── VSWorkspaceState.json │ └── slnx.sqlite │ ├── CSDCollectionUtilLib │ ├── CSDCollectionUtilLib.csproj │ ├── CSDList.cs │ ├── IntRange.cs │ ├── bin │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.Collections.deps.json │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Collections.dll │ │ └── Release │ │ │ └── net5.0 │ │ │ ├── CSD.Util.Collections.deps.json │ │ │ ├── CSD.Util.Collections.dll │ │ │ ├── CSD.Util.Collections.pdb │ │ │ └── ref │ │ │ └── CSD.Util.Collections.dll │ └── obj │ │ ├── CSDCollectionUtilLib.csproj.nuget.dgspec.json │ │ ├── CSDCollectionUtilLib.csproj.nuget.g.props │ │ ├── CSDCollectionUtilLib.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.Collections.dll │ │ │ ├── CSD.Util.Collections.pdb │ │ │ ├── CSDCollectionUtilLib.AssemblyInfo.cs │ │ │ ├── CSDCollectionUtilLib.AssemblyInfoInputs.cache │ │ │ ├── CSDCollectionUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── CSDCollectionUtilLib.assets.cache │ │ │ ├── CSDCollectionUtilLib.csproj.AssemblyReference.cache │ │ │ ├── CSDCollectionUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── CSDCollectionUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.Collections.dll │ │ ├── Release │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.Collections.dll │ │ │ ├── CSD.Util.Collections.pdb │ │ │ ├── CSDCollectionUtilLib.AssemblyInfo.cs │ │ │ ├── CSDCollectionUtilLib.AssemblyInfoInputs.cache │ │ │ ├── CSDCollectionUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── CSDCollectionUtilLib.assets.cache │ │ │ ├── CSDCollectionUtilLib.csproj.AssemblyReference.cache │ │ │ ├── CSDCollectionUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── CSDCollectionUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.Collections.dll │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── CSDUtilLib │ ├── Array │ │ └── ArrayUtil.cs │ ├── CSDUtilLib.csproj │ ├── Number │ │ └── NumberUtil.cs │ ├── bin │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.deps.json │ │ │ │ ├── CSD.Util.dll │ │ │ │ ├── CSD.Util.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.dll │ │ └── Release │ │ │ └── net5.0 │ │ │ ├── CSD.Util.deps.json │ │ │ ├── CSD.Util.dll │ │ │ ├── CSD.Util.pdb │ │ │ └── ref │ │ │ └── CSD.Util.dll │ └── obj │ │ ├── CSDUtilLib.csproj.nuget.dgspec.json │ │ ├── CSDUtilLib.csproj.nuget.g.props │ │ ├── CSDUtilLib.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.dll │ │ │ ├── CSD.Util.pdb │ │ │ ├── CSDUtilLib.AssemblyInfo.cs │ │ │ ├── CSDUtilLib.AssemblyInfoInputs.cache │ │ │ ├── CSDUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── CSDUtilLib.assets.cache │ │ │ ├── CSDUtilLib.csproj.AssemblyReference.cache │ │ │ ├── CSDUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── CSDUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.dll │ │ ├── Release │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.dll │ │ │ ├── CSD.Util.pdb │ │ │ ├── CSDUtilLib.AssemblyInfo.cs │ │ │ ├── CSDUtilLib.AssemblyInfoInputs.cache │ │ │ ├── CSDUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── CSDUtilLib.assets.cache │ │ │ ├── CSDUtilLib.csproj.AssemblyReference.cache │ │ │ ├── CSDUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── CSDUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.dll │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── CollectionUtilLib │ ├── CollectionUtil.cs │ ├── CollectionUtilLib.csproj │ ├── bin │ │ └── Debug │ │ │ └── net5.0 │ │ │ ├── CSD.Util.Collections.deps.json │ │ │ ├── CSD.Util.Collections.dll │ │ │ ├── CSD.Util.Collections.pdb │ │ │ └── ref │ │ │ └── CSD.Util.Collections.dll │ └── obj │ │ ├── CollectionUtilLib.csproj.nuget.dgspec.json │ │ ├── CollectionUtilLib.csproj.nuget.g.props │ │ ├── CollectionUtilLib.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.Collections.dll │ │ │ ├── CSD.Util.Collections.pdb │ │ │ ├── CollectionUtilLib.AssemblyInfo.cs │ │ │ ├── CollectionUtilLib.AssemblyInfoInputs.cache │ │ │ ├── CollectionUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── CollectionUtilLib.assets.cache │ │ │ ├── CollectionUtilLib.csproj.AssemblyReference.cache │ │ │ ├── CollectionUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── CollectionUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.Collections.dll │ │ ├── Release │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CollectionUtilLib.AssemblyInfo.cs │ │ │ ├── CollectionUtilLib.AssemblyInfoInputs.cache │ │ │ ├── CollectionUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ └── CollectionUtilLib.assets.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── GeneralTestDLL │ ├── Assert.cs │ ├── GeneralTestDLL.csproj │ ├── bin │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── CSD.GeneralTest.deps.json │ │ │ │ ├── CSD.GeneralTest.dll │ │ │ │ ├── CSD.GeneralTest.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.GeneralTest.dll │ │ └── Release │ │ │ └── net5.0 │ │ │ ├── CSD.GeneralTest.deps.json │ │ │ ├── CSD.GeneralTest.dll │ │ │ ├── CSD.GeneralTest.pdb │ │ │ └── ref │ │ │ └── CSD.GeneralTest.dll │ └── obj │ │ ├── Debug │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.GeneralTest.dll │ │ │ ├── CSD.GeneralTest.pdb │ │ │ ├── GeneralTestDLL.AssemblyInfo.cs │ │ │ ├── GeneralTestDLL.AssemblyInfoInputs.cache │ │ │ ├── GeneralTestDLL.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── GeneralTestDLL.assets.cache │ │ │ ├── GeneralTestDLL.csproj.AssemblyReference.cache │ │ │ ├── GeneralTestDLL.csproj.CoreCompileInputs.cache │ │ │ ├── GeneralTestDLL.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.GeneralTest.dll │ │ ├── GeneralTestDLL.csproj.nuget.dgspec.json │ │ ├── GeneralTestDLL.csproj.nuget.g.props │ │ ├── GeneralTestDLL.csproj.nuget.g.targets │ │ ├── Release │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.GeneralTest.dll │ │ │ ├── CSD.GeneralTest.pdb │ │ │ ├── GeneralTestDLL.AssemblyInfo.cs │ │ │ ├── GeneralTestDLL.AssemblyInfoInputs.cache │ │ │ ├── GeneralTestDLL.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── GeneralTestDLL.assets.cache │ │ │ ├── GeneralTestDLL.csproj.AssemblyReference.cache │ │ │ ├── GeneralTestDLL.csproj.CoreCompileInputs.cache │ │ │ ├── GeneralTestDLL.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.GeneralTest.dll │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── MathUtilLib │ ├── Complex.cs │ ├── MathUtilLib.csproj │ ├── bin │ │ └── Debug │ │ │ └── net5.0 │ │ │ ├── CSD.Util.Math.deps.json │ │ │ ├── CSD.Util.Math.dll │ │ │ ├── CSD.Util.Math.pdb │ │ │ └── ref │ │ │ └── CSD.Util.Math.dll │ └── obj │ │ ├── Debug │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.Math.dll │ │ │ ├── CSD.Util.Math.pdb │ │ │ ├── MathUtilLib.AssemblyInfo.cs │ │ │ ├── MathUtilLib.AssemblyInfoInputs.cache │ │ │ ├── MathUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── MathUtilLib.assets.cache │ │ │ ├── MathUtilLib.csproj.AssemblyReference.cache │ │ │ ├── MathUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── MathUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.Math.dll │ │ ├── MathUtilLib.csproj.nuget.dgspec.json │ │ ├── MathUtilLib.csproj.nuget.g.props │ │ ├── MathUtilLib.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── NumberUtilTestLib │ ├── IsNotPrimeTest.cs │ ├── IsPrimeTest.cs │ ├── IsPrimeTest_Mixed.cs │ ├── NumberUtilTestLib.csproj │ ├── bin │ │ └── Debug │ │ │ └── net5.0 │ │ │ ├── CSD.Util.dll │ │ │ ├── CSD.Util.pdb │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ ├── NUnit3.TestAdapter.dll │ │ │ ├── NUnit3.TestAdapter.pdb │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── NumberUtilTestLib.deps.json │ │ │ ├── NumberUtilTestLib.dll │ │ │ ├── NumberUtilTestLib.pdb │ │ │ ├── NumberUtilTestLib.runtimeconfig.dev.json │ │ │ ├── NumberUtilTestLib.runtimeconfig.json │ │ │ ├── cs │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── isNotPrime_test.txt │ │ │ ├── isPrime_test.txt │ │ │ ├── isPrime_test_mixed.txt │ │ │ ├── it │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── nunit.engine.api.dll │ │ │ ├── nunit.engine.core.dll │ │ │ ├── nunit.engine.dll │ │ │ ├── nunit.framework.dll │ │ │ ├── nunit_random_seed.tmp │ │ │ ├── pl │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ref │ │ │ └── NumberUtilTestLib.dll │ │ │ ├── ru │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── testcentric.engine.metadata.dll │ │ │ ├── testhost.dll │ │ │ ├── testhost.exe │ │ │ ├── tr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ │ ├── Debug │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── NumberUtilTestLib.AssemblyInfo.cs │ │ │ ├── NumberUtilTestLib.AssemblyInfoInputs.cache │ │ │ ├── NumberUtilTestLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── NumberUtilTestLib.assets.cache │ │ │ ├── NumberUtilTestLib.csproj.AssemblyReference.cache │ │ │ ├── NumberUtilTestLib.csproj.CopyComplete │ │ │ ├── NumberUtilTestLib.csproj.CoreCompileInputs.cache │ │ │ ├── NumberUtilTestLib.csproj.FileListAbsolute.txt │ │ │ ├── NumberUtilTestLib.dll │ │ │ ├── NumberUtilTestLib.genruntimeconfig.cache │ │ │ ├── NumberUtilTestLib.pdb │ │ │ └── ref │ │ │ └── NumberUtilTestLib.dll │ │ ├── NumberUtilTestLib.csproj.nuget.dgspec.json │ │ ├── NumberUtilTestLib.csproj.nuget.g.props │ │ ├── NumberUtilTestLib.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── NumberUtilUnitTest │ ├── IsPrimeTest.cs │ ├── NumberUtilUnitTest.csproj │ ├── Program.cs │ ├── bin │ │ └── Debug │ │ │ └── net5.0 │ │ │ ├── CSD.Util.dll │ │ │ ├── CSD.Util.pdb │ │ │ ├── NUnit3.TestAdapter.dll │ │ │ ├── NUnit3.TestAdapter.pdb │ │ │ ├── NumberUtilUnitTest.deps.json │ │ │ ├── NumberUtilUnitTest.dll │ │ │ ├── NumberUtilUnitTest.exe │ │ │ ├── NumberUtilUnitTest.pdb │ │ │ ├── NumberUtilUnitTest.runtimeconfig.dev.json │ │ │ ├── NumberUtilUnitTest.runtimeconfig.json │ │ │ ├── nunit.engine.api.dll │ │ │ ├── nunit.engine.core.dll │ │ │ ├── nunit.engine.dll │ │ │ ├── nunit.framework.dll │ │ │ ├── ref │ │ │ └── NumberUtilUnitTest.dll │ │ │ └── testcentric.engine.metadata.dll │ └── obj │ │ ├── Debug │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── NumberUtilUnitTest.AssemblyInfo.cs │ │ │ ├── NumberUtilUnitTest.AssemblyInfoInputs.cache │ │ │ ├── NumberUtilUnitTest.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── NumberUtilUnitTest.assets.cache │ │ │ ├── NumberUtilUnitTest.csproj.AssemblyReference.cache │ │ │ ├── NumberUtilUnitTest.csproj.CopyComplete │ │ │ ├── NumberUtilUnitTest.csproj.CoreCompileInputs.cache │ │ │ ├── NumberUtilUnitTest.csproj.FileListAbsolute.txt │ │ │ ├── NumberUtilUnitTest.dll │ │ │ ├── NumberUtilUnitTest.genruntimeconfig.cache │ │ │ ├── NumberUtilUnitTest.pdb │ │ │ ├── apphost.exe │ │ │ └── ref │ │ │ └── NumberUtilUnitTest.dll │ │ ├── NumberUtilUnitTest.csproj.nuget.dgspec.json │ │ ├── NumberUtilUnitTest.csproj.nuget.g.props │ │ ├── NumberUtilUnitTest.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── Sample │ ├── .vs │ │ └── Sample │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── App.cs │ ├── Entities │ │ ├── Car.cs │ │ ├── Movie.cs │ │ ├── Parts │ │ │ └── Car.cs │ │ └── Person.cs │ ├── Factories │ │ ├── CarFactory.cs │ │ ├── ComplexFactory.cs │ │ ├── MovieFactory.cs │ │ └── PersonFactory.cs │ ├── Sample.csproj │ ├── Sample.sln │ ├── bin │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── 9 │ │ │ │ ├── 10 │ │ │ │ ├── CSD.GeneralTest.dll │ │ │ │ ├── CSD.GeneralTest.pdb │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ ├── CSD.Util.Math.dll │ │ │ │ ├── CSD.Util.Math.pdb │ │ │ │ ├── CSD.Util.dll │ │ │ │ ├── CSD.Util.pdb │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── Sample.deps.json │ │ │ │ ├── Sample.dll │ │ │ │ ├── Sample.exe │ │ │ │ ├── Sample.pdb │ │ │ │ ├── Sample.runtimeconfig.dev.json │ │ │ │ ├── Sample.runtimeconfig.json │ │ │ │ ├── cars-ordered-traffiregdate-asc.txt │ │ │ │ ├── cars.csv │ │ │ │ ├── movies.txt │ │ │ │ ├── people.csv │ │ │ │ └── ref │ │ │ │ └── Sample.dll │ │ └── Release │ │ │ └── net5.0 │ │ │ ├── CSD.GeneralTest.dll │ │ │ ├── CSD.GeneralTest.pdb │ │ │ ├── CSD.Util.Collections.dll │ │ │ ├── CSD.Util.Collections.pdb │ │ │ ├── CSD.Util.dll │ │ │ ├── CSD.Util.pdb │ │ │ ├── Sample.deps.json │ │ │ ├── Sample.dll │ │ │ ├── Sample.exe │ │ │ ├── Sample.pdb │ │ │ ├── Sample.runtimeconfig.dev.json │ │ │ ├── Sample.runtimeconfig.json │ │ │ └── ref │ │ │ └── Sample.dll │ ├── cars.csv │ ├── movies.txt │ ├── obj │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── Sample.AssemblyInfo.cs │ │ │ │ ├── Sample.AssemblyInfoInputs.cache │ │ │ │ ├── Sample.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Sample.assets.cache │ │ │ │ ├── Sample.csproj.AssemblyReference.cache │ │ │ │ ├── Sample.csproj.CopyComplete │ │ │ │ ├── Sample.csproj.CoreCompileInputs.cache │ │ │ │ ├── Sample.csproj.FileListAbsolute.txt │ │ │ │ ├── Sample.dll │ │ │ │ ├── Sample.genruntimeconfig.cache │ │ │ │ ├── Sample.pdb │ │ │ │ ├── apphost.exe │ │ │ │ └── ref │ │ │ │ └── Sample.dll │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── Sample.AssemblyInfo.cs │ │ │ │ ├── Sample.AssemblyInfoInputs.cache │ │ │ │ ├── Sample.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Sample.assets.cache │ │ │ │ ├── Sample.csproj.AssemblyReference.cache │ │ │ │ ├── Sample.csproj.CopyComplete │ │ │ │ ├── Sample.csproj.CoreCompileInputs.cache │ │ │ │ ├── Sample.csproj.FileListAbsolute.txt │ │ │ │ ├── Sample.dll │ │ │ │ ├── Sample.genruntimeconfig.cache │ │ │ │ ├── Sample.pdb │ │ │ │ ├── apphost.exe │ │ │ │ └── ref │ │ │ │ └── Sample.dll │ │ ├── Sample.csproj.nuget.dgspec.json │ │ ├── Sample.csproj.nuget.g.props │ │ ├── Sample.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ └── people.csv │ └── SampleSolution.sln ├── Javascript ├── Projects │ └── Nodejs │ │ ├── 001-RandomPasswordGenerator │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── FileSystem.iml │ │ │ ├── jsLibraryMappings.xml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── passwdgen.mjs │ │ └── passwdgenpromise.mjs │ │ ├── 002-CountDownTimer │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 002-CountDownTimer.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ └── app.mjs │ │ ├── 003-EventEmitterClass │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 003-EventEmitterClass.iml │ │ │ ├── jsLibraryMappings.xml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── app.mjs │ │ └── localdatetimeemitter.mjs │ │ ├── 004-CountDownTimerEventEmitter │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 002-CountDownTimer.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ └── app.mjs │ │ ├── 005-RandomNumberEmitter │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 004-RandomNumberEmitter.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ └── app.mjs │ │ ├── 006-HttpServerPlainText │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 005-HttpServer.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ └── app.mjs │ │ ├── 007-HttpServerJson │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 005-HttpServer.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── app.mjs │ │ └── messageinfo.mjs │ │ ├── 008-PeriodicDataGeneratorApp │ │ ├── PeriodicDataGenerator │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── 007-PeriodicDataGenerator.iml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ ├── SensorInfo.mjs │ │ │ └── periodicdatagen.mjs │ │ └── PeriodicDataReader │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 007-PeriodicDataGenerator.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ │ ├── SensorInfo.mjs │ │ │ ├── periodicdatagen.mjs │ │ │ └── periodicdatareader.mjs │ │ ├── 009-HttpServerJsonExpressMongo │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 005-HttpServer.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── app.mjs │ │ ├── crud.mjs │ │ ├── initService.mjs │ │ └── messageinfo.mjs │ │ ├── 010-RandomGenerator │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 005-HttpServer.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── app.mjs │ │ ├── initService.mjs │ │ └── messageinfo.mjs │ │ ├── 011-TCPUpperServer │ │ ├── Client │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── Client.iml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ └── app.mjs │ │ └── Server │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── Server.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ │ └── app.mjs │ │ ├── 012-TCPRandomTextGenerator │ │ ├── Client │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── Client.iml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ └── app.mjs │ │ └── Server │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── Server.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ │ └── app.mjs │ │ ├── 013-UDPPeriodicMessage │ │ ├── Receiver │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── Receiver.iml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ └── app.mjs │ │ └── Sender │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── Sender.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ │ └── app.mjs │ │ ├── 024-PanicServer │ │ ├── Client │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── Client.iml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ └── client.mjs │ │ └── Server │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── Server.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ │ └── server.mjs │ │ ├── 025-ServerEnterNetwork │ │ ├── Client │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── Client.iml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ └── client.mjs │ │ └── Server │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── Server.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ │ └── server.mjs │ │ ├── 026-PostalCodeSearchGeonames │ │ ├── PostalCodeSearchConsole │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── 026-PostalCodeSearchGeonames.iml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ └── app.mjs │ │ └── PostalCodeSearchService │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── PostalCodeSearchService.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ │ └── app.mjs │ │ ├── 028-PostgreSQlAccessApp │ │ ├── .env │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 028-PostgreSQlAccessApp.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ └── app.mjs │ │ └── 029-gRPC │ │ ├── 01-FirstApp │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 01-FirstApp.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── client.mjs │ │ ├── server.mjs │ │ └── todo.proto │ │ └── 02-ProductServiceApp │ │ └── Applications │ │ ├── .idea │ │ ├── .gitignore │ │ ├── Server.iml │ │ ├── modules.xml │ │ └── vcs.xml │ │ ├── client.mjs │ │ ├── product.proto │ │ ├── productproto.mjs │ │ ├── productservice.mjs │ │ └── server.mjs ├── SampleCodes │ ├── SampleJS │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── SampleJS.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── app.js │ │ └── app.mjs │ └── sample.js ├── UnitTests │ ├── 001-IsPrimeTestTape │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 001-IsPrimeTestTape.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── primes_info.txt │ │ ├── testIsPrime.mjs │ │ ├── testIsPrime_notOk.mjs │ │ └── testIsPrime_ok.mjs │ ├── 002-IsPrimeTestMocha │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── 001-IsPrimeTestTape.iml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── primes_info.txt │ │ └── test_ok.mjs │ └── 003-CreateRandomPointsTestTape │ │ ├── .idea │ │ ├── .gitignore │ │ ├── 002-CreateRandomPointsTest.iml │ │ ├── modules.xml │ │ └── vcs.xml │ │ └── throwstest.mjs └── csd-modules │ ├── .idea │ ├── .gitignore │ ├── SampleJS.iml │ ├── modules.xml │ └── vcs.xml │ ├── csdanalyticalcircle.mjs │ ├── csdarrayutil.mjs │ ├── csdcircle.mjs │ ├── csdcommandlineargsutil.mjs │ ├── csdcomplex.mjs │ ├── csdcountdowntimer.mjs │ ├── csddateutil.mjs │ ├── csderror.mjs │ ├── csderrorutil.mjs │ ├── csdhttputil.mjs │ ├── csdmongodbutil.mjs │ ├── csdnumberutil.mjs │ ├── csdpoint.mjs │ ├── csdrandom.mjs │ ├── csdrandomnumberemiitter.mjs │ ├── csdrandomnumberemitter.mjs │ ├── csdrandomutil.mjs │ ├── csdrestutil.mjs │ ├── csdstdioutil.js │ ├── csdstdioutil.mjs │ ├── csdstringutil.mjs │ ├── mumathutil.mjs │ └── personfactory.mjs └── SampleMiscServices └── PostalCodeServiceGeonames ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── org │ │ └── csystem │ │ └── application │ │ └── rest │ │ └── postalcode │ │ ├── App.java │ │ ├── configuration │ │ └── RestTemplateConfig.java │ │ ├── controller │ │ └── PostalCodeServiceGeonamesController.java │ │ ├── data │ │ ├── dal │ │ │ └── PostalCodeServiceHelper.java │ │ ├── entity │ │ │ ├── PostalCode.java │ │ │ └── PostalCodeInfo.java │ │ └── repository │ │ │ ├── IPostalCodeInfoRepository.java │ │ │ └── IPostalCodeRepository.java │ │ ├── dto │ │ ├── PostalCodeInfoDTO.java │ │ └── PostalCodesDTO.java │ │ ├── geonames │ │ └── json │ │ │ └── dto │ │ │ ├── PostalCodeGeoNames.java │ │ │ ├── PostalCodeInfoGeoNames.java │ │ │ └── Status.java │ │ ├── mapper │ │ └── IPostalCodeMapper.java │ │ └── service │ │ └── PostalCodeAppService.java └── resources │ └── application.properties └── test └── java └── org └── csystem └── application └── rest └── postalcode └── AppTests.java /Links.txt: -------------------------------------------------------------------------------- 1 | Link : https://www.dropbox.com/sh/35xt4m7by39vtmr/AAAyySopz3b1cGHKA-UO_-EJa?dl=0 2 | Github : https://github.com/oguzkaran/.NetCore-Javascript-Web-Programming 3 | 4 | İletişim Bilgileri: 5 | Oğuz Karan 6 | Email : oguzkaran@csystem.org 7 | Tel : 05325158012 8 | -------------------------------------------------------------------------------- /doc/Examples-CSharp-Basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/doc/Examples-CSharp-Basic.txt -------------------------------------------------------------------------------- /doc/Examples-CSharp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/doc/Examples-CSharp.txt -------------------------------------------------------------------------------- /doc/ebooks/ECMA-404_2nd_edition_december_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/doc/ebooks/ECMA-404_2nd_edition_december_2017.pdf -------------------------------------------------------------------------------- /doc/figures/GeneralMultilayerArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/doc/figures/GeneralMultilayerArchitecture.png -------------------------------------------------------------------------------- /doc/figures/MultiLayerArchitecture-Mehmet-Gunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/doc/figures/MultiLayerArchitecture-Mehmet-Gunes.png -------------------------------------------------------------------------------- /doc/figures/ikinci-dereceden-denklem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/doc/figures/ikinci-dereceden-denklem.jpg -------------------------------------------------------------------------------- /doc/notes/CSharp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/doc/notes/CSharp.pdf -------------------------------------------------------------------------------- /doc/notes/HTML5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/doc/notes/HTML5.docx -------------------------------------------------------------------------------- /doc/notes/curl.txt: -------------------------------------------------------------------------------- 1 | curl -d '{"Title": "Eczane", "Text": "Vitamin, Aspirin"}' -H "Content-Type: application/json" -X POST http://192.168.1.167:8080/api/todos/save 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /doc/notes/httpie.txt: -------------------------------------------------------------------------------- 1 | http POST :8080/devices name='hest' port="6767" date='2018-11-30' 2 | 3 | http localhost:8080/devices 4 | 5 | 6 | http POST http://localhost:8080/autosrest make='Honda' model='Civic' modelYear=2017 km=10000 rent=true 7 | -------------------------------------------------------------------------------- /doc/notes/scaffold.txt: -------------------------------------------------------------------------------- 1 | Scaffold-DbContext "Server=.;Database=DCJSWPA21_PostalCodeAppDb;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Data -force 2 | 3 | Install-Package Bricelam.EntityFrameworkCore.Pluralizer -IncludePrerelease -------------------------------------------------------------------------------- /homework/Dotnet/Homework-001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/homework/Dotnet/Homework-001.pdf -------------------------------------------------------------------------------- /homework/Dotnet/Homework-002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/homework/Dotnet/Homework-002.pdf -------------------------------------------------------------------------------- /homework/Javascript/Homework-JavaScript-002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/homework/Javascript/Homework-JavaScript-002.pdf -------------------------------------------------------------------------------- /homework/Javascript/Homework-JavaScript-003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/homework/Javascript/Homework-JavaScript-003.pdf -------------------------------------------------------------------------------- /homework/Javascript/Homework-JavaScript-004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/homework/Javascript/Homework-JavaScript-004.pdf -------------------------------------------------------------------------------- /homework/Javascript/Homework-Javascript-001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/homework/Javascript/Homework-Javascript-001.pdf -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/.vs/DataUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/.vs/DataUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/.vs/DataUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/.vs/DataUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/Repository/IEntity.cs: -------------------------------------------------------------------------------- 1 | namespace CSD.Util.Data.Repository 2 | { 3 | public interface IEntity 4 | { 5 | public ID Id { get; set; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/ref/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/ref/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bd98d00284db39f31da2ae850770696dafe79247 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a14d26fc06f737478cf7633e0de9f9ccf6e09574 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/ref/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/ref/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 62cdc03296439a227519628c2ee2822188732b74 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e9f5c1365896daaca999b0ab516687d2bc93dd92 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/ref/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/ref/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/ExceptionUtilLib.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net5.0 5 | CSD.Util.Error 6 | CSD.Util.Error 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/ref/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/ref/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 64d4e3764247232f515fa15d228da09384a14b29 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6258735cc56e45a734b551307434d6d9c2abdf5b 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bce68447b6806f11e41ae4bcb7ec79a6841ce2b4 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ref/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ref/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/CSD.Extensions.Net.Http.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/CSD.Extensions.Net.Http.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/ref/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/ref/CSD.Extensions.Net.Http.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/HttpClientExtensionLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e5b65ac8b3284b0c70690f29e4fc25160a406522 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/HttpClientExtensionLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6ccacef4b00142825baac93aaee93510fe5eff39 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/CSD.Extensions.Net.Http.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/CSD.Extensions.Net.Http.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fe49e8bb58d24f7bbaa897795e5dcf35416f0a16 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4594ff4e1bf3507b97e4bb69fd20f83c9eab24ae 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/ref/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/ref/CSD.Extensions.Net.Http.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/CSD.Extensions.Net.Http.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/CSD.Extensions.Net.Http.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/HttpClientExtensionLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fe49e8bb58d24f7bbaa897795e5dcf35416f0a16 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/HttpClientExtensionLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 74b0985b339c411ee1fc8564ec66b054b6987050 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/.vs/MapperUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/.vs/MapperUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/.vs/MapperUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/.vs/MapperUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/IMapper.cs: -------------------------------------------------------------------------------- 1 | namespace CSD.Util.Mappers 2 | { 3 | public interface IMapper 4 | { 5 | D Map(S source); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/Mapster/Mapper.cs: -------------------------------------------------------------------------------- 1 | using Mapster; 2 | 3 | namespace CSD.Util.Mappers.Mapster 4 | { 5 | public class Mapper : IMapper 6 | { 7 | public D Map(S source) 8 | { 9 | return source.Adapt(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/ref/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/ref/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 18be97ec6e85f9d1cfb0348d05bab9e330ec31db 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 959e76555e1c12569262c590ffa82c3866af65c2 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2a9e20b4746317f5c5e6174604f659349b15bdc0 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/ref/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/ref/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/.vs/TaskUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/.vs/TaskUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/.vs/TaskUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/.vs/TaskUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/TaskUtilLib.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net5.0 5 | CSD.Util.TPL 6 | CSD.Util 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0fda6dfab65f1b620427326dffe4eaa2e582403c 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4ea159314cb32962b927491bd7e5627135c45aaa 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | abf1a4cf5d42a29319f4312284b916863531c348 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 600d45b1f72da77c543360acca25fb3238bc5598 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/obj/Debug/net5.0/TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d5a37e94c5631a1b3e49998d5fda75aa7c98d303 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/obj/Debug/net5.0/TodoApplicationRestApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/.vs/001-TodoApplicationRestApp/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- 1 | !!tItseT -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d5a37e94c5631a1b3e49998d5fda75aa7c98d303 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/TodoApplicationRestApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Release/net5.0/001-TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 55eba041dacbdf0b4d06b81ac1ffd6d54c6c60a6 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/.vs/001-TodoApplicationRestApp/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- 1 | !!tItseT -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d5a37e94c5631a1b3e49998d5fda75aa7c98d303 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/TodoApplicationRestApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Release/net5.0/001-TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 55eba041dacbdf0b4d06b81ac1ffd6d54c6c60a6 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/.vs/MovieRestServiceApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/.vs/MovieRestServiceApplication/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/Data/DTO/DirectorWithIdViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CSD.MovieRestServiceApplication.Data.DTO 4 | { 5 | public partial class DirectorWithIdViewModel : DirectorViewModel 6 | { 7 | public int Id { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/Data/Entities/Parts/Director.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CSD.MovieRestServiceApplication.Data.Entities 4 | { 5 | public partial class Director 6 | { 7 | public double Age => (DateTime.Today - BirthDate).TotalDays / 365; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.Error.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.Error.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.Mappers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Mapster.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Mapster.Core.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Mapster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Mapster.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/MovieRestServiceApplication.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6c1d973c9cc4817f294a46d3df8115a1603008b9 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/MovieRestServiceApplication.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 2082540ad454c14a0a88beda819e5622fca7cc3e 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/MovieRestServiceApplication.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4ef0ad4c8bc910f70bf5d8e57a68f22710f80155 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/MovieRestServiceApplication.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 0d37f14e396d0c67fc349fe5ab564f34734f539c 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/staticwebassets/CSD.MovieRestServiceApplication.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6efefbace1bafaab5616b3f0e8985359045640cb 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/Entities.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/WikiSearchEntitiesLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a02a587d5cf44faf2c69be8c1b4a1c94b0b0568a 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/WikiSearchEntitiesLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchAppDALLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchAppGeonamesLib/Geonames/Global.cs: -------------------------------------------------------------------------------- 1 | namespace CSD.WikiSearchApp.Geonames 2 | { 3 | static class Global 4 | { 5 | public const string WikiUrlTemplate = "http://api.geonames.org/wikipediaSearchJSON?q={0}&maxRows={1}&username=csystem"; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchAppGeonamesLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchAppRepositoryLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchAppServiceLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchDALTestLib/bin/Debug/net5.0/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 1469236917 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchDALTestLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchGeoNUnitTest/bin/Debug/net5.0/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 60025846 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchGeoNUnitTest/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceGeoNames/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceGeoNames/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceGeoNames/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceGeoNames/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceGeoNames/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceTestLib/bin/Debug/net5.0/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 1412294118 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceTestLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/.vs/001-TodoApplicationRestApp/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- 1 | !!tItseT -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/001-TodoApplicationRestApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/001-TodoApplicationRestApp.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/001-TodoApplicationRestApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/001-TodoApplicationRestApp.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/001-TodoApplicationRestApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/001-TodoApplicationRestApp.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/AutoMapper.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.Error.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.Error.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.Mappers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Mapster.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Mapster.Core.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Mapster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Mapster.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c6c07c6c32d37cb8d92d115509bd9ee7abdac575 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 13f00f2b19e58b5c796b467731826112c8d14b94 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d99f1d4f7ec23392e7aa03bc263d28df26be0083 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7c0761c9700475e637beb144c2f7d770a8a1ff79 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d5a37e94c5631a1b3e49998d5fda75aa7c98d303 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/TodoApplicationRestApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/staticwebassets/001-TodoApplicationRestApp.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Release/net5.0/001-TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 55eba041dacbdf0b4d06b81ac1ffd6d54c6c60a6 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/v17/.futdcache.v1 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/v17/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/EntitiesLib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/obj/Debug/net6.0/EntitiesLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6ea9592cf86ecd465e090132500182bdb3651890 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/obj/Debug/net6.0/EntitiesLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/obj/Debug/net6.0/EntitiesLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/obj/EntitiesLib.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/WikiSearchServiceApp/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/WikiSearchServiceApp/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/WikiSearchServiceApp/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/WikiSearchServiceApp/obj/Debug/net6.0/WikiSearchServiceApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7b210529234839e002c0665ee14d861850ca736b 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/TestStore/0/001.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/TestStore/0/001.testlog -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- 1 | { 2 | "ExpandedNodes": [ 3 | "", 4 | "\\CSDUtilLib", 5 | "\\Sample" 6 | ], 7 | "SelectedNode": "\\CSDUtilLib", 8 | "PreviewInSolutionExplorer": false 9 | } -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/.vs/slnx.sqlite -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/CSD.Util.Collections.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ddda140413f64be9d913cb4ba416a6272e9e79d3 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a1d8e159e58abb21c22bd113c58e7c467e94353b 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSD.Util.Collections.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c5eebfc85deab2a6ad0a8a90a70aa92d00c93dd5 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 51093fdfd5c9094b71e5f7fa215e16c6bf16be24 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/CSDUtilLib.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net5.0 5 | CSD.Util 6 | CSD.Util 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Debug/net5.0/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Debug/net5.0/CSD.Util.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Debug/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Debug/net5.0/ref/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Debug/net5.0/ref/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/CSD.Util.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/ref/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/ref/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSD.Util.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 241113385baa7283deca1006ed7af74710b1cc1a 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bbc65371d7a62760bf8aa98333c50b9ca791cac3 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/ref/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/ref/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSD.Util.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSDUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 556ee18f5d7aba2fa0b6ed6f5a159777b63f9415 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSDUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSDUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSDUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSDUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 57ce00e479895020fc59f28b3c22abbd4af3d5cf 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/ref/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/ref/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/bin/Debug/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/bin/Debug/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ddda140413f64be9d913cb4ba416a6272e9e79d3 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0c4ccbcee6c4b9de127adec0f17d2e9b072dc438 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Release/net5.0/CollectionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c5eebfc85deab2a6ad0a8a90a70aa92d00c93dd5 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Release/net5.0/CollectionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Release/net5.0/CollectionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/GeneralTestDLL.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net5.0 5 | CSD.GeneralTest 6 | CSD.Test.Unit 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/CSD.GeneralTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/ref/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/ref/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/CSD.GeneralTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/ref/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/ref/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/CSD.GeneralTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 76b7918d21790f6cd9538ce8e246671e38ee4826 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bcda4da090cf4825a7bf608f6aa4305a0520dc00 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/ref/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/ref/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/CSD.GeneralTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ca48b7b93d68c6a842a25d436a1bfdddee7f5dbe 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a433cd7eb40f800b0725e504eb68f8f31d8a679b 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/ref/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/ref/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/MathUtilLib.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net5.0 5 | CSD.Util.Math 6 | CSD.Util.Mathematics 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/CSD.Util.Math.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/CSD.Util.Math.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/CSD.Util.Math.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/ref/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/ref/CSD.Util.Math.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/CSD.Util.Math.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/CSD.Util.Math.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/CSD.Util.Math.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c22015d8156bf147787889dd471f8a02da5fb109 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c43bd672f6ffd136999c3e4e64c3f44a092150b0 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/ref/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/ref/CSD.Util.Math.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/CSD.Util.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NUnit3.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NUnit3.TestAdapter.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NUnit3.TestAdapter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NUnit3.TestAdapter.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NumberUtilTestLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NumberUtilTestLib.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NumberUtilTestLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NumberUtilTestLib.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NumberUtilTestLib.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/isNotPrime_test.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 21 3 | -1 4 | 56 5 | 0 6 | 1 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/isPrime_test.txt: -------------------------------------------------------------------------------- 1 | 4935060337471977161 2 | 1000003 3 | 2 4 | 19 5 | 17 6 | 97 7 | 71 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/isPrime_test_mixed.txt: -------------------------------------------------------------------------------- 1 | 4935060337471977161 true 2 | 100003 true 3 | 2 true 4 | 1 false 5 | 100002 false 6 | 19 true -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.api.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.core.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.framework.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 107639327 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/ref/NumberUtilTestLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/ref/NumberUtilTestLib.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testcentric.engine.metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testcentric.engine.metadata.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testhost.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testhost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testhost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1809dbf546ba15329241607e2686337b2d0dd06c 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.csproj.CopyComplete -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 552665ea2ac0556470561bd0f9eb6e4aac763eb9 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 5d30da9b9a8634f4463f8f1d0484e39eb3bf82b1 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/ref/NumberUtilTestLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/ref/NumberUtilTestLib.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NumberUtilUnitTest 4 | { 5 | class Program 6 | { 7 | public static void Main(string[] args) 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/CSD.Util.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NUnit3.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NUnit3.TestAdapter.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NUnit3.TestAdapter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NUnit3.TestAdapter.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NumberUtilUnitTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NumberUtilUnitTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NumberUtilUnitTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NumberUtilUnitTest.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NumberUtilUnitTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NumberUtilUnitTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NumberUtilUnitTest.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.api.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.core.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.framework.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/ref/NumberUtilUnitTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/ref/NumberUtilUnitTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/testcentric.engine.metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/testcentric.engine.metadata.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4ab1c9d80e691f2dc7fbc4b7da3badccf9613c07 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.csproj.CopyComplete -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6b75946d6f268f14f0a932667fa7775ebf558fdb 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 1f1e147314f6871dc3960ffc9ad76d3f83b94545 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/ref/NumberUtilUnitTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/ref/NumberUtilUnitTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/.vs/Sample/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/.vs/Sample/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/.vs/Sample/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/.vs/Sample/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/10: -------------------------------------------------------------------------------- 1 | 45 89 79 29 25 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/9: -------------------------------------------------------------------------------- 1 | 50 42 91 75 43 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.GeneralTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Collections.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Math.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Math.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Math.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Sample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Sample.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Sample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Sample.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Sample.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/cars-ordered-traffiregdate-asc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/cars-ordered-traffiregdate-asc.txt -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/ref/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/ref/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.GeneralTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.Collections.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/Sample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/Sample.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/Sample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/Sample.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/Sample.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/ref/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/ref/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a54db0f97c3f8af7bd60704ab6556aa2b49c26db 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.csproj.CopyComplete -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8613f6c194fcbbd184cc6bd120acc4277b8cd6c5 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 51d6c55bdb59bae937669f2baf875e3862603a01 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/ref/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/ref/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 79c0c5d6eb9bd8ad247c36dbaf2f7eac67be2a1c 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.csproj.CopyComplete -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a9bc4c8acc8642c50a6ff4a4d5360504b6281e33 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f01914b7afb6992d93c514a814624a320c5dab24 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/ref/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/ref/Sample.dll -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/001-RandomPasswordGenerator/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/001-RandomPasswordGenerator/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/001-RandomPasswordGenerator/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/002-CountDownTimer/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/002-CountDownTimer/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/003-EventEmitterClass/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/003-EventEmitterClass/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/003-EventEmitterClass/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/004-CountDownTimerEventEmitter/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/004-CountDownTimerEventEmitter/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/005-RandomNumberEmitter/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/005-RandomNumberEmitter/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/006-HttpServerPlainText/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/006-HttpServerPlainText/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/007-HttpServerJson/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/007-HttpServerJson/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/007-HttpServerJson/messageinfo.mjs: -------------------------------------------------------------------------------- 1 | export class MessageInfo { 2 | constructor(message) 3 | { 4 | this.message = message 5 | } 6 | 7 | toString() 8 | { 9 | return JSON.stringify(this) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/008-PeriodicDataGeneratorApp/PeriodicDataGenerator/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/008-PeriodicDataGeneratorApp/PeriodicDataReader/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/009-HttpServerJsonExpressMongo/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/009-HttpServerJsonExpressMongo/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/009-HttpServerJsonExpressMongo/app.mjs: -------------------------------------------------------------------------------- 1 | import {writeErrLine} from '../../../csd-modules/csdstdioutil.mjs' 2 | import {initService} from './initService.mjs'; 3 | 4 | 5 | process.on("uncaughtException", err => writeErrLine(err)) 6 | 7 | 8 | function main() 9 | { 10 | initService() 11 | } 12 | 13 | main() 14 | 15 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/009-HttpServerJsonExpressMongo/messageinfo.mjs: -------------------------------------------------------------------------------- 1 | export class MessageInfo { 2 | constructor(message) 3 | { 4 | this.message = message 5 | } 6 | 7 | toString() 8 | { 9 | return JSON.stringify(this) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/010-RandomGenerator/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/010-RandomGenerator/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/010-RandomGenerator/app.mjs: -------------------------------------------------------------------------------- 1 | import {writeErrLine} from '../../../csd-modules/csdstdioutil.mjs' 2 | import {initService} from './initService.mjs'; 3 | 4 | process.on("uncaughtException", err => writeErrLine(err)) 5 | 6 | function main() 7 | { 8 | initService() 9 | } 10 | 11 | main() 12 | 13 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/010-RandomGenerator/messageinfo.mjs: -------------------------------------------------------------------------------- 1 | export class MessageInfo { 2 | constructor(message) 3 | { 4 | this.message = message 5 | } 6 | 7 | toString() 8 | { 9 | return JSON.stringify(this) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/011-TCPUpperServer/Client/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/011-TCPUpperServer/Client/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/011-TCPUpperServer/Server/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/011-TCPUpperServer/Server/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/012-TCPRandomTextGenerator/Client/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/012-TCPRandomTextGenerator/Client/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/012-TCPRandomTextGenerator/Server/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/012-TCPRandomTextGenerator/Server/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/013-UDPPeriodicMessage/Receiver/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/013-UDPPeriodicMessage/Receiver/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/013-UDPPeriodicMessage/Sender/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/013-UDPPeriodicMessage/Sender/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/024-PanicServer/Client/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/024-PanicServer/Client/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/024-PanicServer/Client/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/024-PanicServer/Server/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/024-PanicServer/Server/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/024-PanicServer/Server/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/025-ServerEnterNetwork/Client/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/025-ServerEnterNetwork/Client/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/025-ServerEnterNetwork/Server/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/025-ServerEnterNetwork/Server/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/026-PostalCodeSearchGeonames/PostalCodeSearchConsole/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/026-PostalCodeSearchGeonames/PostalCodeSearchService/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/026-PostalCodeSearchGeonames/PostalCodeSearchService/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/028-PostgreSQlAccessApp/.env: -------------------------------------------------------------------------------- 1 | PG_HOST=database-1.cnkzasgnfzzy.us-east-2.rds.amazonaws.com 2 | PG_PORT=5432 3 | PG_USER=postgres 4 | PG_PASSWORD=Csystem1993 5 | PG_DATABASE=DCJSWPA21_tasksdb 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/028-PostgreSQlAccessApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/028-PostgreSQlAccessApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/029-gRPC/01-FirstApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/029-gRPC/01-FirstApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/029-gRPC/02-ProductServiceApp/Applications/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/029-gRPC/02-ProductServiceApp/Applications/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/SampleCodes/SampleJS/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/SampleCodes/SampleJS/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Javascript/SampleCodes/SampleJS/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Javascript/SampleCodes/SampleJS/app.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Javascript/SampleCodes/SampleJS/app.mjs: -------------------------------------------------------------------------------- 1 | const isLeap = year => year % 4 === 0 && year % 100 !== 0 || year % 400 === 0 2 | 3 | 4 | process.stdout.write(`${typeof isLeap}\n`) 5 | 6 | for (let y = 2000; y <= 2104; ++y) 7 | if (isLeap(y)) 8 | process.stdout.write(`${y} `) 9 | 10 | -------------------------------------------------------------------------------- /src/Javascript/SampleCodes/sample.js: -------------------------------------------------------------------------------- 1 | console.log('Hello, World') -------------------------------------------------------------------------------- /src/Javascript/UnitTests/001-IsPrimeTestTape/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/UnitTests/001-IsPrimeTestTape/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/UnitTests/001-IsPrimeTestTape/primes_info.txt: -------------------------------------------------------------------------------- 1 | 19 true 2 | 22 false 3 | 2 true 4 | 100003 true 5 | 97 true 6 | -1 false 7 | 1 false 8 | 0 false 9 | -------------------------------------------------------------------------------- /src/Javascript/UnitTests/002-IsPrimeTestMocha/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/UnitTests/002-IsPrimeTestMocha/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/UnitTests/002-IsPrimeTestMocha/primes_info.txt: -------------------------------------------------------------------------------- 1 | 19 true 2 | 22 false 3 | 2 true 4 | 100003 true 5 | 97 true 6 | -1 false 7 | 1 false 8 | 0 false 9 | -------------------------------------------------------------------------------- /src/Javascript/UnitTests/003-CreateRandomPointsTestTape/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/UnitTests/003-CreateRandomPointsTestTape/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/csd-modules/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/Javascript/csd-modules/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Javascript/csd-modules/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/csd-modules/csdcomplex.mjs: -------------------------------------------------------------------------------- 1 | const Complex = function (real, imag) { 2 | this.real = real 3 | this.imag = imag 4 | } 5 | 6 | const createComplex = (real, imag) => new Complex(real === undefined ? 0 : real, imag === undefined ? 0 : imag) 7 | 8 | export {Complex, createComplex} 9 | -------------------------------------------------------------------------------- /src/Javascript/csd-modules/csdhttputil.mjs: -------------------------------------------------------------------------------- 1 | function remoteAddress(req) 2 | { 3 | const remoteAddress = req.connection.remoteAddress 4 | 5 | return remoteAddress.substring(remoteAddress.lastIndexOf(":") + 1) 6 | } 7 | 8 | export {remoteAddress} 9 | -------------------------------------------------------------------------------- /src/Javascript/csd-modules/csdrandomnumberemiitter.mjs: -------------------------------------------------------------------------------- 1 | class Csdrandomnumber 2 | -------------------------------------------------------------------------------- /src/Javascript/csd-modules/personfactory.mjs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/SampleMiscServices/PostalCodeServiceGeonames/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/a23db6c49155178932fb032225248909906e74b4/src/SampleMiscServices/PostalCodeServiceGeonames/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleMiscServices/PostalCodeServiceGeonames/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.1/apache-maven-3.8.1-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /src/SampleMiscServices/PostalCodeServiceGeonames/src/main/java/org/csystem/application/rest/postalcode/geonames/json/dto/Status.java: -------------------------------------------------------------------------------- 1 | package org.csystem.application.rest.postalcode.geonames.json.dto; 2 | 3 | public class Status { 4 | public String message; 5 | public int value; 6 | } --------------------------------------------------------------------------------