├── src ├── Javascript │ ├── SampleCodes │ │ ├── SampleJS │ │ │ ├── app.js │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── vcs.xml │ │ │ └── app.mjs │ │ └── sample.js │ ├── csd-modules │ │ ├── personfactory.mjs │ │ ├── csdrandomnumberemiitter.mjs │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── csdhttputil.mjs │ │ └── csdcomplex.mjs │ ├── UnitTests │ │ ├── 001-IsPrimeTestTape │ │ │ ├── primes_info.txt │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── vcs.xml │ │ ├── 002-IsPrimeTestMocha │ │ │ ├── primes_info.txt │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── vcs.xml │ │ └── 003-CreateRandomPointsTestTape │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ └── Projects │ │ └── Nodejs │ │ ├── 002-CountDownTimer │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 003-EventEmitterClass │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── vcs.xml │ │ │ └── jsLibraryMappings.xml │ │ ├── 007-HttpServerJson │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ └── messageinfo.mjs │ │ ├── 010-RandomGenerator │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ └── messageinfo.mjs │ │ ├── 024-PanicServer │ │ ├── Client │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── vcs.xml │ │ └── Server │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 029-gRPC │ │ ├── 01-FirstApp │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── vcs.xml │ │ └── 02-ProductServiceApp │ │ │ └── Applications │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 001-RandomPasswordGenerator │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── vcs.xml │ │ │ └── jsLibraryMappings.xml │ │ ├── 005-RandomNumberEmitter │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 006-HttpServerPlainText │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 011-TCPUpperServer │ │ ├── Client │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── vcs.xml │ │ └── Server │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 028-PostgreSQlAccessApp │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ └── .env │ │ ├── 004-CountDownTimerEventEmitter │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 009-HttpServerJsonExpressMongo │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ └── messageinfo.mjs │ │ ├── 013-UDPPeriodicMessage │ │ ├── Receiver │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── vcs.xml │ │ └── Sender │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 025-ServerEnterNetwork │ │ ├── Client │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── vcs.xml │ │ └── Server │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 012-TCPRandomTextGenerator │ │ ├── Client │ │ │ └── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── vcs.xml │ │ └── Server │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ └── vcs.xml │ │ ├── 008-PeriodicDataGeneratorApp │ │ ├── PeriodicDataReader │ │ │ └── .idea │ │ │ │ └── .gitignore │ │ └── PeriodicDataGenerator │ │ │ └── .idea │ │ │ └── .gitignore │ │ └── 026-PostalCodeSearchGeonames │ │ ├── PostalCodeSearchConsole │ │ └── .idea │ │ │ └── .gitignore │ │ └── PostalCodeSearchService │ │ └── .idea │ │ ├── .gitignore │ │ └── vcs.xml ├── DotnetCore │ ├── Projects │ │ ├── SampleSolution │ │ │ ├── Sample │ │ │ │ ├── bin │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ │ ├── 9 │ │ │ │ │ │ │ ├── 10 │ │ │ │ │ │ │ ├── Sample.dll │ │ │ │ │ │ │ ├── Sample.exe │ │ │ │ │ │ │ ├── Sample.pdb │ │ │ │ │ │ │ ├── CSD.Util.dll │ │ │ │ │ │ │ ├── CSD.Util.pdb │ │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── Sample.dll │ │ │ │ │ │ │ ├── CSD.Util.Math.dll │ │ │ │ │ │ │ ├── CSD.Util.Math.pdb │ │ │ │ │ │ │ ├── CSD.GeneralTest.dll │ │ │ │ │ │ │ ├── CSD.GeneralTest.pdb │ │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ │ │ │ ├── Sample.runtimeconfig.json │ │ │ │ │ │ │ └── cars-ordered-traffiregdate-asc.txt │ │ │ │ │ └── Release │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── Sample.dll │ │ │ │ │ │ ├── Sample.exe │ │ │ │ │ │ ├── Sample.pdb │ │ │ │ │ │ ├── CSD.Util.dll │ │ │ │ │ │ ├── CSD.Util.pdb │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── Sample.dll │ │ │ │ │ │ ├── CSD.GeneralTest.dll │ │ │ │ │ │ ├── CSD.GeneralTest.pdb │ │ │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ │ │ └── Sample.runtimeconfig.json │ │ │ │ ├── obj │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ │ ├── Sample.csproj.CopyComplete │ │ │ │ │ │ │ ├── Sample.genruntimeconfig.cache │ │ │ │ │ │ │ ├── Sample.AssemblyInfoInputs.cache │ │ │ │ │ │ │ ├── Sample.csproj.CoreCompileInputs.cache │ │ │ │ │ │ │ ├── Sample.dll │ │ │ │ │ │ │ ├── Sample.pdb │ │ │ │ │ │ │ ├── apphost.exe │ │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── Sample.dll │ │ │ │ │ │ │ ├── Sample.assets.cache │ │ │ │ │ │ │ ├── Sample.csproj.AssemblyReference.cache │ │ │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ └── Release │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── Sample.csproj.CopyComplete │ │ │ │ │ │ ├── Sample.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── Sample.genruntimeconfig.cache │ │ │ │ │ │ ├── Sample.csproj.CoreCompileInputs.cache │ │ │ │ │ │ ├── Sample.dll │ │ │ │ │ │ ├── Sample.pdb │ │ │ │ │ │ ├── apphost.exe │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── Sample.dll │ │ │ │ │ │ ├── Sample.assets.cache │ │ │ │ │ │ ├── Sample.csproj.AssemblyReference.cache │ │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ └── .vs │ │ │ │ │ └── Sample │ │ │ │ │ ├── v16 │ │ │ │ │ └── .suo │ │ │ │ │ └── DesignTimeBuild │ │ │ │ │ └── .dtbcache.v2 │ │ │ ├── .vs │ │ │ │ ├── ProjectSettings.json │ │ │ │ ├── slnx.sqlite │ │ │ │ ├── SampleSolution │ │ │ │ │ ├── v16 │ │ │ │ │ │ ├── .suo │ │ │ │ │ │ └── TestStore │ │ │ │ │ │ │ └── 0 │ │ │ │ │ │ │ ├── 001.testlog │ │ │ │ │ │ │ └── testlog.manifest │ │ │ │ │ └── DesignTimeBuild │ │ │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── VSWorkspaceState.json │ │ │ ├── NumberUtilTestLib │ │ │ │ ├── bin │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── nunit_random_seed.tmp │ │ │ │ │ │ ├── isNotPrime_test.txt │ │ │ │ │ │ ├── isPrime_test.txt │ │ │ │ │ │ ├── isPrime_test_mixed.txt │ │ │ │ │ │ ├── CSD.Util.dll │ │ │ │ │ │ ├── CSD.Util.pdb │ │ │ │ │ │ ├── testhost.dll │ │ │ │ │ │ ├── testhost.exe │ │ │ │ │ │ ├── nunit.engine.dll │ │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ │ ├── nunit.framework.dll │ │ │ │ │ │ ├── NUnit3.TestAdapter.dll │ │ │ │ │ │ ├── NUnit3.TestAdapter.pdb │ │ │ │ │ │ ├── NuGet.Frameworks.dll │ │ │ │ │ │ ├── NumberUtilTestLib.dll │ │ │ │ │ │ ├── NumberUtilTestLib.pdb │ │ │ │ │ │ ├── nunit.engine.api.dll │ │ │ │ │ │ ├── nunit.engine.core.dll │ │ │ │ │ │ ├── NumberUtilTestLib.runtimeconfig.json │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── NumberUtilTestLib.dll │ │ │ │ │ │ ├── testcentric.engine.metadata.dll │ │ │ │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ │ │ │ ├── cs │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ │ │ ├── de │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ │ │ ├── es │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ │ │ ├── fr │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ │ │ ├── it │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ │ │ ├── ja │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ │ │ ├── ko │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ │ │ ├── pl │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ │ │ ├── ru │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ │ │ └── tr │ │ │ │ │ │ └── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ │ └── obj │ │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── NumberUtilTestLib.csproj.CopyComplete │ │ │ │ │ ├── NumberUtilTestLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── NumberUtilTestLib.genruntimeconfig.cache │ │ │ │ │ ├── NumberUtilTestLib.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── NumberUtilTestLib.dll │ │ │ │ │ ├── NumberUtilTestLib.pdb │ │ │ │ │ ├── ref │ │ │ │ │ └── NumberUtilTestLib.dll │ │ │ │ │ ├── NumberUtilTestLib.assets.cache │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ └── NumberUtilTestLib.csproj.AssemblyReference.cache │ │ │ ├── NumberUtilUnitTest │ │ │ │ ├── obj │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── NumberUtilUnitTest.csproj.CopyComplete │ │ │ │ │ │ ├── NumberUtilUnitTest.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── NumberUtilUnitTest.genruntimeconfig.cache │ │ │ │ │ │ ├── NumberUtilUnitTest.csproj.CoreCompileInputs.cache │ │ │ │ │ │ ├── apphost.exe │ │ │ │ │ │ ├── NumberUtilUnitTest.dll │ │ │ │ │ │ ├── NumberUtilUnitTest.pdb │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── NumberUtilUnitTest.dll │ │ │ │ │ │ ├── NumberUtilUnitTest.assets.cache │ │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ │ └── NumberUtilUnitTest.csproj.AssemblyReference.cache │ │ │ │ ├── bin │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── CSD.Util.dll │ │ │ │ │ │ ├── CSD.Util.pdb │ │ │ │ │ │ ├── nunit.engine.dll │ │ │ │ │ │ ├── nunit.engine.api.dll │ │ │ │ │ │ ├── nunit.engine.core.dll │ │ │ │ │ │ ├── nunit.framework.dll │ │ │ │ │ │ ├── NUnit3.TestAdapter.dll │ │ │ │ │ │ ├── NUnit3.TestAdapter.pdb │ │ │ │ │ │ ├── NumberUtilUnitTest.dll │ │ │ │ │ │ ├── NumberUtilUnitTest.exe │ │ │ │ │ │ ├── NumberUtilUnitTest.pdb │ │ │ │ │ │ ├── NumberUtilUnitTest.runtimeconfig.json │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── NumberUtilUnitTest.dll │ │ │ │ │ │ └── testcentric.engine.metadata.dll │ │ │ │ └── Program.cs │ │ │ ├── CSDUtilLib │ │ │ │ ├── obj │ │ │ │ │ ├── Release │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ │ ├── CSDUtilLib.csproj.AssemblyReference.cache │ │ │ │ │ │ │ ├── CSDUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ │ │ ├── CSDUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ │ │ │ ├── CSD.Util.dll │ │ │ │ │ │ │ ├── CSD.Util.pdb │ │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── CSD.Util.dll │ │ │ │ │ │ │ ├── CSDUtilLib.assets.cache │ │ │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── CSDUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── CSDUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ │ │ ├── CSD.Util.dll │ │ │ │ │ │ ├── CSD.Util.pdb │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── CSD.Util.dll │ │ │ │ │ │ ├── CSDUtilLib.assets.cache │ │ │ │ │ │ ├── CSDUtilLib.csproj.AssemblyReference.cache │ │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── bin │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ │ ├── CSD.Util.dll │ │ │ │ │ │ │ ├── CSD.Util.pdb │ │ │ │ │ │ │ └── ref │ │ │ │ │ │ │ └── CSD.Util.dll │ │ │ │ │ └── Release │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── CSD.Util.dll │ │ │ │ │ │ ├── CSD.Util.pdb │ │ │ │ │ │ └── ref │ │ │ │ │ │ └── CSD.Util.dll │ │ │ │ └── CSDUtilLib.csproj │ │ │ ├── CSDCollectionUtilLib │ │ │ │ ├── obj │ │ │ │ │ ├── Release │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ │ ├── CSDCollectionUtilLib.csproj.AssemblyReference.cache │ │ │ │ │ │ │ ├── CSDCollectionUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ │ │ ├── CSDCollectionUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── CSD.Util.Collections.dll │ │ │ │ │ │ │ ├── CSDCollectionUtilLib.assets.cache │ │ │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── CSDCollectionUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── CSDCollectionUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── CSD.Util.Collections.dll │ │ │ │ │ │ ├── CSDCollectionUtilLib.assets.cache │ │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ │ └── CSDCollectionUtilLib.csproj.AssemblyReference.cache │ │ │ │ └── bin │ │ │ │ │ ├── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ │ │ └── ref │ │ │ │ │ │ └── CSD.Util.Collections.dll │ │ │ │ │ └── Release │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ │ └── ref │ │ │ │ │ └── CSD.Util.Collections.dll │ │ │ ├── MathUtilLib │ │ │ │ ├── obj │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── MathUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── MathUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ │ │ ├── CSD.Util.Math.dll │ │ │ │ │ │ ├── CSD.Util.Math.pdb │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── CSD.Util.Math.dll │ │ │ │ │ │ ├── MathUtilLib.assets.cache │ │ │ │ │ │ ├── MathUtilLib.csproj.AssemblyReference.cache │ │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ └── bin │ │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── CSD.Util.Math.dll │ │ │ │ │ ├── CSD.Util.Math.pdb │ │ │ │ │ └── ref │ │ │ │ │ └── CSD.Util.Math.dll │ │ │ ├── GeneralTestDLL │ │ │ │ ├── obj │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ │ ├── GeneralTestDLL.AssemblyInfoInputs.cache │ │ │ │ │ │ │ ├── GeneralTestDLL.csproj.CoreCompileInputs.cache │ │ │ │ │ │ │ ├── CSD.GeneralTest.dll │ │ │ │ │ │ │ ├── CSD.GeneralTest.pdb │ │ │ │ │ │ │ ├── ref │ │ │ │ │ │ │ └── CSD.GeneralTest.dll │ │ │ │ │ │ │ ├── GeneralTestDLL.assets.cache │ │ │ │ │ │ │ ├── GeneralTestDLL.csproj.AssemblyReference.cache │ │ │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ └── Release │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── GeneralTestDLL.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── GeneralTestDLL.csproj.CoreCompileInputs.cache │ │ │ │ │ │ ├── CSD.GeneralTest.dll │ │ │ │ │ │ ├── CSD.GeneralTest.pdb │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── CSD.GeneralTest.dll │ │ │ │ │ │ ├── GeneralTestDLL.assets.cache │ │ │ │ │ │ ├── GeneralTestDLL.csproj.AssemblyReference.cache │ │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ └── bin │ │ │ │ │ ├── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── CSD.GeneralTest.dll │ │ │ │ │ │ ├── CSD.GeneralTest.pdb │ │ │ │ │ │ └── ref │ │ │ │ │ │ └── CSD.GeneralTest.dll │ │ │ │ │ └── Release │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── CSD.GeneralTest.dll │ │ │ │ │ ├── CSD.GeneralTest.pdb │ │ │ │ │ └── ref │ │ │ │ │ └── CSD.GeneralTest.dll │ │ │ └── CollectionUtilLib │ │ │ │ ├── obj │ │ │ │ ├── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── CollectionUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── CollectionUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ │ │ ├── ref │ │ │ │ │ │ └── CSD.Util.Collections.dll │ │ │ │ │ │ ├── CollectionUtilLib.assets.cache │ │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ │ └── CollectionUtilLib.csproj.AssemblyReference.cache │ │ │ │ └── Release │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── CollectionUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── CollectionUtilLib.assets.cache │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ └── bin │ │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.Collections.dll │ │ │ │ ├── CSD.Util.Collections.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Collections.dll │ │ └── ASPDotnet │ │ │ └── WebAPI │ │ │ ├── WikiSearchGeonames │ │ │ ├── EntitiesLib │ │ │ │ └── obj │ │ │ │ │ ├── Debug │ │ │ │ │ └── net6.0 │ │ │ │ │ │ ├── EntitiesLib.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── EntitiesLib.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── EntitiesLib.assets.cache │ │ │ │ │ │ └── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ └── EntitiesLib.csproj.nuget.g.targets │ │ │ ├── WikiSearchServiceApp │ │ │ │ ├── obj │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net6.0 │ │ │ │ │ │ ├── WikiSearchServiceApp.csproj.FileListAbsolute.txt │ │ │ │ │ │ └── WikiSearchServiceApp.AssemblyInfoInputs.cache │ │ │ │ ├── appsettings.Development.json │ │ │ │ └── appsettings.json │ │ │ └── .vs │ │ │ │ └── WikiSearchGeonames │ │ │ │ ├── v17 │ │ │ │ ├── .suo │ │ │ │ └── .futdcache.v1 │ │ │ │ └── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ ├── 007-WikiSearchAppGeonames │ │ │ ├── WikiSearchDALTestLib │ │ │ │ ├── bin │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ └── nunit_random_seed.tmp │ │ │ │ └── obj │ │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ └── WikiSearchDALTestLib.csproj.FileListAbsolute.txt │ │ │ ├── WikiSearchGeoNUnitTest │ │ │ │ ├── bin │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ └── nunit_random_seed.tmp │ │ │ │ └── obj │ │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ └── WikiSearchGeoNUnitTest.csproj.FileListAbsolute.txt │ │ │ ├── WikiSearchServiceTestLib │ │ │ │ ├── bin │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ └── nunit_random_seed.tmp │ │ │ │ └── obj │ │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ └── WikiSearchServiceTestLib.csproj.FileListAbsolute.txt │ │ │ ├── Entities │ │ │ │ └── obj │ │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── WikiSearchAppEntitiesLib.csproj.FileListAbsolute.txt │ │ │ │ │ ├── WikiSearchEntitiesLib.csproj.AssemblyReference.cache │ │ │ │ │ ├── Entities.AssemblyInfoInputs.cache │ │ │ │ │ ├── WikiSearchEntitiesLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── Entities.assets.cache │ │ │ │ │ ├── WikiSearchEntitiesLib.assets.cache │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── WikiSearchAppDALLib │ │ │ │ └── obj │ │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ └── WikiSearchAppDALLib.csproj.FileListAbsolute.txt │ │ │ ├── WikiSearchAppGeonamesLib │ │ │ │ └── obj │ │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ └── WikiSearchAppGeonamesLib.csproj.FileListAbsolute.txt │ │ │ ├── WikiSearchAppServiceLib │ │ │ │ └── obj │ │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ └── WikiSearchAppServiceLib.csproj.FileListAbsolute.txt │ │ │ ├── WikiSearchServiceGeoNames │ │ │ │ ├── obj │ │ │ │ │ └── Debug │ │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── WikiSearchServiceGeoNames.csproj.FileListAbsolute.txt │ │ │ │ │ │ └── apphost.exe │ │ │ │ └── appsettings.Development.json │ │ │ └── WikiSearchAppRepositoryLib │ │ │ │ └── obj │ │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ └── WikiSearchAppRepositoryLib.csproj.FileListAbsolute.txt │ │ │ ├── 006-MovieRestServiceApplication-TODO │ │ │ ├── obj │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── MovieRestServiceApplication.csproj.CopyComplete │ │ │ │ │ ├── CSD.MovieRestServiceApplication.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ │ ├── staticwebassets │ │ │ │ │ ├── CSD.MovieRestServiceApplication.StaticWebAssets.Manifest.cache │ │ │ │ │ └── CSD.MovieRestServiceApplication.StaticWebAssets.xml │ │ │ │ │ ├── MovieRestServiceApplication.AssemblyInfoInputs.cache │ │ │ │ │ ├── MovieRestServiceApplication.genruntimeconfig.cache │ │ │ │ │ ├── MovieRestServiceApplication.RazorTargetAssemblyInfo.cache │ │ │ │ │ ├── MovieRestServiceApplication.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── apphost.exe │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ ├── CSD.MovieRestServiceApplication.dll │ │ │ │ │ └── CSD.MovieRestServiceApplication.pdb │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── Mapster.dll │ │ │ │ │ ├── CSD.Data.dll │ │ │ │ │ ├── CSD.Data.pdb │ │ │ │ │ ├── Humanizer.dll │ │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ │ ├── Mapster.Core.dll │ │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ │ ├── runtimes │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ ├── win-x86 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ └── win-arm64 │ │ │ │ │ │ └── native │ │ │ │ │ │ └── sni.dll │ │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ │ ├── CSD.MovieRestServiceApplication.dll │ │ │ │ │ ├── CSD.MovieRestServiceApplication.exe │ │ │ │ │ ├── CSD.MovieRestServiceApplication.pdb │ │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ │ └── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── .vs │ │ │ │ └── MovieRestServiceApplication │ │ │ │ │ └── v16 │ │ │ │ │ └── .suo │ │ │ └── appsettings.json │ │ │ ├── 008-TodoApplicationRestAppAutoRepo │ │ │ ├── obj │ │ │ │ ├── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.CopyComplete │ │ │ │ │ │ ├── 001-TodoApplicationRestApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ │ │ ├── TodoApplicationRestApp.csproj.AssemblyReference.cache │ │ │ │ │ │ ├── staticwebassets │ │ │ │ │ │ ├── 001-TodoApplicationRestApp.StaticWebAssets.Manifest.cache │ │ │ │ │ │ └── 001-TodoApplicationRestApp.StaticWebAssets.xml │ │ │ │ │ │ ├── 001-TodoApplicationRestApp.genruntimeconfig.cache │ │ │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── 001-TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── 001-TodoApplicationRestApp.RazorTargetAssemblyInfo.cache │ │ │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.CoreCompileInputs.cache │ │ │ │ │ │ ├── apphost.exe │ │ │ │ │ │ ├── 001-TodoApplicationRestApp.dll │ │ │ │ │ │ ├── 001-TodoApplicationRestApp.pdb │ │ │ │ │ │ ├── TodoApplicationRestApp.assets.cache │ │ │ │ │ │ └── ref │ │ │ │ │ │ └── 001-TodoApplicationRestApp.dll │ │ │ │ └── Release │ │ │ │ │ └── net5.0 │ │ │ │ │ └── 001-TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ ├── .vs │ │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ │ └── v16 │ │ │ │ │ ├── TestStore │ │ │ │ │ └── 0 │ │ │ │ │ │ └── 000.testlog │ │ │ │ │ └── .suo │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── CSD.Data.dll │ │ │ │ │ ├── CSD.Data.pdb │ │ │ │ │ ├── Humanizer.dll │ │ │ │ │ ├── Mapster.dll │ │ │ │ │ ├── AutoMapper.dll │ │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ │ ├── Mapster.Core.dll │ │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ ├── Microsoft.OpenApi.dll │ │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ │ ├── 001-TodoApplicationRestApp.dll │ │ │ │ │ ├── 001-TodoApplicationRestApp.exe │ │ │ │ │ ├── 001-TodoApplicationRestApp.pdb │ │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ │ ├── runtimes │ │ │ │ │ ├── win-arm64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ ├── win-x64 │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── sni.dll │ │ │ │ │ └── win-x86 │ │ │ │ │ │ └── native │ │ │ │ │ │ └── sni.dll │ │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ │ └── ref │ │ │ │ │ └── 001-TodoApplicationRestApp.dll │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ │ ├── 001-TodoApplicationRestAppIntro │ │ │ ├── obj │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── 001-TodoApplicationRestApp.csproj.FileListAbsolute.txt │ │ │ │ │ ├── apphost.exe │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ └── 001-TodoApplicationRestApp.assets.cache │ │ │ ├── .vs │ │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ │ └── v16 │ │ │ │ │ └── .suo │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ │ ├── 004-TodoApplicationRestAppRelationIC │ │ │ ├── .vs │ │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ │ └── v16 │ │ │ │ │ ├── TestStore │ │ │ │ │ └── 0 │ │ │ │ │ │ └── 000.testlog │ │ │ │ │ └── .suo │ │ │ ├── obj │ │ │ │ ├── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── TodoApplicationRestApp.csproj.AssemblyReference.cache │ │ │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── apphost.exe │ │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ │ └── TodoApplicationRestApp.assets.cache │ │ │ │ └── Release │ │ │ │ │ └── net5.0 │ │ │ │ │ └── 001-TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ │ ├── 005-TodoApplicationRestAppRelationEF │ │ │ ├── .vs │ │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ │ └── v16 │ │ │ │ │ ├── TestStore │ │ │ │ │ └── 0 │ │ │ │ │ │ └── 000.testlog │ │ │ │ │ └── .suo │ │ │ ├── obj │ │ │ │ ├── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ │ ├── TodoApplicationRestApp.csproj.AssemblyReference.cache │ │ │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── apphost.exe │ │ │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ │ │ └── TodoApplicationRestApp.assets.cache │ │ │ │ └── Release │ │ │ │ │ └── net5.0 │ │ │ │ │ └── 001-TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ │ ├── 003-TodoApplicationRestAppMultiLayerIC │ │ │ ├── obj │ │ │ │ └── Debug │ │ │ │ │ └── net5.0 │ │ │ │ │ ├── TodoApplicationRestApp.csproj.AssemblyReference.cache │ │ │ │ │ ├── TodoApplicationRestApp.AssemblyInfoInputs.cache │ │ │ │ │ └── apphost.exe │ │ │ ├── appsettings.Development.json │ │ │ ├── .vs │ │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ │ └── v16 │ │ │ │ │ └── .suo │ │ │ └── appsettings.json │ │ │ └── 002-TodoApplicationRestAppStatusCodeIntro │ │ │ ├── obj │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ └── apphost.exe │ │ │ ├── appsettings.Development.json │ │ │ ├── .vs │ │ │ └── 001-TodoApplicationRestApp │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ │ └── appsettings.json │ └── Libraries │ │ ├── TaskUtilLib │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── TaskUtilLib.csproj.AssemblyReference.cache │ │ │ │ │ ├── TaskUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── TaskUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ │ ├── ref │ │ │ │ │ └── CSD.Util.TPL.dll │ │ │ │ │ ├── TaskUtilLib.assets.cache │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── TaskUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── TaskUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ ├── ref │ │ │ │ └── CSD.Util.TPL.dll │ │ │ │ ├── TaskUtilLib.assets.cache │ │ │ │ ├── TaskUtilLib.csproj.AssemblyReference.cache │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── .vs │ │ │ └── TaskUtilLib │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ ├── bin │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ │ └── ref │ │ │ │ │ └── CSD.Util.TPL.dll │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.TPL.dll │ │ └── TaskUtilLib.csproj │ │ ├── DataUtilLib │ │ ├── obj │ │ │ ├── Release │ │ │ │ └── net5.0 │ │ │ │ │ ├── DataUtilLib.csproj.AssemblyReference.cache │ │ │ │ │ ├── DataUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── DataUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── CSD.Data.dll │ │ │ │ │ ├── CSD.Data.pdb │ │ │ │ │ ├── ref │ │ │ │ │ └── CSD.Data.dll │ │ │ │ │ ├── DataUtilLib.assets.cache │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── DataUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── DataUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── ref │ │ │ │ └── CSD.Data.dll │ │ │ │ ├── DataUtilLib.assets.cache │ │ │ │ ├── DataUtilLib.csproj.AssemblyReference.cache │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── .vs │ │ │ └── DataUtilLib │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ ├── Repository │ │ │ └── IEntity.cs │ │ └── bin │ │ │ └── Release │ │ │ └── net5.0 │ │ │ ├── CSD.Data.dll │ │ │ ├── CSD.Data.pdb │ │ │ └── ref │ │ │ └── CSD.Data.dll │ │ ├── MapperUtilLib │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── MapperUtilLib.csproj.AssemblyReference.cache │ │ │ │ │ ├── MapperUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── MapperUtilLib.assets.cache │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── MapperUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── MapperUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── MapperUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── ref │ │ │ │ └── CSD.Util.Mappers.dll │ │ │ │ ├── MapperUtilLib.assets.cache │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── IMapper.cs │ │ ├── .vs │ │ │ └── MapperUtilLib │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ ├── bin │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Mappers.dll │ │ └── Mapster │ │ │ └── Mapper.cs │ │ ├── ExceptionUtilLib │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── ExceptionUtilLib.csproj.AssemblyReference.cache │ │ │ │ │ ├── ExceptionUtilLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── ExceptionUtilLib.assets.cache │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── ExceptionUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── ExceptionUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── ExceptionUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ ├── ref │ │ │ │ └── CSD.Util.Error.dll │ │ │ │ ├── ExceptionUtilLib.assets.cache │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── .vs │ │ │ └── ExceptionUtilLib │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ ├── bin │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Error.dll │ │ └── ExceptionUtilLib.csproj │ │ └── HttpClientExtensionLib │ │ ├── HttpClientExtensionLib │ │ ├── obj │ │ │ ├── Release │ │ │ │ ├── net5.0 │ │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── HttpClientExtensionLib.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ │ ├── ref │ │ │ │ │ │ └── CSD.Extensions.Net.Http.dll │ │ │ │ │ ├── HttpClientExtensionLib.assets.cache │ │ │ │ │ └── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfoInputs.cache │ │ │ │ │ ├── HttpClientExtensionLib.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ │ └── CSD.Extensions.Net.Http.pdb │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfoInputs.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ └── HttpClientExtensionLib.assets.cache │ │ └── bin │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Extensions.Net.Http.dll │ │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ └── CSD.Extensions.Net.Http.pdb │ │ └── .vs │ │ └── HttpClientExtensionLib │ │ ├── v16 │ │ └── .suo │ │ └── DesignTimeBuild │ │ └── .dtbcache.v2 └── SampleMiscServices │ └── PostalCodeServiceGeonames │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ └── src │ └── main │ └── java │ └── org │ └── csystem │ └── application │ └── rest │ └── postalcode │ └── geonames │ └── json │ └── dto │ └── Status.java ├── doc ├── notes │ ├── CSharp.pdf │ ├── HTML5.docx │ ├── curl.txt │ ├── httpie.txt │ └── scaffold.txt ├── Examples-CSharp.txt ├── Examples-CSharp-Basic.txt ├── figures │ ├── ikinci-dereceden-denklem.jpg │ ├── GeneralMultilayerArchitecture.png │ └── MultiLayerArchitecture-Mehmet-Gunes.png └── ebooks │ └── ECMA-404_2nd_edition_december_2017.pdf ├── 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 └── Links.txt /src/Javascript/SampleCodes/SampleJS/app.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Javascript/csd-modules/personfactory.mjs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Javascript/SampleCodes/sample.js: -------------------------------------------------------------------------------- 1 | console.log('Hello, World') -------------------------------------------------------------------------------- /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/Javascript/csd-modules/csdrandomnumberemiitter.mjs: -------------------------------------------------------------------------------- 1 | class Csdrandomnumber 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 107639327 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /doc/notes/CSharp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/doc/notes/CSharp.pdf -------------------------------------------------------------------------------- /doc/notes/HTML5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/doc/notes/HTML5.docx -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSDUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /doc/Examples-CSharp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/doc/Examples-CSharp.txt -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/obj/Debug/net6.0/EntitiesLib.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bd98d00284db39f31da2ae850770696dafe79247 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 62cdc03296439a227519628c2ee2822188732b74 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0fda6dfab65f1b620427326dffe4eaa2e582403c 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | abf1a4cf5d42a29319f4312284b916863531c348 2 | -------------------------------------------------------------------------------- /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/WikiSearchGeoNUnitTest/bin/Debug/net5.0/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 60025846 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 51d6c55bdb59bae937669f2baf875e3862603a01 2 | -------------------------------------------------------------------------------- /doc/Examples-CSharp-Basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/doc/Examples-CSharp-Basic.txt -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a14d26fc06f737478cf7633e0de9f9ccf6e09574 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e9f5c1365896daaca999b0ab516687d2bc93dd92 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 18be97ec6e85f9d1cfb0348d05bab9e330ec31db 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 959e76555e1c12569262c590ffa82c3866af65c2 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4ea159314cb32962b927491bd7e5627135c45aaa 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 600d45b1f72da77c543360acca25fb3238bc5598 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/MovieRestServiceApplication.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceTestLib/bin/Debug/net5.0/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 1412294118 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a54db0f97c3f8af7bd60704ab6556aa2b49c26db 2 | -------------------------------------------------------------------------------- /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.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f01914b7afb6992d93c514a814624a320c5dab24 2 | -------------------------------------------------------------------------------- /homework/Dotnet/Homework-001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/homework/Dotnet/Homework-001.pdf -------------------------------------------------------------------------------- /homework/Dotnet/Homework-002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/homework/Dotnet/Homework-002.pdf -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 64d4e3764247232f515fa15d228da09384a14b29 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6258735cc56e45a734b551307434d6d9c2abdf5b 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2a9e20b4746317f5c5e6174604f659349b15bdc0 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/obj/Debug/net5.0/001-TodoApplicationRestApp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/WikiSearchAppEntitiesLib.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/WikiSearchServiceApp/obj/Debug/net6.0/WikiSearchServiceApp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 241113385baa7283deca1006ed7af74710b1cc1a 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8613f6c194fcbbd184cc6bd120acc4277b8cd6c5 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a9bc4c8acc8642c50a6ff4a4d5360504b6281e33 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bce68447b6806f11e41ae4bcb7ec79a6841ce2b4 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchAppDALLib/obj/Debug/net5.0/WikiSearchAppDALLib.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchDALTestLib/obj/Debug/net5.0/WikiSearchDALTestLib.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bbc65371d7a62760bf8aa98333c50b9ca791cac3 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSDUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 556ee18f5d7aba2fa0b6ed6f5a159777b63f9415 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c22015d8156bf147787889dd471f8a02da5fb109 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/.vs/001-TodoApplicationRestApp/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- 1 | !!tItseT -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/.vs/001-TodoApplicationRestApp/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- 1 | !!tItseT -------------------------------------------------------------------------------- /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/WikiSearchGeoNUnitTest/obj/Debug/net5.0/WikiSearchGeoNUnitTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/.vs/001-TodoApplicationRestApp/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- 1 | !!tItseT -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/TodoApplicationRestApp.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/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 76b7918d21790f6cd9538ce8e246671e38ee4826 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ca48b7b93d68c6a842a25d436a1bfdddee7f5dbe 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c43bd672f6ffd136999c3e4e64c3f44a092150b0 2 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /doc/figures/ikinci-dereceden-denklem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/doc/figures/ikinci-dereceden-denklem.jpg -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/obj/Debug/net5.0/TodoApplicationRestApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/TodoApplicationRestApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/TodoApplicationRestApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchAppGeonamesLib/obj/Debug/net5.0/WikiSearchAppGeonamesLib.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchAppServiceLib/obj/Debug/net5.0/WikiSearchAppServiceLib.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceGeoNames/obj/Debug/net5.0/WikiSearchServiceGeoNames.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceTestLib/obj/Debug/net5.0/WikiSearchServiceTestLib.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ddda140413f64be9d913cb4ba416a6272e9e79d3 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Release/net5.0/CollectionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c5eebfc85deab2a6ad0a8a90a70aa92d00c93dd5 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bcda4da090cf4825a7bf608f6aa4305a0520dc00 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a433cd7eb40f800b0725e504eb68f8f31d8a679b 2 | -------------------------------------------------------------------------------- /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.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 5d30da9b9a8634f4463f8f1d0484e39eb3bf82b1 2 | -------------------------------------------------------------------------------- /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.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 1f1e147314f6871dc3960ffc9ad76d3f83b94545 2 | -------------------------------------------------------------------------------- /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/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/csd-modules/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/CSD.MovieRestServiceApplication.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchAppRepositoryLib/obj/Debug/net5.0/WikiSearchAppRepositoryLib.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/staticwebassets/001-TodoApplicationRestApp.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ddda140413f64be9d913cb4ba416a6272e9e79d3 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0c4ccbcee6c4b9de127adec0f17d2e9b072dc438 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 552665ea2ac0556470561bd0f9eb6e4aac763eb9 2 | -------------------------------------------------------------------------------- /doc/figures/GeneralMultilayerArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/doc/figures/GeneralMultilayerArchitecture.png -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/staticwebassets/CSD.MovieRestServiceApplication.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6efefbace1bafaab5616b3f0e8985359045640cb 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/obj/Debug/net6.0/EntitiesLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6ea9592cf86ecd465e090132500182bdb3651890 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a1d8e159e58abb21c22bd113c58e7c467e94353b 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | c5eebfc85deab2a6ad0a8a90a70aa92d00c93dd5 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6b75946d6f268f14f0a932667fa7775ebf558fdb 2 | -------------------------------------------------------------------------------- /src/Javascript/SampleCodes/SampleJS/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /homework/Javascript/Homework-JavaScript-002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/homework/Javascript/Homework-JavaScript-002.pdf -------------------------------------------------------------------------------- /homework/Javascript/Homework-JavaScript-003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/homework/Javascript/Homework-JavaScript-003.pdf -------------------------------------------------------------------------------- /homework/Javascript/Homework-JavaScript-004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/homework/Javascript/Homework-JavaScript-004.pdf -------------------------------------------------------------------------------- /homework/Javascript/Homework-Javascript-001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/homework/Javascript/Homework-Javascript-001.pdf -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 51093fdfd5c9094b71e5f7fa215e16c6bf16be24 2 | -------------------------------------------------------------------------------- /doc/ebooks/ECMA-404_2nd_edition_december_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/doc/ebooks/ECMA-404_2nd_edition_december_2017.pdf -------------------------------------------------------------------------------- /doc/figures/MultiLayerArchitecture-Mehmet-Gunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/doc/figures/MultiLayerArchitecture-Mehmet-Gunes.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fe49e8bb58d24f7bbaa897795e5dcf35416f0a16 2 | -------------------------------------------------------------------------------- /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/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/002-IsPrimeTestMocha/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/HttpClientExtensionLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e5b65ac8b3284b0c70690f29e4fc25160a406522 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4594ff4e1bf3507b97e4bb69fd20f83c9eab24ae 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d5a37e94c5631a1b3e49998d5fda75aa7c98d303 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d5a37e94c5631a1b3e49998d5fda75aa7c98d303 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/WikiSearchEntitiesLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a02a587d5cf44faf2c69be8c1b4a1c94b0b0568a 2 | -------------------------------------------------------------------------------- /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/TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d5a37e94c5631a1b3e49998d5fda75aa7c98d303 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/staticwebassets/001-TodoApplicationRestApp.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/WikiSearchServiceApp/obj/Debug/net6.0/WikiSearchServiceApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7b210529234839e002c0665ee14d861850ca736b 2 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/HttpClientExtensionLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6ccacef4b00142825baac93aaee93510fe5eff39 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/HttpClientExtensionLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fe49e8bb58d24f7bbaa897795e5dcf35416f0a16 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/obj/Debug/net5.0/TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d5a37e94c5631a1b3e49998d5fda75aa7c98d303 2 | -------------------------------------------------------------------------------- /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/obj/Release/net5.0/001-TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 55eba041dacbdf0b4d06b81ac1ffd6d54c6c60a6 2 | -------------------------------------------------------------------------------- /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.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 0d37f14e396d0c67fc349fe5ab564f34734f539c 2 | -------------------------------------------------------------------------------- /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/Release/net5.0/001-TodoApplicationRestApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 55eba041dacbdf0b4d06b81ac1ffd6d54c6c60a6 2 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/.vs/slnx.sqlite -------------------------------------------------------------------------------- /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/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/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/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/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/028-PostgreSQlAccessApp/.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/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/HttpClientExtensionLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 74b0985b339c411ee1fc8564ec66b054b6987050 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/staticwebassets/CSD.MovieRestServiceApplication.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/Server/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/.vs/DataUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/DataUtilLib/.vs/DataUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/.vs/TaskUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/TaskUtilLib/.vs/TaskUtilLib/v16/.suo -------------------------------------------------------------------------------- /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/Server/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /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/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/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/.vs/MapperUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/MapperUtilLib/.vs/MapperUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/.vs/Sample/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/.vs/Sample/v16/.suo -------------------------------------------------------------------------------- /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/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /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/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/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/ref/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/ref/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /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/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/ref/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/DataUtilLib/bin/Release/net5.0/ref/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/ref/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/ref/CSD.Data.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Sample.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/TaskUtilLib/bin/Debug/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/TaskUtilLib/bin/Release/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/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/HEAD/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/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/Sample.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/ref/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/ref/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/ref/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/ref/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/.vs/DataUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/DataUtilLib/.vs/DataUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/.vs/TaskUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/TaskUtilLib/.vs/TaskUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.assets.cache -------------------------------------------------------------------------------- /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/CSDUtilLib/bin/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Debug/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Math.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/ref/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/ref/Sample.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/ref/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/ref/Sample.dll -------------------------------------------------------------------------------- /src/SampleMiscServices/PostalCodeServiceGeonames/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/SampleMiscServices/PostalCodeServiceGeonames/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/ref/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/ExceptionUtilLib/bin/Release/net5.0/ref/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ref/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ref/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/ref/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/MapperUtilLib/bin/Release/net5.0/ref/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/ref/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/ref/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Debug/net5.0/ref/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Debug/net5.0/ref/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/ref/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/ref/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/.vs/MapperUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/MapperUtilLib/.vs/MapperUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/TestStore/0/001.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/TestStore/0/001.testlog -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/ref/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/bin/Release/net5.0/ref/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/ref/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/ref/CSD.Util.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/CSD.Util.Math.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/CSD.Util.Math.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testhost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/.vs/Sample/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/.vs/Sample/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.assets.cache -------------------------------------------------------------------------------- /src/Javascript/csd-modules/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/CSD.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/CSD.Util.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /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/DotnetCore/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/v17/.suo -------------------------------------------------------------------------------- /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/SampleSolution/.vs/SampleSolution/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/.vs/SampleSolution/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/ref/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/MathUtilLib/bin/Debug/net5.0/ref/CSD.Util.Math.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/ref/CSD.Util.Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/ref/CSD.Util.Math.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.dll -------------------------------------------------------------------------------- /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/Release/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Release/net5.0/CSD.Util.Collections.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/CSDUtilLib/obj/Release/net5.0/CSDUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Release/net5.0/CSDUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/CSD.GeneralTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.framework.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/ref/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Debug/net5.0/ref/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/ref/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/bin/Release/net5.0/ref/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/ref/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/ref/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/ref/CSD.GeneralTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/ref/CSD.GeneralTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NUnit3.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NUnit3.TestAdapter.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/NumberUtilTestLib.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/nunit.engine.core.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.engine.core.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/nunit.framework.dll -------------------------------------------------------------------------------- /src/Javascript/UnitTests/001-IsPrimeTestTape/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/UnitTests/002-IsPrimeTestMocha/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NUnit3.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/NumberUtilUnitTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/cars-ordered-traffiregdate-asc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/bin/Debug/net5.0/cars-ordered-traffiregdate-asc.txt -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/002-CountDownTimer/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/007-HttpServerJson/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/v17/.futdcache.v1 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.assets.cache -------------------------------------------------------------------------------- /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/ref/NumberUtilTestLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/ref/NumberUtilTestLib.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/ref/NumberUtilTestLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/ref/NumberUtilTestLib.dll -------------------------------------------------------------------------------- /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/ref/NumberUtilUnitTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/ref/NumberUtilUnitTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/ref/NumberUtilUnitTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/ref/NumberUtilUnitTest.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Debug/net5.0/Sample.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/003-EventEmitterClass/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/005-RandomNumberEmitter/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/006-HttpServerPlainText/.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/010-RandomGenerator/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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/028-PostgreSQlAccessApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/029-gRPC/01-FirstApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/UnitTests/003-CreateRandomPointsTestTape/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /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/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/CSD.Util.Collections.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/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/HEAD/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/bin/Debug/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/Sample/obj/Release/net5.0/Sample.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/001-RandomPasswordGenerator/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/003-EventEmitterClass/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 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/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/024-PanicServer/Client/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/024-PanicServer/Server/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Mapster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Mapster.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/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/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Mapster.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Debug/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Release/net5.0/CollectionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Release/net5.0/CollectionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testcentric.engine.metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/testcentric.engine.metadata.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/testcentric.engine.metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/bin/Debug/net5.0/testcentric.engine.metadata.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.assets.cache -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/001-RandomPasswordGenerator/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/004-CountDownTimerEventEmitter/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/009-HttpServerJsonExpressMongo/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/013-UDPPeriodicMessage/Sender/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 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/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/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/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/AutoMapper.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/bin/Release/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/ref/CSD.Util.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/ref/CSD.Util.Collections.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDUtilLib/obj/Debug/net5.0/CSDUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /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/012-TCPRandomTextGenerator/Client/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 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/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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/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/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /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/HEAD/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/HEAD/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/Mapster.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Mapster.Core.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/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.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/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/Mapster.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Mapster.Core.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/.vs/WikiSearchGeonames/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/MathUtilLib/obj/Debug/net5.0/MathUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /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/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/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/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/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/.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/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/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/HEAD/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/HEAD/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/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/obj/Debug/net6.0/EntitiesLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/WikiSearchGeonames/EntitiesLib/obj/Debug/net6.0/EntitiesLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Release/net5.0/CSDCollectionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/029-gRPC/02-ProductServiceApp/Applications/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/bin/Debug/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/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/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/Entities.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /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/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Debug/net5.0/GeneralTestDLL.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CrossPlatEngine.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/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/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/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /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/004-TodoApplicationRestAppRelationIC/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/.vs/MovieRestServiceApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/.vs/MovieRestServiceApplication/v16/.suo -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/System.Data.SqlClient.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/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/GeneralTestDLL.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/GeneralTestDLL/obj/Release/net5.0/GeneralTestDLL.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /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/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /src/Javascript/Projects/Nodejs/026-PostalCodeSearchGeonames/PostalCodeSearchService/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/ref/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Release/net5.0/ref/CSD.Extensions.Net.Http.dll -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/ref/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/ref/CSD.Extensions.Net.Http.dll -------------------------------------------------------------------------------- /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/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/003-TodoApplicationRestAppMultiLayerIC/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/003-TodoApplicationRestAppMultiLayerIC/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /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/HEAD/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/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceGeoNames/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/WikiSearchServiceGeoNames/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/System.Runtime.Caching.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/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/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/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /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/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/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/HttpClientExtensionLib/HttpClientExtensionLib/bin/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/bin/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/.vs/001-TodoApplicationRestApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/002-TodoApplicationRestAppStatusCodeIntro/.vs/001-TodoApplicationRestApp/v16/.suo -------------------------------------------------------------------------------- /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/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/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/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/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.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/HEAD/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/HEAD/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/HEAD/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/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/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/obj/Debug/net5.0/001-TodoApplicationRestApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/001-TodoApplicationRestApp.pdb -------------------------------------------------------------------------------- /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/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/Debug/net5.0/CollectionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CollectionUtilLib/obj/Debug/net5.0/CollectionUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /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/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/obj/Debug/net5.0/NumberUtilTestLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Javascript/SampleCodes/SampleJS/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/CSD.Extensions.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/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/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/CSD.Extensions.Net.Http.pdb -------------------------------------------------------------------------------- /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/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/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/runtimes/win-x86/native/sni.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/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilUnitTest/obj/Debug/net5.0/NumberUtilUnitTest.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /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/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/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/WikiSearchEntitiesLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/007-WikiSearchAppGeonames/Entities/obj/Debug/net5.0/WikiSearchEntitiesLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/ref/001-TodoApplicationRestApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/bin/Debug/net5.0/ref/001-TodoApplicationRestApp.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/TodoApplicationRestApp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/TodoApplicationRestApp.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/ref/001-TodoApplicationRestApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/008-TodoApplicationRestAppAutoRepo/obj/Debug/net5.0/ref/001-TodoApplicationRestApp.dll -------------------------------------------------------------------------------- /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/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/CSDCollectionUtilLib/obj/Debug/net5.0/CSDCollectionUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/SampleSolution/NumberUtilTestLib/bin/Debug/net5.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /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/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/HttpClientExtensionLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/HttpClientExtensionLib.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/obj/Debug/net5.0/001-TodoApplicationRestApp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/001-TodoApplicationRestAppIntro/obj/Debug/net5.0/001-TodoApplicationRestApp.assets.cache -------------------------------------------------------------------------------- /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.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/004-TodoApplicationRestAppRelationIC/obj/Debug/net5.0/TodoApplicationRestApp.assets.cache -------------------------------------------------------------------------------- /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.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/005-TodoApplicationRestAppRelationEF/obj/Debug/net5.0/TodoApplicationRestApp.assets.cache -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.MovieRestServiceApplication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.MovieRestServiceApplication.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.MovieRestServiceApplication.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.MovieRestServiceApplication.exe -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.MovieRestServiceApplication.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/CSD.MovieRestServiceApplication.pdb -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /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/CSD.MovieRestServiceApplication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/CSD.MovieRestServiceApplication.dll -------------------------------------------------------------------------------- /src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/CSD.MovieRestServiceApplication.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/.NetCore-Javascript-Web-Programming/HEAD/src/DotnetCore/Projects/ASPDotnet/WebAPI/006-MovieRestServiceApplication-TODO/obj/Debug/net5.0/CSD.MovieRestServiceApplication.pdb -------------------------------------------------------------------------------- /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 | --------------------------------------------------------------------------------