commit aa8d20c08d0c8ddf6e8ec14a2703cd097d58db94 Author: IsmailovRovshan Date: Fri Dec 6 00:46:46 2024 +0400 Создание проекта diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..acc239f --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Игнорирование папок .idea +.idea/ +**/.idea/ + +# Игнорирование папок obj +obj/ +**/obj/ + +# Игнорирование папки bin +bin/ +**/bin/ + +# Игнорирование файла connectionString.txt во всех папках +**/connectionString.txt + +# Игнорирование файлов пользовательских настроек +*.suo +*.user +*.userosscache +*.sln.docstates + +# Игнорирование временных файлов +*.log +*.tmp + +# Игнорирование файлов кэша +*.cache +*.csproj.user + +.vs/ \ No newline at end of file diff --git a/Address Directory/Address Directory.sln b/Address Directory/Address Directory.sln new file mode 100644 index 0000000..d10ce19 --- /dev/null +++ b/Address Directory/Address Directory.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35312.102 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain", "Domain\Domain.csproj", "{08EF65A6-323C-4B7D-8B2E-97914E137B21}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {08EF65A6-323C-4B7D-8B2E-97914E137B21}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {08EF65A6-323C-4B7D-8B2E-97914E137B21}.Debug|Any CPU.Build.0 = Debug|Any CPU + {08EF65A6-323C-4B7D-8B2E-97914E137B21}.Release|Any CPU.ActiveCfg = Release|Any CPU + {08EF65A6-323C-4B7D-8B2E-97914E137B21}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A9A39B0B-5A75-4A9A-85F3-A478B6314037} + EndGlobalSection +EndGlobal diff --git a/Address Directory/Address Directory/Class1.cs b/Address Directory/Address Directory/Class1.cs new file mode 100644 index 0000000..539a948 --- /dev/null +++ b/Address Directory/Address Directory/Class1.cs @@ -0,0 +1,7 @@ +namespace Address_Directory +{ + public class Class1 + { + + } +} diff --git a/Address Directory/Address Directory/Domain.csproj b/Address Directory/Address Directory/Domain.csproj new file mode 100644 index 0000000..61a624b --- /dev/null +++ b/Address Directory/Address Directory/Domain.csproj @@ -0,0 +1,10 @@ + + + + net8.0 + Address_Directory + enable + enable + + + diff --git a/Address Directory/Domain/Class1.cs b/Address Directory/Domain/Class1.cs new file mode 100644 index 0000000..eb40a3e --- /dev/null +++ b/Address Directory/Domain/Class1.cs @@ -0,0 +1,7 @@ +namespace Domain +{ + public class Class1 + { + + } +} diff --git a/Address Directory/Domain/Domain.csproj b/Address Directory/Domain/Domain.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/Address Directory/Domain/Domain.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + +