commit 60787b56a0b801253847b2dc75d6611af06a4635 Author: RUTYA Date: Sat Oct 19 22:38:28 2024 +0300 . diff --git a/Demo.sln b/Demo.sln new file mode 100644 index 0000000..ce1f93c --- /dev/null +++ b/Demo.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}") = "Demo", "Demo\Demo.csproj", "{983820F6-FF31-4B3A-8593-831BC3904E80}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {983820F6-FF31-4B3A-8593-831BC3904E80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {983820F6-FF31-4B3A-8593-831BC3904E80}.Debug|Any CPU.Build.0 = Debug|Any CPU + {983820F6-FF31-4B3A-8593-831BC3904E80}.Release|Any CPU.ActiveCfg = Release|Any CPU + {983820F6-FF31-4B3A-8593-831BC3904E80}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4F43A963-447C-4FCB-BB78-8D315EC0F1D6} + EndGlobalSection +EndGlobal diff --git a/Demo/Data/Exceptions/DataAlreadyExistsException.cs b/Demo/Data/Exceptions/DataAlreadyExistsException.cs new file mode 100644 index 0000000..2edda21 --- /dev/null +++ b/Demo/Data/Exceptions/DataAlreadyExistsException.cs @@ -0,0 +1,10 @@ +using System; + +namespace Demo.Data.Exceptions +{ + + public class DataAlreadyExistsException : Exception + { + public DataAlreadyExistsException(string message) : base(message) { } + } +} diff --git a/Demo/Data/Exceptions/DataNotFoundException.cs b/Demo/Data/Exceptions/DataNotFoundException.cs new file mode 100644 index 0000000..106201e --- /dev/null +++ b/Demo/Data/Exceptions/DataNotFoundException.cs @@ -0,0 +1,10 @@ +using System; + +namespace Demo.Data.Exceptions +{ + + public class DataNotFoundException : Exception + { + public DataNotFoundException(string message) : base(message) { } + } +} diff --git a/Demo/Data/Exceptions/GuidNotFoundException.cs b/Demo/Data/Exceptions/GuidNotFoundException.cs new file mode 100644 index 0000000..dd38dc1 --- /dev/null +++ b/Demo/Data/Exceptions/GuidNotFoundException.cs @@ -0,0 +1,10 @@ +using System; + +namespace Demo.Data.Exceptions +{ + + public class GuidNotFoundException : Exception + { + public GuidNotFoundException(string message) : base(message) { } + } +} diff --git a/Demo/Data/Exceptions/InvalidGroupIdException.cs b/Demo/Data/Exceptions/InvalidGroupIdException.cs new file mode 100644 index 0000000..5c92aef --- /dev/null +++ b/Demo/Data/Exceptions/InvalidGroupIdException.cs @@ -0,0 +1,10 @@ +using System; + +namespace Demo.Data.Exceptions +{ + + public class InvalidGroupIdException : Exception + { + public InvalidGroupIdException(string message) : base(message) { } + } +} diff --git a/Demo/Data/LocalData/Entity/Group.cs b/Demo/Data/LocalData/Entity/Group.cs new file mode 100644 index 0000000..79e69ea --- /dev/null +++ b/Demo/Data/LocalData/Entity/Group.cs @@ -0,0 +1,8 @@ +namespace Demo.Domain.Models +{ + public class GroupLocalEntity + { + public int Id { get; set; } + public string Name { get; set; } + } +} diff --git a/Demo/Data/LocalData/Entity/Presence.cs b/Demo/Data/LocalData/Entity/Presence.cs new file mode 100644 index 0000000..7905fc0 --- /dev/null +++ b/Demo/Data/LocalData/Entity/Presence.cs @@ -0,0 +1,12 @@ +using System; + +namespace Demo.domain.Models +{ + internal class PresenceLocalEntity + { + public required Guid UserGuid { get; set; } + public bool IsAttedance { get; set; } = true; + public required DateOnly Date { get; set; } + public required int LessonNumber { get; set; } + } +} diff --git a/Demo/Data/LocalData/Entity/User.cs b/Demo/Data/LocalData/Entity/User.cs new file mode 100644 index 0000000..ab18efe --- /dev/null +++ b/Demo/Data/LocalData/Entity/User.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Demo.domain.Models +{ + public class UserLocalEntity : IEquatable + { + + public required string FIO { get; set; } + public Guid Guid { get; set; } + + public required int GroupID { get; set; } + + + + public bool Equals(UserLocalEntity? other) + { + if (other == null) return false; + return this.Guid.Equals(other.Guid); + } + } +} \ No newline at end of file diff --git a/Demo/Data/LocalData/LocalStaticData.cs b/Demo/Data/LocalData/LocalStaticData.cs new file mode 100644 index 0000000..49ef601 --- /dev/null +++ b/Demo/Data/LocalData/LocalStaticData.cs @@ -0,0 +1,31 @@ +using Demo.domain.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.NetworkInformation; +using System.Text; +using System.Threading.Tasks; + +namespace Demo.Data.LocalData +{ + public static class LocalStaticData + { + public static List groups => new List + + { + new GroupLocalEntity{ Id = 1, Name = "ИП1-21" }, + new GroupLocalEntity{ Id = 2, Name = "ИП1-22" }, + new GroupLocalEntity{ Id = 3, Name = "ИП1-23" }, + }; + + public static List users => new List + { + new UserLocalEntity{Guid=Guid.Parse("e6b9964d-ea9f-420a-84b9-af9633bbfab9"), FIO = "RandomFio", GroupID = 1 }, + new UserLocalEntity{Guid=Guid.Parse("8388d931-5bef-41be-a152-78f1aca980ed"), FIO = "RandomFio1", GroupID = 2 }, + new UserLocalEntity{Guid=Guid.Parse("ed174548-49ed-4503-a902-c970cbf27173"), FIO = "RandomFio2", GroupID = 3 }, + new UserLocalEntity{Guid=Guid.Parse("614c0a23-5bd5-43ae-b48e-d5750afbc282"), FIO = "RandomFio3", GroupID = 1 }, + new UserLocalEntity{Guid=Guid.Parse("efcc1473-c116-4244-b3f7-f2341a5c3003"), FIO = "RandomFio4", GroupID = 2 }, + new UserLocalEntity{Guid=Guid.Parse("60640fb3-ace2-4cad-81d5-a0a58bc2dbbd"), FIO = "RandomFio5", GroupID = 3 }, + }; + } +} \ No newline at end of file diff --git a/Demo/Data/Repository/GroupRepositoryImpl.cs b/Demo/Data/Repository/GroupRepositoryImpl.cs new file mode 100644 index 0000000..3e92979 --- /dev/null +++ b/Demo/Data/Repository/GroupRepositoryImpl.cs @@ -0,0 +1,84 @@ +using Demo.Data.LocalData; +using Demo.domain.Models; +using Demo.Data.Exceptions; +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Demo.Data.Repository +{ + public class GroupRepositoryImpl + { + private List _groups; + + public GroupRepositoryImpl() + { + _groups = LocalStaticData.groups; + } + + public List GetAllGroups() + { + return _groups; + } + + public void AddGroup(int id, string name) + { + try + { + if (_groups.Any(g => g.Id == id)) + { + throw new DataAlreadyExistsException($"Группа с ID {id} уже существует."); + } + + _groups.Add(new GroupLocalEntity { Id = id, Name = name }); + } + catch (DataAlreadyExistsException ex) + { + Console.WriteLine($"Ошибка: {ex.Message}"); + } + } + + public void UpdateGroup(int id, string newName) + { + try + { + var group = _groups.FirstOrDefault(g => g.Id == id); + + if (group == null) + { + throw new InvalidGroupIdException($"Группа с ID {id} не существует."); + } + + group.Name = newName; + } + catch (InvalidGroupIdException ex) + { + Console.WriteLine($"Ошибка: {ex.Message}"); + } + catch (DataNotFoundException ex) + { + Console.WriteLine($"Ошибка: {ex.Message}"); + } + } + + public void DeleteGroupById(int id) + { + try + { + var group = _groups.FirstOrDefault(g => g.Id == id); + if (group != null) + { + _groups.Remove(group); + } + else + { + throw new DataNotFoundException($"Группа с ID {id} не найдена."); + } + } + catch (DataNotFoundException ex) + { + Console.WriteLine($"Ошибка: {ex.Message}"); + } + } + } +} diff --git a/Demo/Data/Repository/UserRepositoryImpl.cs b/Demo/Data/Repository/UserRepositoryImpl.cs new file mode 100644 index 0000000..ae692ac --- /dev/null +++ b/Demo/Data/Repository/UserRepositoryImpl.cs @@ -0,0 +1,66 @@ +using Demo.Data.LocalData; +using Demo.domain.Models; +using Demo.Data.Exceptions; +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Demo.Data.Repository +{ + public class UserRepositoryImpl + { + private List _users; + + public UserRepositoryImpl() + { + _users = LocalStaticData.users; + } + + public IEnumerable GetAllUsers => _users; + + public void DeleteUserByGuid(Guid guid) + { + var user = _users.FirstOrDefault(u => u.Guid == guid); + if (user != null) + { + _users.Remove(user); + } + else + { + throw new GuidNotFoundException($"Пользователь с GUID {guid} не найден."); + } + } + + + public UserLocalEntity? FindUserByGuid(Guid guid) + { + var user = _users.FirstOrDefault(u => u.Guid == guid); + if (user == null) + { + throw new GuidNotFoundException($"Пользователь с GUID {guid} не найден."); + } + return user; + } + + + public void UpdateUser(string guidOrInt, string newFIO, int newGroupID) + { + Guid guid; + if (!Guid.TryParse(guidOrInt, out guid)) + { + throw new ArgumentException($"Значение '{guidOrInt}' не является корректным GUID."); + } + + var user = _users.FirstOrDefault(u => u.Guid == guid); + if (user != null) + { + user.FIO = newFIO; + user.GroupID = newGroupID; + } + else + { + throw new GuidNotFoundException($"Пользователь с GUID {guid} не найден."); + } + } + } +} diff --git a/Demo/Demo.csproj b/Demo/Demo.csproj new file mode 100644 index 0000000..1ea2759 --- /dev/null +++ b/Demo/Demo.csproj @@ -0,0 +1,14 @@ + + + + Exe + net8.0 + enable + enable + + + + + + + diff --git a/Demo/Domain/Models/Group.cs b/Demo/Domain/Models/Group.cs new file mode 100644 index 0000000..d4ec69c --- /dev/null +++ b/Demo/Domain/Models/Group.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Demo.domain.Models +{ + public class GroupLocalEntity + { + public required int Id { get; set; } + public required string Name { get; set; } + } +} \ No newline at end of file diff --git a/Demo/Domain/Models/Presence.cs b/Demo/Domain/Models/Presence.cs new file mode 100644 index 0000000..870acdf --- /dev/null +++ b/Demo/Domain/Models/Presence.cs @@ -0,0 +1,10 @@ +namespace Demo.domain.Models +{ + public class Presence + { + public required Guid UserGuid { get; set; } + public bool IsAttedance { get; set; } = true; + public required DateOnly Date { get; set; } + public required int LessonNumber { get; set; } + } +} diff --git a/Demo/Domain/Models/User.cs b/Demo/Domain/Models/User.cs new file mode 100644 index 0000000..da9cb87 --- /dev/null +++ b/Demo/Domain/Models/User.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; + +namespace Demo.domain.Models +{ + public class User + { + public required string FIO { get; set; } + public Guid Guid { get; set; } + public required Group Group { get; set; } + } +} \ No newline at end of file diff --git a/Demo/Domain/UseCase/GroupUseCase.cs b/Demo/Domain/UseCase/GroupUseCase.cs new file mode 100644 index 0000000..a7e260e --- /dev/null +++ b/Demo/Domain/UseCase/GroupUseCase.cs @@ -0,0 +1,30 @@ +using Demo.Data.Repository; +using Demo.domain.Models; + +namespace Demo.Domain.UseCase +{ + public class GroupUseCase + { + private readonly GroupRepositoryImpl _repositoryGroupImpl; + + public GroupUseCase(GroupRepositoryImpl repositoryGroupImpl) + { + _repositoryGroupImpl = repositoryGroupImpl; + } + + public List GetAllGroups() + { + return _repositoryGroupImpl.GetAllGroups(); + } + + public void AddGroup(int id, string name) + { + _repositoryGroupImpl.AddGroup(id, name); + } + + public void UpdateGroup(int id, string newName) + { + _repositoryGroupImpl.UpdateGroup(id, newName); + } + } +} diff --git a/Demo/Domain/UseCase/UserUseCase.cs b/Demo/Domain/UseCase/UserUseCase.cs new file mode 100644 index 0000000..4dcc8a2 --- /dev/null +++ b/Demo/Domain/UseCase/UserUseCase.cs @@ -0,0 +1,84 @@ +using Demo.Data.Repository; +using Demo.Data.Exceptions; +using Demo.Domain.Models; +using System; +using System.Collections.Generic; +using Demo.domain.Models; + +namespace Demo.Domain.UseCase +{ + public class UserUseCase + { + private readonly UserRepositoryImpl _userRepositoryImpl; + + public UserUseCase(UserRepositoryImpl userRepositoryImpl) + { + _userRepositoryImpl = userRepositoryImpl; + } + + public List GetAllUsers() + { + try + { + return new List(_userRepositoryImpl.GetAllUsers); + } + catch (Exception ex) + { + Console.WriteLine($"Ошибка при получении пользователей: {ex.Message}"); + return new List(); + } + } + + public void DeleteUserByGuid(Guid guid) + { + try + { + _userRepositoryImpl.DeleteUserByGuid(guid); + } + catch (DataNotFoundException ex) + { + Console.WriteLine($"Ошибка при удалении пользователя: {ex.Message}"); + } + catch (Exception ex) + { + Console.WriteLine($"Неизвестная ошибка: {ex.Message}"); + } + } + + public UserLocalEntity? FindUserByGuid(Guid guid) + { + try + { + return _userRepositoryImpl.FindUserByGuid(guid); + } + catch (DataNotFoundException ex) + { + Console.WriteLine($"Ошибка при поиске пользователя: {ex.Message}"); + return null; + } + catch (Exception ex) + { + Console.WriteLine($"Неизвестная ошибка: {ex.Message}"); + return null; + } + } + + public void UpdateUser(Guid guid, string newFIO, int newGroupID) + { + var users = _userRepositoryImpl.GetAllUsers; + var user = users.FirstOrDefault(u => u.Guid == guid); + + if (user != null) + { + user.FIO = newFIO; + user.GroupID = newGroupID; + } + else + { + throw new GuidNotFoundException($"Пользователь с GUID {guid} не найден."); + } + } + + + } +} diff --git a/Demo/Program.cs b/Demo/Program.cs new file mode 100644 index 0000000..ce9072c --- /dev/null +++ b/Demo/Program.cs @@ -0,0 +1,21 @@ +using Demo.Data.Repository; +using Demo.Domain.UseCase; +using Demo.UI; + +class Program +{ + static void Main(string[] args) + { + var userRepository = new UserRepositoryImpl(); + var groupRepository = new GroupRepositoryImpl(); + + var userUseCase = new UserUseCase(userRepository); + var groupUseCase = new GroupUseCase(groupRepository); + + var userConsole = new UserConsole(userUseCase); + var groupConsole = new GroupConsole(groupUseCase); + + var mainMenu = new MainMenu(userConsole, groupConsole); + mainMenu.ShowMenu(); + } +} diff --git a/Demo/UI/GroupConsole.cs b/Demo/UI/GroupConsole.cs new file mode 100644 index 0000000..9433f92 --- /dev/null +++ b/Demo/UI/GroupConsole.cs @@ -0,0 +1,43 @@ +using Demo.Domain.UseCase; +using System; + +namespace Demo.UI +{ + public class GroupConsole + { + private readonly GroupUseCase _groupUseCase; + + public GroupConsole(GroupUseCase groupUseCase) + { + _groupUseCase = groupUseCase; + } + + public void ShowAllGroups() + { + var groups = _groupUseCase.GetAllGroups(); + foreach (var group in groups) + { + Console.WriteLine($"ID группы: {group.Id}, Название: {group.Name}"); + } + } + + public void AddGroup() + { + Console.WriteLine("Введите название группы:"); + string name = Console.ReadLine(); + Console.WriteLine("Введите ID группы:"); + var id = int.Parse(Console.ReadLine()); + + _groupUseCase.AddGroup(id, name); + Console.WriteLine("Группа успешно добавлена."); + } + + public void UpdateGroup(int groupId) + { + Console.WriteLine("Введите новое название группы:"); + string newName = Console.ReadLine(); + _groupUseCase.UpdateGroup(groupId, newName); + Console.WriteLine("Название группы успешно обновлено."); + } + } +} diff --git a/Demo/UI/MainMenu.cs b/Demo/UI/MainMenu.cs new file mode 100644 index 0000000..c276dcd --- /dev/null +++ b/Demo/UI/MainMenu.cs @@ -0,0 +1,107 @@ +using Demo.UI; +using System; + +namespace Demo.UI +{ + public class MainMenu + { + private readonly UserConsole _userConsole; + private readonly GroupConsole _groupConsole; + + public MainMenu(UserConsole userConsole, GroupConsole groupConsole) + { + _userConsole = userConsole; + _groupConsole = groupConsole; + } + + public void ShowMenu() + { + while (true) + { + Console.Clear(); + Console.WriteLine("======================================="); + Console.WriteLine("| Меню управления системой |"); + Console.WriteLine("======================================="); + Console.WriteLine("| 1. Отобразить список всех пользователей"); + Console.WriteLine("| 2. Отобразить список всех групп"); + Console.WriteLine("| 3. Создать новую группу"); + Console.WriteLine("| 4. Изменить название группы"); + Console.WriteLine("| 5. Изменить данные пользователя"); + Console.WriteLine("| 6. Удалить пользователя по GUID"); + Console.WriteLine("| 7. Найти пользователя по GUID"); + Console.WriteLine("| 8. Завершить работу"); + Console.WriteLine("======================================="); + Console.Write("Введите номер команды: "); + + string choice = Console.ReadLine(); + Console.WriteLine(); + switch (choice) + { + case "1": + _userConsole.ShowAllUsers(); + break; + case "2": + _groupConsole.ShowAllGroups(); + break; + case "3": + _groupConsole.AddGroup(); + break; + case "4": + Console.Write("Введите ID группы для изменения: "); + if (int.TryParse(Console.ReadLine(), out int groupId)) + { + _groupConsole.UpdateGroup(groupId); + } + else + { + Console.WriteLine("Ошибка: Неверный формат идентификатора группы."); + } + break; + case "5": + Console.Write("Введите GUID пользователя для обновления: "); + if (Guid.TryParse(Console.ReadLine(), out Guid userGuid)) + { + _userConsole.UpdateUser(userGuid); + } + else + { + Console.WriteLine("Ошибка: Некорректный формат GUID пользователя."); + } + break; + case "6": + Console.Write("Введите GUID пользователя для удаления: "); + if (Guid.TryParse(Console.ReadLine(), out userGuid)) + { + _userConsole.DeleteUser(userGuid); + } + else + { + Console.WriteLine("Ошибка: Некорректный формат GUID пользователя."); + } + break; + case "7": + Console.Write("Введите GUID пользователя для поиска: "); + if (Guid.TryParse(Console.ReadLine(), out userGuid)) + { + _userConsole.FindUser(userGuid); + } + else + { + Console.WriteLine("Ошибка: Некорректный формат GUID пользователя."); + } + break; + case "8": + Console.WriteLine("Завершение работы. До свидания!"); + return; + default: + Console.WriteLine("Ошибка: Выберите корректный пункт меню."); + break; + } + + Console.WriteLine(); + Console.WriteLine("Нажмите любую клавишу, чтобы вернуться в меню..."); + Console.ReadKey(); + } + } + } +} diff --git a/Demo/UI/UserConsole.cs b/Demo/UI/UserConsole.cs new file mode 100644 index 0000000..a376868 --- /dev/null +++ b/Demo/UI/UserConsole.cs @@ -0,0 +1,60 @@ +using Demo.Domain.UseCase; +using System; + +namespace Demo.UI +{ + public class UserConsole + { + private readonly UserUseCase _userUseCase; + + public UserConsole(UserUseCase userUseCase) + { + _userUseCase = userUseCase; + } + + public void ShowAllUsers() + { + var users = _userUseCase.GetAllUsers(); + if (users.Count == 0) + { + Console.WriteLine("Пользователи не найдены."); + return; + } + + foreach (var user in users) + { + Console.WriteLine($"GUID пользователя: {user.Guid}, ФИО: {user.FIO}, ID группы: {user.GroupID}"); + } + } + + public void UpdateUser(Guid userGuid) + { + Console.WriteLine("Введите новое ФИО:"); + string newFIO = Console.ReadLine(); + Console.WriteLine("Введите новый ID группы:"); + int newGroupID = int.Parse(Console.ReadLine()); + + _userUseCase.UpdateUser(userGuid, newFIO, newGroupID); + Console.WriteLine("Пользователь успешно обновлён."); + } + + public void DeleteUser(Guid userGuid) + { + _userUseCase.DeleteUserByGuid(userGuid); + Console.WriteLine("Пользователь успешно удалён."); + } + + public void FindUser(Guid userGuid) + { + var user = _userUseCase.FindUserByGuid(userGuid); + if (user != null) + { + Console.WriteLine($"Найден пользователь: ФИО: {user.FIO}, ID группы: {user.GroupID}"); + } + else + { + Console.WriteLine("Пользователь не найден."); + } + } + } +} diff --git a/Demo/bin/Debug/net8.0/Demo.deps.json b/Demo/bin/Debug/net8.0/Demo.deps.json new file mode 100644 index 0000000..34d15c4 --- /dev/null +++ b/Demo/bin/Debug/net8.0/Demo.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Demo/1.0.0": { + "runtime": { + "Demo.dll": {} + } + } + } + }, + "libraries": { + "Demo/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Demo/bin/Debug/net8.0/Demo.dll b/Demo/bin/Debug/net8.0/Demo.dll new file mode 100644 index 0000000..255d878 Binary files /dev/null and b/Demo/bin/Debug/net8.0/Demo.dll differ diff --git a/Demo/bin/Debug/net8.0/Demo.exe b/Demo/bin/Debug/net8.0/Demo.exe new file mode 100644 index 0000000..e798b27 Binary files /dev/null and b/Demo/bin/Debug/net8.0/Demo.exe differ diff --git a/Demo/bin/Debug/net8.0/Demo.pdb b/Demo/bin/Debug/net8.0/Demo.pdb new file mode 100644 index 0000000..cf33ba5 Binary files /dev/null and b/Demo/bin/Debug/net8.0/Demo.pdb differ diff --git a/Demo/bin/Debug/net8.0/Demo.runtimeconfig.json b/Demo/bin/Debug/net8.0/Demo.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/Demo/bin/Debug/net8.0/Demo.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Demo/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Demo/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/Demo/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Demo/obj/Debug/net8.0/Demo.AssemblyInfo.cs b/Demo/obj/Debug/net8.0/Demo.AssemblyInfo.cs new file mode 100644 index 0000000..c4e7b2b --- /dev/null +++ b/Demo/obj/Debug/net8.0/Demo.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Demo")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Demo")] +[assembly: System.Reflection.AssemblyTitleAttribute("Demo")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/Demo/obj/Debug/net8.0/Demo.AssemblyInfoInputs.cache b/Demo/obj/Debug/net8.0/Demo.AssemblyInfoInputs.cache new file mode 100644 index 0000000..027d67d --- /dev/null +++ b/Demo/obj/Debug/net8.0/Demo.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +eb16b2b154799358c5c37f7f25193ef306ab5592617791ff431f7a24a66875c2 diff --git a/Demo/obj/Debug/net8.0/Demo.GeneratedMSBuildEditorConfig.editorconfig b/Demo/obj/Debug/net8.0/Demo.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1612141 --- /dev/null +++ b/Demo/obj/Debug/net8.0/Demo.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Demo +build_property.ProjectDir = C:\Users\Rutmen\Desktop\presence\Demo\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Demo/obj/Debug/net8.0/Demo.GlobalUsings.g.cs b/Demo/obj/Debug/net8.0/Demo.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Demo/obj/Debug/net8.0/Demo.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Demo/obj/Debug/net8.0/Demo.assets.cache b/Demo/obj/Debug/net8.0/Demo.assets.cache new file mode 100644 index 0000000..2803161 Binary files /dev/null and b/Demo/obj/Debug/net8.0/Demo.assets.cache differ diff --git a/Demo/obj/Debug/net8.0/Demo.csproj.BuildWithSkipAnalyzers b/Demo/obj/Debug/net8.0/Demo.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Demo/obj/Debug/net8.0/Demo.csproj.CoreCompileInputs.cache b/Demo/obj/Debug/net8.0/Demo.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..570c142 --- /dev/null +++ b/Demo/obj/Debug/net8.0/Demo.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f99c4e359b24acf3225e0e4301aebeedd510c03d00507261adb31764dc1d4cf2 diff --git a/Demo/obj/Debug/net8.0/Demo.csproj.FileListAbsolute.txt b/Demo/obj/Debug/net8.0/Demo.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6cae5f1 --- /dev/null +++ b/Demo/obj/Debug/net8.0/Demo.csproj.FileListAbsolute.txt @@ -0,0 +1,56 @@ +C:\Users\admin\Source\Repos\presence\Demo\obj\Debug\net8.0\Demo.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\admin\Source\Repos\presence\Demo\obj\Debug\net8.0\Demo.AssemblyInfoInputs.cache +C:\Users\admin\Source\Repos\presence\Demo\obj\Debug\net8.0\Demo.AssemblyInfo.cs +C:\Users\admin\Source\Repos\presence\Demo\obj\Debug\net8.0\Demo.csproj.CoreCompileInputs.cache +C:\Users\admin\Source\Repos\presence\Demo\bin\Debug\net8.0\Demo.exe +C:\Users\admin\Source\Repos\presence\Demo\bin\Debug\net8.0\Demo.deps.json +C:\Users\admin\Source\Repos\presence\Demo\bin\Debug\net8.0\Demo.runtimeconfig.json +C:\Users\admin\Source\Repos\presence\Demo\bin\Debug\net8.0\Demo.dll +C:\Users\admin\Source\Repos\presence\Demo\bin\Debug\net8.0\Demo.pdb +C:\Users\admin\Source\Repos\presence\Demo\obj\Debug\net8.0\Demo.dll +C:\Users\admin\Source\Repos\presence\Demo\obj\Debug\net8.0\refint\Demo.dll +C:\Users\admin\Source\Repos\presence\Demo\obj\Debug\net8.0\Demo.pdb +C:\Users\admin\Source\Repos\presence\Demo\obj\Debug\net8.0\Demo.genruntimeconfig.cache +C:\Users\admin\Source\Repos\presence\Demo\obj\Debug\net8.0\ref\Demo.dll +C:\Users\sokol\OneDrive\Desktop\presence\Demo\obj\Debug\net8.0\Demo.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\sokol\OneDrive\Desktop\presence\Demo\obj\Debug\net8.0\Demo.AssemblyInfoInputs.cache +C:\Users\sokol\OneDrive\Desktop\presence\Demo\obj\Debug\net8.0\Demo.AssemblyInfo.cs +C:\Users\sokol\OneDrive\Desktop\presence\Demo\obj\Debug\net8.0\Demo.csproj.CoreCompileInputs.cache +C:\Users\sokol\OneDrive\Desktop\presence\Demo\obj\Debug\net8.0\Demo.dll +C:\Users\sokol\OneDrive\Desktop\presence\Demo\obj\Debug\net8.0\refint\Demo.dll +C:\Users\sokol\OneDrive\Desktop\presence\Demo\obj\Debug\net8.0\Demo.pdb +C:\Users\sokol\OneDrive\Desktop\presence\Demo\bin\Debug\net8.0\Demo.exe +C:\Users\sokol\OneDrive\Desktop\presence\Demo\bin\Debug\net8.0\Demo.deps.json +C:\Users\sokol\OneDrive\Desktop\presence\Demo\bin\Debug\net8.0\Demo.runtimeconfig.json +C:\Users\sokol\OneDrive\Desktop\presence\Demo\bin\Debug\net8.0\Demo.dll +C:\Users\sokol\OneDrive\Desktop\presence\Demo\bin\Debug\net8.0\Demo.pdb +C:\Users\sokol\OneDrive\Desktop\presence\Demo\obj\Debug\net8.0\Demo.genruntimeconfig.cache +C:\Users\sokol\OneDrive\Desktop\presence\Demo\obj\Debug\net8.0\ref\Demo.dll +C:\Users\admin\Downloads\presence\Demo\bin\Debug\net8.0\Demo.exe +C:\Users\admin\Downloads\presence\Demo\bin\Debug\net8.0\Demo.deps.json +C:\Users\admin\Downloads\presence\Demo\bin\Debug\net8.0\Demo.runtimeconfig.json +C:\Users\admin\Downloads\presence\Demo\bin\Debug\net8.0\Demo.dll +C:\Users\admin\Downloads\presence\Demo\bin\Debug\net8.0\Demo.pdb +C:\Users\admin\Downloads\presence\Demo\obj\Debug\net8.0\Demo.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\admin\Downloads\presence\Demo\obj\Debug\net8.0\Demo.AssemblyInfoInputs.cache +C:\Users\admin\Downloads\presence\Demo\obj\Debug\net8.0\Demo.AssemblyInfo.cs +C:\Users\admin\Downloads\presence\Demo\obj\Debug\net8.0\Demo.csproj.CoreCompileInputs.cache +C:\Users\admin\Downloads\presence\Demo\obj\Debug\net8.0\Demo.dll +C:\Users\admin\Downloads\presence\Demo\obj\Debug\net8.0\refint\Demo.dll +C:\Users\admin\Downloads\presence\Demo\obj\Debug\net8.0\Demo.pdb +C:\Users\admin\Downloads\presence\Demo\obj\Debug\net8.0\Demo.genruntimeconfig.cache +C:\Users\admin\Downloads\presence\Demo\obj\Debug\net8.0\ref\Demo.dll +C:\Users\Rutmen\Desktop\presence\Demo\bin\Debug\net8.0\Demo.exe +C:\Users\Rutmen\Desktop\presence\Demo\bin\Debug\net8.0\Demo.deps.json +C:\Users\Rutmen\Desktop\presence\Demo\bin\Debug\net8.0\Demo.runtimeconfig.json +C:\Users\Rutmen\Desktop\presence\Demo\bin\Debug\net8.0\Demo.dll +C:\Users\Rutmen\Desktop\presence\Demo\bin\Debug\net8.0\Demo.pdb +C:\Users\Rutmen\Desktop\presence\Demo\obj\Debug\net8.0\Demo.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Rutmen\Desktop\presence\Demo\obj\Debug\net8.0\Demo.AssemblyInfoInputs.cache +C:\Users\Rutmen\Desktop\presence\Demo\obj\Debug\net8.0\Demo.AssemblyInfo.cs +C:\Users\Rutmen\Desktop\presence\Demo\obj\Debug\net8.0\Demo.csproj.CoreCompileInputs.cache +C:\Users\Rutmen\Desktop\presence\Demo\obj\Debug\net8.0\Demo.dll +C:\Users\Rutmen\Desktop\presence\Demo\obj\Debug\net8.0\refint\Demo.dll +C:\Users\Rutmen\Desktop\presence\Demo\obj\Debug\net8.0\Demo.pdb +C:\Users\Rutmen\Desktop\presence\Demo\obj\Debug\net8.0\Demo.genruntimeconfig.cache +C:\Users\Rutmen\Desktop\presence\Demo\obj\Debug\net8.0\ref\Demo.dll diff --git a/Demo/obj/Debug/net8.0/Demo.dll b/Demo/obj/Debug/net8.0/Demo.dll new file mode 100644 index 0000000..255d878 Binary files /dev/null and b/Demo/obj/Debug/net8.0/Demo.dll differ diff --git a/Demo/obj/Debug/net8.0/Demo.genruntimeconfig.cache b/Demo/obj/Debug/net8.0/Demo.genruntimeconfig.cache new file mode 100644 index 0000000..e97d013 --- /dev/null +++ b/Demo/obj/Debug/net8.0/Demo.genruntimeconfig.cache @@ -0,0 +1 @@ +3dc41fc80ac6fc95bef54603c6368c3ff1ab9c58d0a96b83b71489d9a4c1d295 diff --git a/Demo/obj/Debug/net8.0/Demo.pdb b/Demo/obj/Debug/net8.0/Demo.pdb new file mode 100644 index 0000000..cf33ba5 Binary files /dev/null and b/Demo/obj/Debug/net8.0/Demo.pdb differ diff --git a/Demo/obj/Debug/net8.0/apphost.exe b/Demo/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..e798b27 Binary files /dev/null and b/Demo/obj/Debug/net8.0/apphost.exe differ diff --git a/Demo/obj/Debug/net8.0/ref/Demo.dll b/Demo/obj/Debug/net8.0/ref/Demo.dll new file mode 100644 index 0000000..d4af8be Binary files /dev/null and b/Demo/obj/Debug/net8.0/ref/Demo.dll differ diff --git a/Demo/obj/Debug/net8.0/refint/Demo.dll b/Demo/obj/Debug/net8.0/refint/Demo.dll new file mode 100644 index 0000000..d4af8be Binary files /dev/null and b/Demo/obj/Debug/net8.0/refint/Demo.dll differ diff --git a/Demo/obj/Demo.csproj.nuget.dgspec.json b/Demo/obj/Demo.csproj.nuget.dgspec.json new file mode 100644 index 0000000..cb9398d --- /dev/null +++ b/Demo/obj/Demo.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Rutmen\\Desktop\\presence\\Demo\\Demo.csproj": {} + }, + "projects": { + "C:\\Users\\Rutmen\\Desktop\\presence\\Demo\\Demo.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Rutmen\\Desktop\\presence\\Demo\\Demo.csproj", + "projectName": "Demo", + "projectPath": "C:\\Users\\Rutmen\\Desktop\\presence\\Demo\\Demo.csproj", + "packagesPath": "C:\\Users\\Rutmen\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Rutmen\\Desktop\\presence\\Demo\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Rutmen\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "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": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Demo/obj/Demo.csproj.nuget.g.props b/Demo/obj/Demo.csproj.nuget.g.props new file mode 100644 index 0000000..e083eb1 --- /dev/null +++ b/Demo/obj/Demo.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Rutmen\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.11.1 + + + + + + \ No newline at end of file diff --git a/Demo/obj/Demo.csproj.nuget.g.targets b/Demo/obj/Demo.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Demo/obj/Demo.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Demo/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Demo/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/Demo/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Demo/obj/Release/net8.0/Demo.AssemblyInfo.cs b/Demo/obj/Release/net8.0/Demo.AssemblyInfo.cs new file mode 100644 index 0000000..169a86d --- /dev/null +++ b/Demo/obj/Release/net8.0/Demo.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Demo")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6012168a59e9bbf0281cdaaa8d7f6e69b8ecec8f")] +[assembly: System.Reflection.AssemblyProductAttribute("Demo")] +[assembly: System.Reflection.AssemblyTitleAttribute("Demo")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/Demo/obj/Release/net8.0/Demo.AssemblyInfoInputs.cache b/Demo/obj/Release/net8.0/Demo.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8363fe0 --- /dev/null +++ b/Demo/obj/Release/net8.0/Demo.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5de05b4a35f41436d5b2174788ce9573db675ed8b8e335f323628d840c587465 diff --git a/Demo/obj/Release/net8.0/Demo.GeneratedMSBuildEditorConfig.editorconfig b/Demo/obj/Release/net8.0/Demo.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..314661a --- /dev/null +++ b/Demo/obj/Release/net8.0/Demo.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Demo +build_property.ProjectDir = C:\Users\admin\Downloads\presence\Demo\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Demo/obj/Release/net8.0/Demo.GlobalUsings.g.cs b/Demo/obj/Release/net8.0/Demo.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Demo/obj/Release/net8.0/Demo.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Demo/obj/Release/net8.0/Demo.assets.cache b/Demo/obj/Release/net8.0/Demo.assets.cache new file mode 100644 index 0000000..18ea13e Binary files /dev/null and b/Demo/obj/Release/net8.0/Demo.assets.cache differ diff --git a/Demo/obj/project.assets.json b/Demo/obj/project.assets.json new file mode 100644 index 0000000..f99ff7b --- /dev/null +++ b/Demo/obj/project.assets.json @@ -0,0 +1,78 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "C:\\Users\\Rutmen\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Rutmen\\Desktop\\presence\\Demo\\Demo.csproj", + "projectName": "Demo", + "projectPath": "C:\\Users\\Rutmen\\Desktop\\presence\\Demo\\Demo.csproj", + "packagesPath": "C:\\Users\\Rutmen\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Rutmen\\Desktop\\presence\\Demo\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Rutmen\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "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": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Demo/obj/project.nuget.cache b/Demo/obj/project.nuget.cache new file mode 100644 index 0000000..e790396 --- /dev/null +++ b/Demo/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "BYMHCHnSUbY=", + "success": true, + "projectFilePath": "C:\\Users\\Rutmen\\Desktop\\presence\\Demo\\Demo.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file