├── .DS_Store ├── .gitattributes ├── BackendUygulama ├── .DS_Store ├── .idea │ └── .idea.BackendUygulama │ │ └── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml ├── BackendUygulama.sln ├── BackendUygulama.sln.DotSettings.user ├── BackendUygulama │ ├── BackendUygulama.csproj │ ├── BackendUygulama.http │ ├── Controller │ │ ├── TasksController.cs │ │ └── UsersController.cs │ ├── DataAccess │ │ ├── IUserDAO.cs │ │ ├── TaskDAO.cs │ │ ├── UserDAO.cs │ │ └── UserMongo.cs │ ├── Dummy.cs │ ├── Models │ │ ├── Response.cs │ │ ├── ReturnModels │ │ │ └── RUser.cs │ │ ├── ScrumboarddbContext.cs │ │ ├── Subtask.cs │ │ ├── Task.cs │ │ ├── User.cs │ │ └── UserToken.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Security.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── BackendUygulama │ │ │ ├── BackendUygulama.deps.json │ │ │ ├── BackendUygulama.dll │ │ │ ├── BackendUygulama.pdb │ │ │ ├── BackendUygulama.runtimeconfig.json │ │ │ ├── Humanizer.dll │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Mono.TextTemplating.dll │ │ │ ├── MySqlConnector.dll │ │ │ ├── Pomelo.EntityFrameworkCore.MySql.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.CodeDom.dll │ │ │ ├── System.Composition.AttributedModel.dll │ │ │ ├── System.Composition.Convention.dll │ │ │ ├── System.Composition.Hosting.dll │ │ │ ├── System.Composition.Runtime.dll │ │ │ ├── System.Composition.TypedParts.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── cs │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pl │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── tr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ └── obj │ │ ├── BackendUygulama.csproj.EntityFrameworkCore.targets │ │ ├── BackendUygulama.csproj.nuget.dgspec.json │ │ ├── BackendUygulama.csproj.nuget.g.props │ │ ├── BackendUygulama.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── BackendU.DAFC26D8.Up2Date │ │ │ ├── BackendUygulama.AssemblyInfo.cs │ │ │ ├── BackendUygulama.AssemblyInfoInputs.cache │ │ │ ├── BackendUygulama.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── BackendUygulama.GlobalUsings.g.cs │ │ │ ├── BackendUygulama.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── BackendUygulama.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── BackendUygulama.assets.cache │ │ │ ├── BackendUygulama.csproj.AssemblyReference.cache │ │ │ ├── BackendUygulama.csproj.CoreCompileInputs.cache │ │ │ ├── BackendUygulama.csproj.FileListAbsolute.txt │ │ │ ├── BackendUygulama.dll │ │ │ ├── BackendUygulama.genruntimeconfig.cache │ │ │ ├── BackendUygulama.pdb │ │ │ ├── BackendUygulama.sourcelink.json │ │ │ ├── apphost │ │ │ ├── ref │ │ │ └── BackendUygulama.dll │ │ │ ├── refint │ │ │ └── BackendUygulama.dll │ │ │ ├── staticwebassets.build.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.build.BackendUygulama.props │ │ │ ├── msbuild.buildMultiTargeting.BackendUygulama.props │ │ │ └── msbuild.buildTransitive.BackendUygulama.props │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ ├── rider.project.model.nuget.info │ │ └── rider.project.restore.info ├── BirimTesti │ ├── BirimTesti.csproj │ ├── UnitTest1.cs │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── BackendUygulama │ │ │ ├── BackendUygulama.deps.json │ │ │ ├── BackendUygulama.dll │ │ │ ├── BackendUygulama.pdb │ │ │ ├── BackendUygulama.runtimeconfig.json │ │ │ ├── BirimTesti.deps.json │ │ │ ├── BirimTesti.dll │ │ │ ├── BirimTesti.pdb │ │ │ ├── BirimTesti.runtimeconfig.json │ │ │ ├── Castle.Core.dll │ │ │ ├── CoverletSourceRootsMapping_BirimTesti │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ ├── Moq.dll │ │ │ ├── MySqlConnector.dll │ │ │ ├── NUnit3.TestAdapter.dll │ │ │ ├── NUnit3.TestAdapter.pdb │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── Pomelo.EntityFrameworkCore.MySql.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── cs │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── nunit.engine.api.dll │ │ │ ├── nunit.engine.core.dll │ │ │ ├── nunit.engine.dll │ │ │ ├── nunit.framework.dll │ │ │ ├── pl │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── testcentric.engine.metadata.dll │ │ │ ├── testhost.dll │ │ │ ├── tr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ │ ├── BirimTesti.csproj.nuget.dgspec.json │ │ ├── BirimTesti.csproj.nuget.g.props │ │ ├── BirimTesti.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── BirimTesti.AssemblyInfo.cs │ │ │ ├── BirimTesti.AssemblyInfoInputs.cache │ │ │ ├── BirimTesti.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── BirimTesti.GlobalUsings.g.cs │ │ │ ├── BirimTesti.assets.cache │ │ │ ├── BirimTesti.csproj.AssemblyReference.cache │ │ │ ├── BirimTesti.csproj.CoreCompileInputs.cache │ │ │ ├── BirimTesti.csproj.FileListAbsolute.txt │ │ │ ├── BirimTesti.csproj.Up2Date │ │ │ ├── BirimTesti.dll │ │ │ ├── BirimTesti.genruntimeconfig.cache │ │ │ ├── BirimTesti.pdb │ │ │ ├── BirimTesti.sourcelink.json │ │ │ ├── ref │ │ │ └── BirimTesti.dll │ │ │ └── refint │ │ │ └── BirimTesti.dll │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ ├── rider.project.model.nuget.info │ │ └── rider.project.restore.info ├── Migration.txt └── script.sql ├── Sunumlar ├── .DS_Store ├── 1-Ders İşleyişi.pdf ├── 2-C# Sözdizimi.key ├── 3-Koleksiyonlar ve Genel Sınıflar.key ├── 4-Dosyalama, Path, File, Directory.pdf ├── 5-Birim testi ve performans analizi.pdf ├── 6-Lambda İfadeleri ve LINQ.pdf └── 7-Backend Oluşturma.pdf ├── Uygulama2 ├── .idea │ └── .idea.Uygulama2 │ │ └── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml ├── Uygulama2.sln └── Uygulama2 │ ├── Program.cs │ ├── Uygulama2.csproj │ ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Uygulama2 │ │ ├── Uygulama2.deps.json │ │ ├── Uygulama2.dll │ │ ├── Uygulama2.pdb │ │ └── Uygulama2.runtimeconfig.json │ └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Uygulama2.AssemblyInfo.cs │ │ ├── Uygulama2.AssemblyInfoInputs.cache │ │ ├── Uygulama2.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Uygulama2.GlobalUsings.g.cs │ │ ├── Uygulama2.assets.cache │ │ ├── Uygulama2.csproj.CoreCompileInputs.cache │ │ ├── Uygulama2.csproj.FileListAbsolute.txt │ │ ├── Uygulama2.dll │ │ ├── Uygulama2.genruntimeconfig.cache │ │ ├── Uygulama2.pdb │ │ ├── Uygulama2.sourcelink.json │ │ ├── apphost │ │ ├── ref │ │ └── Uygulama2.dll │ │ └── refint │ │ └── Uygulama2.dll │ ├── Uygulama2.csproj.nuget.dgspec.json │ ├── Uygulama2.csproj.nuget.g.props │ ├── Uygulama2.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ ├── rider.project.model.nuget.info │ └── rider.project.restore.info ├── Uygulama3 ├── .idea │ └── .idea.Uygulama3 │ │ └── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml ├── TestProject1 │ ├── TestProject1.csproj │ ├── UnitTest1.cs │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── CoverletSourceRootsMapping_TestProject1 │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ ├── NUnit3.TestAdapter.dll │ │ │ ├── NUnit3.TestAdapter.pdb │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── TestProject1.deps.json │ │ │ ├── TestProject1.dll │ │ │ ├── TestProject1.pdb │ │ │ ├── TestProject1.runtimeconfig.json │ │ │ ├── Uygulama3 │ │ │ ├── Uygulama3.deps.json │ │ │ ├── Uygulama3.dll │ │ │ ├── Uygulama3.pdb │ │ │ ├── Uygulama3.runtimeconfig.json │ │ │ ├── cs │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── nunit.engine.api.dll │ │ │ ├── nunit.engine.core.dll │ │ │ ├── nunit.engine.dll │ │ │ ├── nunit.framework.dll │ │ │ ├── pl │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── testcentric.engine.metadata.dll │ │ │ ├── testhost.dll │ │ │ ├── tr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── TestProj.494AA513.Up2Date │ │ │ ├── TestProject1.AssemblyInfo.cs │ │ │ ├── TestProject1.AssemblyInfoInputs.cache │ │ │ ├── TestProject1.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── TestProject1.GlobalUsings.g.cs │ │ │ ├── TestProject1.assets.cache │ │ │ ├── TestProject1.csproj.AssemblyReference.cache │ │ │ ├── TestProject1.csproj.CoreCompileInputs.cache │ │ │ ├── TestProject1.csproj.FileListAbsolute.txt │ │ │ ├── TestProject1.dll │ │ │ ├── TestProject1.genruntimeconfig.cache │ │ │ ├── TestProject1.pdb │ │ │ ├── TestProject1.sourcelink.json │ │ │ ├── ref │ │ │ └── TestProject1.dll │ │ │ └── refint │ │ │ └── TestProject1.dll │ │ ├── TestProject1.csproj.nuget.dgspec.json │ │ ├── TestProject1.csproj.nuget.g.props │ │ ├── TestProject1.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ ├── rider.project.model.nuget.info │ │ └── rider.project.restore.info ├── Uygulama3.sln ├── Uygulama3.sln.DotSettings.user └── Uygulama3 │ ├── Program.cs │ ├── Uygulama3.csproj │ ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Uygulama3 │ │ ├── Uygulama3.deps.json │ │ ├── Uygulama3.dll │ │ ├── Uygulama3.pdb │ │ └── Uygulama3.runtimeconfig.json │ └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Uygulama3.AssemblyInfo.cs │ │ ├── Uygulama3.AssemblyInfoInputs.cache │ │ ├── Uygulama3.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Uygulama3.GlobalUsings.g.cs │ │ ├── Uygulama3.assets.cache │ │ ├── Uygulama3.csproj.CoreCompileInputs.cache │ │ ├── Uygulama3.csproj.FileListAbsolute.txt │ │ ├── Uygulama3.dll │ │ ├── Uygulama3.genruntimeconfig.cache │ │ ├── Uygulama3.pdb │ │ ├── Uygulama3.sourcelink.json │ │ ├── apphost │ │ ├── ref │ │ └── Uygulama3.dll │ │ └── refint │ │ └── Uygulama3.dll │ ├── Uygulama3.csproj.nuget.dgspec.json │ ├── Uygulama3.csproj.nuget.g.props │ ├── Uygulama3.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ ├── rider.project.model.nuget.info │ └── rider.project.restore.info └── Uygulama4 ├── .DS_Store ├── .idea └── .idea.Uygulama4 │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── Uygulama4.sln └── Uygulama4 ├── Program.cs ├── Uygulama4.csproj ├── bin └── Debug │ └── net8.0 │ ├── Uygulama4 │ ├── Uygulama4.deps.json │ ├── Uygulama4.dll │ ├── Uygulama4.pdb │ └── Uygulama4.runtimeconfig.json └── obj ├── Debug └── net8.0 │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ ├── Uygulama4.AssemblyInfo.cs │ ├── Uygulama4.AssemblyInfoInputs.cache │ ├── Uygulama4.GeneratedMSBuildEditorConfig.editorconfig │ ├── Uygulama4.GlobalUsings.g.cs │ ├── Uygulama4.assets.cache │ ├── Uygulama4.csproj.CoreCompileInputs.cache │ ├── Uygulama4.csproj.FileListAbsolute.txt │ ├── Uygulama4.dll │ ├── Uygulama4.genruntimeconfig.cache │ ├── Uygulama4.pdb │ ├── Uygulama4.sourcelink.json │ ├── apphost │ ├── ref │ └── Uygulama4.dll │ └── refint │ └── Uygulama4.dll ├── Uygulama4.csproj.nuget.dgspec.json ├── Uygulama4.csproj.nuget.g.props ├── Uygulama4.csproj.nuget.g.targets ├── project.assets.json ├── project.nuget.cache ├── project.packagespec.json ├── rider.project.model.nuget.info └── rider.project.restore.info /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /BackendUygulama/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/.DS_Store -------------------------------------------------------------------------------- /BackendUygulama/.idea/.idea.BackendUygulama/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Rider ignored files 5 | /contentModel.xml 6 | /projectSettingsUpdater.xml 7 | /modules.xml 8 | /.idea.BackendUygulama.iml 9 | # Editor-based HTTP Client requests 10 | /httpRequests/ 11 | # Datasource local storage ignored files 12 | /dataSources/ 13 | /dataSources.local.xml 14 | -------------------------------------------------------------------------------- /BackendUygulama/.idea/.idea.BackendUygulama/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /BackendUygulama/.idea/.idea.BackendUygulama/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /BackendUygulama/.idea/.idea.BackendUygulama/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama.sln.DotSettings.user: -------------------------------------------------------------------------------- 1 |  2 | ForceIncluded 3 | <SessionState ContinuousTestingMode="0" IsActive="True" Name="Test1" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"> 4 | <TestAncestor> 5 | <TestId>NUnit3x::1E6BE50C-53A6-4A92-A4F8-90FDE3785745::net8.0::BirimTesti.Tests</TestId> 6 | </TestAncestor> 7 | </SessionState> 8 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/BackendUygulama.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | runtime; build; native; contentfiles; analyzers; buildtransitive 14 | all 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/BackendUygulama.http: -------------------------------------------------------------------------------- 1 | @BackendUygulama_HostAddress = http://localhost:5019 2 | 3 | GET {{BackendUygulama_HostAddress}}/weatherforecast/ 4 | Accept: application/json 5 | 6 | ### 7 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/DataAccess/IUserDAO.cs: -------------------------------------------------------------------------------- 1 | using BackendUygulama.Models; 2 | 3 | namespace BackendUygulama.DataAccess; 4 | 5 | public interface IUserDAO 6 | { 7 | List GetUsers(); 8 | User? GetUser(int id); 9 | User Add(User user); 10 | User? Update(User user, int id); 11 | User? DeleteUser(int id); 12 | User? CheckUser(User user); 13 | bool IsAuthorized(string? mail); 14 | } -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/DataAccess/UserMongo.cs: -------------------------------------------------------------------------------- 1 | using BackendUygulama.Models; 2 | 3 | namespace BackendUygulama.DataAccess; 4 | 5 | public class UserMongo : IUserDAO 6 | { 7 | public List GetUsers() 8 | { 9 | throw new NotImplementedException(); 10 | } 11 | 12 | public User? GetUser(int id) 13 | { 14 | throw new NotImplementedException(); 15 | } 16 | 17 | public User Add(User user) 18 | { 19 | throw new NotImplementedException(); 20 | } 21 | 22 | public User? Update(User user, int id) 23 | { 24 | throw new NotImplementedException(); 25 | } 26 | 27 | public User? DeleteUser(int id) 28 | { 29 | throw new NotImplementedException(); 30 | } 31 | 32 | public User? CheckUser(User user) 33 | { 34 | throw new NotImplementedException(); 35 | } 36 | 37 | public bool IsAuthorized(string? mail) 38 | { 39 | throw new NotImplementedException(); 40 | } 41 | } -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/Dummy.cs: -------------------------------------------------------------------------------- 1 | using BackendUygulama.Models; 2 | 3 | namespace BackendUygulama; 4 | 5 | public class Dummy 6 | { 7 | public static List users = new List() 8 | { 9 | new User 10 | { 11 | Id = 1, Mail = "emirozturk@trakya.edu.tr", Password = "12345678", Username = "emirozturk", 12 | Name = "Emir Öztürk", Role = 0 13 | }, 14 | new User 15 | { 16 | Id = 22, Mail = "ferhatyenilmez@trakya.edu.tr", Password = "12345678", Username = "D@sTrOyEr_*22*", 17 | Name = "Ferhat Yenilmez", Role = 1 18 | }, 19 | new User 20 | { 21 | Id = 1, Mail = "ilkercelebi@trakya.edu.tr", Password = "12345678", Username = "ilkercelebi", 22 | Name = "İlker Çelebi", Role = 1 23 | }, 24 | new User 25 | { 26 | Id = 1, Mail = "moustafamoustafa@trakya.edu.tr", Password = "12345678", Username = "Moustafa**2", 27 | Name = "Moustafa Moustafa", Role = 1 28 | }, 29 | new User 30 | { 31 | Id = 1, Mail = "semreerol@trakya.edu.tr", Password = "12345678", Username = "m3", 32 | Name = "Selman Emre Erol", Role = 1 33 | }, 34 | }; 35 | 36 | } -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/Models/Response.cs: -------------------------------------------------------------------------------- 1 | namespace BackendUygulama.Models; 2 | 3 | public class Response 4 | { 5 | public bool IsSuccess { get; set; } 6 | public T Body { get; set; } 7 | public string Message { get; set; } 8 | 9 | private Response(bool isSuccess, T body, string message) 10 | { 11 | IsSuccess = isSuccess; 12 | Body = body; 13 | Message = message; 14 | } 15 | 16 | public static Response Success(T body) 17 | { 18 | return new Response(true, body, string.Empty); 19 | } 20 | 21 | public static Response Fail(string message) 22 | { 23 | return new Response(false, default(T), message); 24 | } 25 | } -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/Models/ReturnModels/RUser.cs: -------------------------------------------------------------------------------- 1 | namespace BackendUygulama.Models.ReturnModels; 2 | 3 | public class RUser 4 | { 5 | public int Id { get; set; } 6 | 7 | public string? Username { get; set; } 8 | 9 | public RUser(User user) 10 | { 11 | Id = user.Id; 12 | Username = user.Username; 13 | } 14 | } -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/Models/Subtask.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace BackendUygulama.Models; 5 | 6 | public partial class Subtask 7 | { 8 | public int Id { get; set; } 9 | 10 | public int MainTaskId { get; set; } 11 | 12 | public string Title { get; set; } = null!; 13 | 14 | public string Content { get; set; } = null!; 15 | 16 | public DateTime? Deadline { get; set; } 17 | 18 | public int Status { get; set; } 19 | 20 | public DateTime StatusDate { get; set; } 21 | 22 | public DateTime CreatedAt { get; set; } 23 | 24 | public string Type { get; set; } = null!; 25 | 26 | public virtual Task MainTask { get; set; } = null!; 27 | } 28 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/Models/Task.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace BackendUygulama.Models; 5 | 6 | public partial class Task 7 | { 8 | public int Id { get; set; } 9 | 10 | public string Title { get; set; } = null!; 11 | 12 | public string Content { get; set; } = null!; 13 | 14 | public DateTime? Deadline { get; set; } 15 | 16 | public int Status { get; set; } 17 | 18 | public DateTime StatusDate { get; set; } 19 | 20 | public DateTime CreatedAt { get; set; } 21 | 22 | public string Type { get; set; } = null!; 23 | 24 | public int? Owner { get; set; } 25 | 26 | public int? CreatedBy { get; set; } 27 | 28 | public virtual User? OwnerNavigation { get; set; } 29 | 30 | public virtual ICollection Subtasks { get; set; } = new List(); 31 | } 32 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/Models/User.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace BackendUygulama.Models; 5 | 6 | public partial class User 7 | { 8 | public int Id { get; set; } 9 | 10 | public string? Username { get; set; } 11 | 12 | public string? Name { get; set; } 13 | 14 | public string? Password { get; set; } 15 | 16 | public string? Mail { get; set; } 17 | 18 | public int? Role { get; set; } 19 | 20 | public virtual ICollection Tasks { get; set; } = new List(); 21 | } 22 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/Models/UserToken.cs: -------------------------------------------------------------------------------- 1 | namespace BackendUygulama.Models; 2 | 3 | public class UserToken 4 | { 5 | public User User { get; set; } 6 | public string Token { get; set; } 7 | 8 | public UserToken(User user, string token) 9 | { 10 | User = user; 11 | Token = token; 12 | } 13 | } -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:57066", 8 | "sslPort": 44302 9 | } 10 | }, 11 | "profiles": { 12 | "http": { 13 | "commandName": "Project", 14 | "dotnetRunMessages": true, 15 | "launchBrowser": true, 16 | "launchUrl": "swagger", 17 | "applicationUrl": "http://localhost:5019", 18 | "environmentVariables": { 19 | "ASPNETCORE_ENVIRONMENT": "Development" 20 | } 21 | }, 22 | "https": { 23 | "commandName": "Project", 24 | "dotnetRunMessages": true, 25 | "launchBrowser": true, 26 | "launchUrl": "swagger", 27 | "applicationUrl": "https://localhost:7206;http://localhost:5019", 28 | "environmentVariables": { 29 | "ASPNETCORE_ENVIRONMENT": "Development" 30 | } 31 | }, 32 | "IIS Express": { 33 | "commandName": "IISExpress", 34 | "launchBrowser": true, 35 | "launchUrl": "swagger", 36 | "environmentVariables": { 37 | "ASPNETCORE_ENVIRONMENT": "Development" 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "ConnectionStrings": { 9 | "LocalConnection": "server=localhost;database=scrumboarddb;user=scrumboardadmin;password=asd123" 10 | }, 11 | "AllowedHosts": "*", 12 | "Jwt": { 13 | "Issuer": "localhost", 14 | "Audience": "localhost", 15 | "Key": "AUniquekeygeneratedbyemirozturk" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/BackendUygulama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/BackendUygulama -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/BackendUygulama.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/BackendUygulama.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/BackendUygulama.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/BackendUygulama.pdb -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/BackendUygulama.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "8.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Reflection.NullabilityInfoContext.IsSupported": true, 17 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Humanizer.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Mono.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Mono.TextTemplating.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/MySqlConnector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/MySqlConnector.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.CodeDom.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "ConnectionStrings": { 9 | "LocalConnection": "server=localhost;database=scrumboarddb;user=scrumboardadmin;password=asd123" 10 | }, 11 | "AllowedHosts": "*", 12 | "Jwt": { 13 | "Issuer": "localhost", 14 | "Audience": "localhost", 15 | "Key": "AUniquekeygeneratedbyemirozturk" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/BackendUygulama.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendU.DAFC26D8.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendU.DAFC26D8.Up2Date -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("BackendUygulama")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d5694acdb2ce701d7d5edbd27928dbed19d48707")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("BackendUygulama")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("BackendUygulama")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2b082e607fc606f88482cd6ee98ace570f3998a32bb21f58463c5fcffdc69ebb 2 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = true 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = BackendUygulama 11 | build_property.RootNamespace = BackendUygulama 12 | build_property.ProjectDir = /Users/emirozturk/Desktop/GitHub/C--Programlama-2024/BackendUygulama/BackendUygulama/ 13 | build_property.EnableComHosting = 14 | build_property.EnableGeneratedComInterfaceComImportInterop = 15 | build_property.RazorLangVersion = 8.0 16 | build_property.SupportLocalizedComponentNames = 17 | build_property.GenerateRazorMetadataSourceChecksumAttributes = 18 | build_property.MSBuildProjectDirectory = /Users/emirozturk/Desktop/GitHub/C--Programlama-2024/BackendUygulama/BackendUygulama 19 | build_property._RazorSourceGeneratorDebug = 20 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] 15 | 16 | // Generated by the MSBuild WriteCodeFragment class. 17 | 18 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.assets.cache -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 464b1973d20662ccfa0e3721a30005b7fb73e649a12fab86944bec3b94949bcc 2 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | b9789680a82f10e5e4d1cd6a8d901d442c145e398c789af5991654d8854b25e0 2 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.pdb -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/BackendUygulama.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/*":"https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/d5694acdb2ce701d7d5edbd27928dbed19d48707/*"}} -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/obj/Debug/net8.0/apphost -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/ref/BackendUygulama.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/obj/Debug/net8.0/ref/BackendUygulama.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/refint/BackendUygulama.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BackendUygulama/obj/Debug/net8.0/refint/BackendUygulama.dll -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/staticwebassets.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "Hash": "kA5pLJGb6aRi+ZgEWXiu7UbihhmGFVl2qfmFlVChu50=", 4 | "Source": "BackendUygulama", 5 | "BasePath": "_content/BackendUygulama", 6 | "Mode": "Default", 7 | "ManifestType": "Build", 8 | "ReferencedProjectsConfiguration": [], 9 | "DiscoveryPatterns": [], 10 | "Assets": [] 11 | } -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/staticwebassets/msbuild.build.BackendUygulama.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.BackendUygulama.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.BackendUygulama.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17340781373667042 -------------------------------------------------------------------------------- /BackendUygulama/BackendUygulama/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17340823980057907 -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/BirimTesti.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | false 9 | true 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/BackendUygulama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/BackendUygulama -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/BackendUygulama.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/BackendUygulama.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/BackendUygulama.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/BackendUygulama.pdb -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/BackendUygulama.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "8.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Reflection.NullabilityInfoContext.IsSupported": true, 17 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/BirimTesti.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/BirimTesti.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/BirimTesti.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/BirimTesti.pdb -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/BirimTesti.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "8.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.Reflection.NullabilityInfoContext.IsSupported": true, 16 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Castle.Core.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/CoverletSourceRootsMapping_BirimTesti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/CoverletSourceRootsMapping_BirimTesti -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Moq.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/MySqlConnector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/MySqlConnector.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/NUnit3.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/NUnit3.TestAdapter.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/NUnit3.TestAdapter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/NUnit3.TestAdapter.pdb -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "ConnectionStrings": { 9 | "LocalConnection": "server=localhost;database=scrumboarddb;user=scrumboardadmin;password=asd123" 10 | }, 11 | "AllowedHosts": "*", 12 | "Jwt": { 13 | "Issuer": "localhost", 14 | "Audience": "localhost", 15 | "Key": "AUniquekeygeneratedbyemirozturk" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/nunit.engine.api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/nunit.engine.api.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/nunit.engine.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/nunit.engine.core.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/nunit.engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/nunit.engine.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/nunit.framework.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/testcentric.engine.metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/testcentric.engine.metadata.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/testhost.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("BirimTesti")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d5694acdb2ce701d7d5edbd27928dbed19d48707")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("BirimTesti")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("BirimTesti")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2397b06670cb52900d509356368e224060b3a02bd493133593318ca9e88b9382 2 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = BirimTesti 11 | build_property.ProjectDir = /Users/emirozturk/Desktop/GitHub/C--Programlama-2024/BackendUygulama/BirimTesti/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::NUnit.Framework; 3 | global using global::System; 4 | global using global::System.Collections.Generic; 5 | global using global::System.IO; 6 | global using global::System.Linq; 7 | global using global::System.Net.Http; 8 | global using global::System.Threading; 9 | global using global::System.Threading.Tasks; 10 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.assets.cache -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ee9cf4b6c4d8da98f81558d15f43c6356f53cad1b9245f375eeec649f1d565fd 2 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.csproj.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.csproj.Up2Date -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 66a7598a867ee7a02a3135ef5cce9ef7208d87ff0db3af185902970033a3b0d6 2 | -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.pdb -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/BirimTesti.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/*":"https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/d5694acdb2ce701d7d5edbd27928dbed19d48707/*"}} -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/ref/BirimTesti.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/obj/Debug/net8.0/ref/BirimTesti.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/Debug/net8.0/refint/BirimTesti.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/BackendUygulama/BirimTesti/obj/Debug/net8.0/refint/BirimTesti.dll -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17340823979849784 -------------------------------------------------------------------------------- /BackendUygulama/BirimTesti/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17340824614767871 -------------------------------------------------------------------------------- /BackendUygulama/Migration.txt: -------------------------------------------------------------------------------- 1 | dotnet add package Pomelo.EntityFrameworkCore.MySql 2 | dotnet add package Microsoft.EntityFrameworkCore.Design 3 | 4 | dotnet ef dbcontext scaffold "Server=localhost;Database=scrumboarddb;User=scrumboardadmin;Password=asd123;" Pomelo.EntityFrameworkCore.MySql -o Models 5 | -------------------------------------------------------------------------------- /Sunumlar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Sunumlar/.DS_Store -------------------------------------------------------------------------------- /Sunumlar/1-Ders İşleyişi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Sunumlar/1-Ders İşleyişi.pdf -------------------------------------------------------------------------------- /Sunumlar/2-C# Sözdizimi.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Sunumlar/2-C# Sözdizimi.key -------------------------------------------------------------------------------- /Sunumlar/3-Koleksiyonlar ve Genel Sınıflar.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Sunumlar/3-Koleksiyonlar ve Genel Sınıflar.key -------------------------------------------------------------------------------- /Sunumlar/4-Dosyalama, Path, File, Directory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Sunumlar/4-Dosyalama, Path, File, Directory.pdf -------------------------------------------------------------------------------- /Sunumlar/5-Birim testi ve performans analizi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Sunumlar/5-Birim testi ve performans analizi.pdf -------------------------------------------------------------------------------- /Sunumlar/6-Lambda İfadeleri ve LINQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Sunumlar/6-Lambda İfadeleri ve LINQ.pdf -------------------------------------------------------------------------------- /Sunumlar/7-Backend Oluşturma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Sunumlar/7-Backend Oluşturma.pdf -------------------------------------------------------------------------------- /Uygulama2/.idea/.idea.Uygulama2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Rider ignored files 5 | /projectSettingsUpdater.xml 6 | /.idea.Uygulama2.iml 7 | /modules.xml 8 | /contentModel.xml 9 | # Editor-based HTTP Client requests 10 | /httpRequests/ 11 | # Datasource local storage ignored files 12 | /dataSources/ 13 | /dataSources.local.xml 14 | -------------------------------------------------------------------------------- /Uygulama2/.idea/.idea.Uygulama2/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Uygulama2/.idea/.idea.Uygulama2/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Uygulama2/.idea/.idea.Uygulama2/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Uygulama2", "Uygulama2\Uygulama2.csproj", "{8D71607A-2EAB-4A4C-BC73-0C7F519DA3F6}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Any CPU = Debug|Any CPU 8 | Release|Any CPU = Release|Any CPU 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {8D71607A-2EAB-4A4C-BC73-0C7F519DA3F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 12 | {8D71607A-2EAB-4A4C-BC73-0C7F519DA3F6}.Debug|Any CPU.Build.0 = Debug|Any CPU 13 | {8D71607A-2EAB-4A4C-BC73-0C7F519DA3F6}.Release|Any CPU.ActiveCfg = Release|Any CPU 14 | {8D71607A-2EAB-4A4C-BC73-0C7F519DA3F6}.Release|Any CPU.Build.0 = Release|Any CPU 15 | EndGlobalSection 16 | EndGlobal 17 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/Uygulama2.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/bin/Debug/net8.0/Uygulama2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama2/Uygulama2/bin/Debug/net8.0/Uygulama2 -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/bin/Debug/net8.0/Uygulama2.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "Uygulama2/1.0.0": { 10 | "runtime": { 11 | "Uygulama2.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Uygulama2/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/bin/Debug/net8.0/Uygulama2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama2/Uygulama2/bin/Debug/net8.0/Uygulama2.dll -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/bin/Debug/net8.0/Uygulama2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama2/Uygulama2/bin/Debug/net8.0/Uygulama2.pdb -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/bin/Debug/net8.0/Uygulama2.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0" 7 | }, 8 | "configProperties": { 9 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("Uygulama2")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+59cccfbc8e815adc40ccf17d65621f3e955150e2")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("Uygulama2")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("Uygulama2")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 44e5a8995cf5cda70d16eb3bf789d2f49ce74105f4fe184ef298a03b38f7d805 2 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = Uygulama2 11 | build_property.ProjectDir = /Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama2/Uygulama2/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.assets.cache -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b15075b26b35a47ba6b82621952532864bb84396f0c4298aca0cd297e8607513 2 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.dll -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f65cdc241e1eecb9ad9bb9dfc60cffc2e9bb3f2517b65bfce984d1ed9c39a52e 2 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.pdb -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/Uygulama2.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/*":"https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/59cccfbc8e815adc40ccf17d65621f3e955150e2/*"}} -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama2/Uygulama2/obj/Debug/net8.0/apphost -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/ref/Uygulama2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama2/Uygulama2/obj/Debug/net8.0/ref/Uygulama2.dll -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Debug/net8.0/refint/Uygulama2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama2/Uygulama2/obj/Debug/net8.0/refint/Uygulama2.dll -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Uygulama2.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /Users/emirozturk/.nuget/packages/ 8 | /Users/emirozturk/.nuget/packages/ 9 | PackageReference 10 | 6.10.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/Uygulama2.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "0X4gkeMbM50=", 4 | "success": true, 5 | "projectFilePath": "/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama2/Uygulama2/Uygulama2.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/project.packagespec.json: -------------------------------------------------------------------------------- 1 | "restore":{"projectUniqueName":"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama2/Uygulama2/Uygulama2.csproj","projectName":"Uygulama2","projectPath":"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama2/Uygulama2/Uygulama2.csproj","outputPath":"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama2/Uygulama2/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/8.0.303/PortableRuntimeIdentifierGraph.json"}} -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272622077210263 -------------------------------------------------------------------------------- /Uygulama2/Uygulama2/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272622077210263 -------------------------------------------------------------------------------- /Uygulama3/.idea/.idea.Uygulama3/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Rider ignored files 5 | /modules.xml 6 | /contentModel.xml 7 | /.idea.Uygulama3.iml 8 | /projectSettingsUpdater.xml 9 | # Editor-based HTTP Client requests 10 | /httpRequests/ 11 | # Datasource local storage ignored files 12 | /dataSources/ 13 | /dataSources.local.xml 14 | -------------------------------------------------------------------------------- /Uygulama3/.idea/.idea.Uygulama3/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Uygulama3/.idea/.idea.Uygulama3/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Uygulama3/.idea/.idea.Uygulama3/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/TestProject1.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | false 9 | true 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/UnitTest1.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | 3 | namespace TestProject1; 4 | 5 | public class Tests 6 | { 7 | [SetUp] 8 | public void Setup() 9 | { 10 | } 11 | 12 | [Test] 13 | public void PerformansTesti() 14 | { 15 | Stopwatch sw = new Stopwatch(); 16 | sw.Start(); 17 | Deneme.Metot(); 18 | sw.Stop(); 19 | var sure = sw.ElapsedMilliseconds; 20 | if(sure < 5000)Assert.Pass(); 21 | else Assert.Fail($"Çok yavaş {sure}"); 22 | } 23 | } -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/CoverletSourceRootsMapping_TestProject1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/CoverletSourceRootsMapping_TestProject1 -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/NUnit3.TestAdapter.pdb -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/TestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/TestProject1.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/TestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/TestProject1.pdb -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/TestProject1.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0" 7 | }, 8 | "configProperties": { 9 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Uygulama3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Uygulama3 -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Uygulama3.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "Uygulama3/1.0.0": { 10 | "runtime": { 11 | "Uygulama3.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Uygulama3/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Uygulama3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Uygulama3.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Uygulama3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/Uygulama3.pdb -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/Uygulama3.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0" 7 | }, 8 | "configProperties": { 9 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/nunit.engine.api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/nunit.engine.api.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/nunit.engine.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/nunit.engine.core.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/nunit.engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/nunit.engine.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/nunit.framework.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/testcentric.engine.metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/testcentric.engine.metadata.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/testhost.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProj.494AA513.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/obj/Debug/net8.0/TestProj.494AA513.Up2Date -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("TestProject1")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+93f2ab3fa8179bbc053be0eb588c1710be597d37")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("TestProject1")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("TestProject1")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0a61a8fc4835aadd13010f23150cda41c2349b8eac07016e88d385018829f9cf 2 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = TestProject1 11 | build_property.ProjectDir = /Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama3/TestProject1/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::NUnit.Framework; 3 | global using global::System; 4 | global using global::System.Collections.Generic; 5 | global using global::System.IO; 6 | global using global::System.Linq; 7 | global using global::System.Net.Http; 8 | global using global::System.Threading; 9 | global using global::System.Threading.Tasks; 10 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.assets.cache -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 98cde633ce357fbe90a9c17da69d2897c5ebe00d30b76efee2ce44855dff4bff 2 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f3d6e4c1f2cdaf441bcd26e2877f648c183b6f4953e095a72145e069e72b7ffc 2 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.pdb -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/TestProject1.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/*":"https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/93f2ab3fa8179bbc053be0eb588c1710be597d37/*"}} -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/ref/TestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/obj/Debug/net8.0/ref/TestProject1.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/Debug/net8.0/refint/TestProject1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/TestProject1/obj/Debug/net8.0/refint/TestProject1.dll -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/TestProject1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17284786401133631 -------------------------------------------------------------------------------- /Uygulama3/TestProject1/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17284786401133631 -------------------------------------------------------------------------------- /Uygulama3/Uygulama3.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Uygulama3", "Uygulama3\Uygulama3.csproj", "{8F2B8267-084E-4CF1-83F0-2EAF9D74EB88}" 4 | EndProject 5 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestProject1", "TestProject1\TestProject1.csproj", "{7AA45A05-E35B-4464-B14F-BDD2E45C4962}" 6 | EndProject 7 | Global 8 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 9 | Debug|Any CPU = Debug|Any CPU 10 | Release|Any CPU = Release|Any CPU 11 | EndGlobalSection 12 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 13 | {8F2B8267-084E-4CF1-83F0-2EAF9D74EB88}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 14 | {8F2B8267-084E-4CF1-83F0-2EAF9D74EB88}.Debug|Any CPU.Build.0 = Debug|Any CPU 15 | {8F2B8267-084E-4CF1-83F0-2EAF9D74EB88}.Release|Any CPU.ActiveCfg = Release|Any CPU 16 | {8F2B8267-084E-4CF1-83F0-2EAF9D74EB88}.Release|Any CPU.Build.0 = Release|Any CPU 17 | {7AA45A05-E35B-4464-B14F-BDD2E45C4962}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 18 | {7AA45A05-E35B-4464-B14F-BDD2E45C4962}.Debug|Any CPU.Build.0 = Debug|Any CPU 19 | {7AA45A05-E35B-4464-B14F-BDD2E45C4962}.Release|Any CPU.ActiveCfg = Release|Any CPU 20 | {7AA45A05-E35B-4464-B14F-BDD2E45C4962}.Release|Any CPU.Build.0 = Release|Any CPU 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3.sln.DotSettings.user: -------------------------------------------------------------------------------- 1 |  2 | <SessionState ContinuousTestingMode="0" IsActive="True" Name="PerformansTesti" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"> 3 | <TestAncestor> 4 | <TestId>NUnit3x::7AA45A05-E35B-4464-B14F-BDD2E45C4962::net8.0::TestProject1.Tests.PerformansTesti</TestId> 5 | </TestAncestor> 6 | </SessionState> -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/Program.cs: -------------------------------------------------------------------------------- 1 | class Number 2 | { 3 | public int Value { get; set; } 4 | 5 | public Number(int n) => Value = n; 6 | 7 | public void degerArttir() 8 | { 9 | Value++; 10 | } 11 | } 12 | 13 | public class Deneme 14 | { 15 | public static void Metot() 16 | { 17 | var yeniSayi = new Number(0); 18 | for (var i = 0; i < 500_000_000; i++) 19 | { 20 | yeniSayi.Value=i+1; 21 | if (yeniSayi.Value > 500_000_000 - 2) 22 | Console.WriteLine(yeniSayi.Value); 23 | } 24 | } 25 | } 26 | 27 | class main 28 | { 29 | public static void Main(string[] args) 30 | { 31 | Deneme.Metot(); 32 | } 33 | } -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/Uygulama3.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/bin/Debug/net8.0/Uygulama3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/Uygulama3/bin/Debug/net8.0/Uygulama3 -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/bin/Debug/net8.0/Uygulama3.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "Uygulama3/1.0.0": { 10 | "runtime": { 11 | "Uygulama3.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Uygulama3/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/bin/Debug/net8.0/Uygulama3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/Uygulama3/bin/Debug/net8.0/Uygulama3.dll -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/bin/Debug/net8.0/Uygulama3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/Uygulama3/bin/Debug/net8.0/Uygulama3.pdb -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/bin/Debug/net8.0/Uygulama3.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0" 7 | }, 8 | "configProperties": { 9 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("Uygulama3")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+93f2ab3fa8179bbc053be0eb588c1710be597d37")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("Uygulama3")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("Uygulama3")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 68ce28dac67c5926d4e28634533da251f3f14b9ec671e5f367642deb965970aa 2 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = Uygulama3 11 | build_property.ProjectDir = /Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama3/Uygulama3/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.assets.cache -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d353a03926b3cab0fd899a8203253addd01436343357b515613f103437326ba8 2 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.dll -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 70c5c612987f02484e1ff49ccfd55039633f1021bc50968873a948689838b182 2 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.pdb -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/Uygulama3.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/*":"https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/93f2ab3fa8179bbc053be0eb588c1710be597d37/*"}} -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/Uygulama3/obj/Debug/net8.0/apphost -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/ref/Uygulama3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/Uygulama3/obj/Debug/net8.0/ref/Uygulama3.dll -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Debug/net8.0/refint/Uygulama3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama3/Uygulama3/obj/Debug/net8.0/refint/Uygulama3.dll -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Uygulama3.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /Users/emirozturk/.nuget/packages/ 8 | /Users/emirozturk/.nuget/packages/ 9 | PackageReference 10 | 6.10.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/Uygulama3.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "hlFEYmdFbew=", 4 | "success": true, 5 | "projectFilePath": "/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama3/Uygulama3/Uygulama3.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/project.packagespec.json: -------------------------------------------------------------------------------- 1 | "restore":{"projectUniqueName":"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama3/Uygulama3/Uygulama3.csproj","projectName":"Uygulama3","projectPath":"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama3/Uygulama3/Uygulama3.csproj","outputPath":"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama3/Uygulama3/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/8.0.303/PortableRuntimeIdentifierGraph.json"}} -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17284774513925335 -------------------------------------------------------------------------------- /Uygulama3/Uygulama3/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17284774513925335 -------------------------------------------------------------------------------- /Uygulama4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/.DS_Store -------------------------------------------------------------------------------- /Uygulama4/.idea/.idea.Uygulama4/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Rider ignored files 5 | /.idea.Uygulama4.iml 6 | /projectSettingsUpdater.xml 7 | /modules.xml 8 | /contentModel.xml 9 | # Editor-based HTTP Client requests 10 | /httpRequests/ 11 | # Datasource local storage ignored files 12 | /dataSources/ 13 | /dataSources.local.xml 14 | -------------------------------------------------------------------------------- /Uygulama4/.idea/.idea.Uygulama4/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Uygulama4/.idea/.idea.Uygulama4/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Uygulama4/.idea/.idea.Uygulama4/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Uygulama4", "Uygulama4\Uygulama4.csproj", "{74018719-EA8D-408D-8563-0D4B441683EE}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Any CPU = Debug|Any CPU 8 | Release|Any CPU = Release|Any CPU 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {74018719-EA8D-408D-8563-0D4B441683EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 12 | {74018719-EA8D-408D-8563-0D4B441683EE}.Debug|Any CPU.Build.0 = Debug|Any CPU 13 | {74018719-EA8D-408D-8563-0D4B441683EE}.Release|Any CPU.ActiveCfg = Release|Any CPU 14 | {74018719-EA8D-408D-8563-0D4B441683EE}.Release|Any CPU.Build.0 = Release|Any CPU 15 | EndGlobalSection 16 | EndGlobal 17 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/Uygulama4.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/bin/Debug/net8.0/Uygulama4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/Uygulama4/bin/Debug/net8.0/Uygulama4 -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/bin/Debug/net8.0/Uygulama4.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "Uygulama4/1.0.0": { 10 | "runtime": { 11 | "Uygulama4.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "Uygulama4/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/bin/Debug/net8.0/Uygulama4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/Uygulama4/bin/Debug/net8.0/Uygulama4.dll -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/bin/Debug/net8.0/Uygulama4.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/Uygulama4/bin/Debug/net8.0/Uygulama4.pdb -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/bin/Debug/net8.0/Uygulama4.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "8.0.0" 7 | }, 8 | "configProperties": { 9 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("Uygulama4")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+93f2ab3fa8179bbc053be0eb588c1710be597d37")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("Uygulama4")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("Uygulama4")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 95f1d2fee1f642622c52c106046cf689de1c0a2a4ed5831facf10f5aab62b3af 2 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = Uygulama4 11 | build_property.ProjectDir = /Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama4/Uygulama4/ 12 | build_property.EnableComHosting = 13 | build_property.EnableGeneratedComInterfaceComImportInterop = 14 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.assets.cache -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 17a2106c1a9d2303cd87831867613d4eba9c4ce56cce677016ab89e9b6d1032f 2 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.dll -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | ff0782dde87ee6c489a8b7997e156c35c5e65603032a1c1a282190078a967958 2 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.pdb -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/Uygulama4.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/*":"https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/93f2ab3fa8179bbc053be0eb588c1710be597d37/*"}} -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/Uygulama4/obj/Debug/net8.0/apphost -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/ref/Uygulama4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/Uygulama4/obj/Debug/net8.0/ref/Uygulama4.dll -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Debug/net8.0/refint/Uygulama4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirozturk/C--Programlama-2024/6bb62885156ffdab38d7a55338b0b2cee76ecb19/Uygulama4/Uygulama4/obj/Debug/net8.0/refint/Uygulama4.dll -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Uygulama4.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /Users/emirozturk/.nuget/packages/ 8 | /Users/emirozturk/.nuget/packages/ 9 | PackageReference 10 | 6.10.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/Uygulama4.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "+8oZMNbLDcs=", 4 | "success": true, 5 | "projectFilePath": "/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama4/Uygulama4/Uygulama4.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/project.packagespec.json: -------------------------------------------------------------------------------- 1 | "restore":{"projectUniqueName":"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama4/Uygulama4/Uygulama4.csproj","projectName":"Uygulama4","projectPath":"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama4/Uygulama4/Uygulama4.csproj","outputPath":"/Users/emirozturk/Desktop/GitHub/C--Programlama-2024/Uygulama4/Uygulama4/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/8.0.303/PortableRuntimeIdentifierGraph.json"}} -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17284741626330383 -------------------------------------------------------------------------------- /Uygulama4/Uygulama4/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17284741626330383 --------------------------------------------------------------------------------