diff --git a/Data/Entity/Group.cs b/Data/Entity/Group.cs old mode 100644 new mode 100755 diff --git a/Data/Entity/Presence.cs b/Data/Entity/Presence.cs old mode 100644 new mode 100755 diff --git a/Data/Entity/User.cs b/Data/Entity/User.cs old mode 100644 new mode 100755 diff --git a/Data/LocalData/LocalStaticData.cs b/Data/LocalData/LocalStaticData.cs old mode 100644 new mode 100755 diff --git a/Data/RemoteData/RemoteDataBase/DAO/Group.cs b/Data/RemoteData/RemoteDataBase/DAO/Group.cs old mode 100644 new mode 100755 index 5e5abcb..6c7ac55 --- a/Data/RemoteData/RemoteDataBase/DAO/Group.cs +++ b/Data/RemoteData/RemoteDataBase/DAO/Group.cs @@ -10,6 +10,6 @@ namespace Posechaemost.Data.RemoteData.RemoteDataBase.DAO public int Id {get; set;} public required string Name {get; set;} - public IEnumerable Users {get; set;} + public IEnumerable User {get; set;} } } \ No newline at end of file diff --git a/Data/RemoteData/RemoteDataBase/DAO/Presence.cs b/Data/RemoteData/RemoteDataBase/DAO/Presence.cs old mode 100644 new mode 100755 index 1c7cc7a..3f8b063 --- a/Data/RemoteData/RemoteDataBase/DAO/Presence.cs +++ b/Data/RemoteData/RemoteDataBase/DAO/Presence.cs @@ -7,11 +7,12 @@ namespace Posechaemost.Data.RemoteData.RemoteDataBase.DAO { public class PresenceDao { - public required DateOnly Date {get; set;} + public int PresenceId { get; set; } + public DateOnly Date {get; set;} public int ClassNumber {get; set;} public bool IsAttendence {get; set;} = true; public int UserId {get; set;} - public required UserDao User {get; set;} + public UserDao User {get; set;} public int GroupId {get; set;} } } \ No newline at end of file diff --git a/Data/RemoteData/RemoteDataBase/DAO/User.cs b/Data/RemoteData/RemoteDataBase/DAO/User.cs old mode 100644 new mode 100755 index a7d52d6..d5ba458 --- a/Data/RemoteData/RemoteDataBase/DAO/User.cs +++ b/Data/RemoteData/RemoteDataBase/DAO/User.cs @@ -12,5 +12,6 @@ namespace Posechaemost.Data.RemoteData.RemoteDataBase.DAO public int UserId { get; set; } public required int GroupId {get; set;} public GroupDao Group {get; set;} + public IEnumerable Presences { get; set; } } } \ No newline at end of file diff --git a/Data/RemoteData/RemoteDataBase/RemoteDataBaseContext.cs b/Data/RemoteData/RemoteDataBase/RemoteDataBaseContext.cs old mode 100644 new mode 100755 index 7549424..c83caf8 --- a/Data/RemoteData/RemoteDataBase/RemoteDataBaseContext.cs +++ b/Data/RemoteData/RemoteDataBase/RemoteDataBaseContext.cs @@ -10,7 +10,7 @@ namespace Posechaemost.Data.RemoteData.RemoteDataBase public class RemoteDataBaseContext: DbContext { protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder){ - optionsBuilder.UseNpgsql("Host=localhost; Database=presencedb; Username=postgres; Password=123"); + optionsBuilder.UseNpgsql("Host=localhost; Port=5432; Database=presencedb; Username=postgres; Password=123"); } protected override void OnModelCreating(ModelBuilder modelBuilder) { @@ -19,17 +19,18 @@ namespace Posechaemost.Data.RemoteData.RemoteDataBase modelBuilder.Entity().Property(group => group.Id).ValueGeneratedOnAdd(); modelBuilder.Entity().HasKey(user => user.UserId); modelBuilder.Entity().Property(user => user.UserId).ValueGeneratedOnAdd(); - modelBuilder.Entity().HasKey(presence => new { - presence.User, - presence.Date, - presence.IsAttendence, - presence.ClassNumber -}); + + modelBuilder.Entity().HasKey(presence =>presence.PresenceId); + modelBuilder.Entity().Property(presence=>presence.PresenceId).ValueGeneratedOnAdd(); + modelBuilder.Entity() + .HasOne(presence => presence.User) + .WithMany(user => user.Presences) + .HasForeignKey(presence => presence.UserId); } - public DbSet Groups{ get; set; } - public DbSet Users{ get; set; } - public DbSet Presences{ get; set; } + public DbSet Groups { get; set; } + public DbSet Users { get; set; } + public DbSet Presences { get; set; } } } \ No newline at end of file diff --git a/Data/Repository/GroupRepositoryImpl.cs b/Data/Repository/GroupRepositoryImpl.cs old mode 100644 new mode 100755 index 36c7c2c..5e09499 --- a/Data/Repository/GroupRepositoryImpl.cs +++ b/Data/Repository/GroupRepositoryImpl.cs @@ -19,8 +19,6 @@ namespace Posechaemost.Data.Repository _remoteDatabaseContext = remoteDatabaseContext; } - public List GetAllGroups() => LocalStaticData.groups; - public bool AddGroup(GroupDao group) { var groupDao = new GroupDao @@ -35,12 +33,12 @@ namespace Posechaemost.Data.Repository public List GetAllGroup() { return _remoteDatabaseContext.Groups - .Include(g => g.Users) + .Include(g => g.User) .Select(g => new GroupDao { Name = g.Name, Id = g.Id, - Users = g.Users.Select(u => new UserDao + User = g.User.Select(u => new UserDao { UserId = u.UserId, FIO = u.FIO, @@ -71,13 +69,13 @@ namespace Posechaemost.Data.Repository public bool UpdateGroupById(int groupID, string name) { var groupLocal = _remoteDatabaseContext.Groups - .Include(g => g.Users) + .Include(g => g.User) .Where(x => x.Id == groupID).FirstOrDefault(); if (groupLocal == null) return false; groupLocal.Name = name; - groupLocal.Users = _remoteDatabaseContext.Users + groupLocal.User = _remoteDatabaseContext.Users .Where(x => x.GroupId == groupLocal.Id) .Select(user => new UserDao { diff --git a/Data/Repository/IGroupRepository.cs b/Data/Repository/IGroupRepository.cs old mode 100644 new mode 100755 index 635f5e7..654fa33 --- a/Data/Repository/IGroupRepository.cs +++ b/Data/Repository/IGroupRepository.cs @@ -14,6 +14,5 @@ namespace Posechaemost.Data.Repository { bool UpdateGroupById(int groupID, String name); GroupDao GetGroupById(int groupID); bool AddGroup(GroupDao group); - List GetAllGroups(); } } \ No newline at end of file diff --git a/Data/Repository/IPresenceRepository.cs b/Data/Repository/IPresenceRepository.cs old mode 100644 new mode 100755 diff --git a/Data/Repository/IUserRepository.cs b/Data/Repository/IUserRepository.cs old mode 100644 new mode 100755 diff --git a/Data/Repository/PresenceRepositoryImpl.cs b/Data/Repository/PresenceRepositoryImpl.cs old mode 100644 new mode 100755 diff --git a/Data/Repository/UserRepositoryImpl.cs b/Data/Repository/UserRepositoryImpl.cs old mode 100644 new mode 100755 diff --git a/Domain/Models/Group.cs b/Domain/Models/Group.cs old mode 100644 new mode 100755 diff --git a/Domain/Models/Presence.cs b/Domain/Models/Presence.cs old mode 100644 new mode 100755 diff --git a/Domain/Models/User.cs b/Domain/Models/User.cs old mode 100644 new mode 100755 diff --git a/Domain/UseCase/GroupUseCase.cs b/Domain/UseCase/GroupUseCase.cs old mode 100644 new mode 100755 index 76fda33..e7d863a --- a/Domain/UseCase/GroupUseCase.cs +++ b/Domain/UseCase/GroupUseCase.cs @@ -12,14 +12,14 @@ namespace Posechaemost.Domain.UseCase { public class GroupUseCase { - private SQLGroupRepositoryImpl _repositoryGroupImpl; + private IGroupRepository _repositoryGroupImpl; - public GroupUseCase(SQLGroupRepositoryImpl repositoryGroupImpl) + public GroupUseCase(IGroupRepository repositoryGroupImpl) { _repositoryGroupImpl = repositoryGroupImpl; } - public List GetAllGroups() => _repositoryGroupImpl.GetAllGroups() + public List GetAllGroups() => _repositoryGroupImpl.GetAllGroup() .Select(it => new GroupDao { Id = it.Id, Name = it.Name}).ToList(); public bool UpdateGroupName(String id, String name1) { diff --git a/Domain/UseCase/PresenceUseCase.cs b/Domain/UseCase/PresenceUseCase.cs old mode 100644 new mode 100755 index 555f47c..6f62e73 --- a/Domain/UseCase/PresenceUseCase.cs +++ b/Domain/UseCase/PresenceUseCase.cs @@ -13,22 +13,22 @@ namespace Posechaemost.Domain.UseCase { public class PresenceUseCase { - private readonly SQLPresenceRepositoryImpl _repositoryPresenceImpl; - private readonly SQLUserRepositoryImpl _repositoryUserImpl; - private readonly SQLGroupRepositoryImpl _repositoryGroupImpl; + public readonly IUserRepository _userRepository; + public readonly IPresenceRepository _presenceRepository; + private readonly IGroupRepository _groupRepository; - public PresenceUseCase(SQLPresenceRepositoryImpl repositoryImpl, - SQLUserRepositoryImpl userRepositoryImpl, - SQLGroupRepositoryImpl groupRepositoryImpl) { - _repositoryPresenceImpl = repositoryImpl; - _repositoryUserImpl = userRepositoryImpl; - _repositoryGroupImpl = groupRepositoryImpl; + public PresenceUseCase(IPresenceRepository repositoryImpl, + IUserRepository userRepositoryImpl, + IGroupRepository groupRepositoryImpl) { + _presenceRepository = repositoryImpl; + _userRepository = userRepositoryImpl; + _groupRepository = groupRepositoryImpl; } public List GetPresenceByGroup(int groupId) { - var users = _repositoryUserImpl.GetAllUser().Where(x => x.GroupId == groupId).ToList(); + var users = _userRepository.GetAllUser().Where(x => x.GroupId == groupId).ToList(); - var presenceByGroup = _repositoryPresenceImpl.GetPresenceByGroup(groupId) + var presenceByGroup = _presenceRepository.GetPresenceByGroup(groupId) .Where(x => users.Any(user => user.UserId == x.UserId)) .Select(presence => new PresenceDao{ User = new UserDao{ @@ -44,9 +44,9 @@ namespace Posechaemost.Domain.UseCase } public List GetPresenceByGroupAndDate(int groupId, DateOnly date) { - var users = _repositoryUserImpl.GetAllUser().Where(x => x.GroupId == groupId).ToList(); + var users = _userRepository.GetAllUser().Where(x => x.GroupId == groupId).ToList(); - var presenceByGroupAndDate = _repositoryPresenceImpl.GetPresenceByGroupAndDate(groupId, date) + var presenceByGroupAndDate = _presenceRepository.GetPresenceByGroupAndDate(groupId, date) .Where(x => users.Any(user => user.UserId == x.UserId && x.Date == date)) .Select(presence => new PresenceDao{ User = new UserDao{ @@ -62,12 +62,12 @@ namespace Posechaemost.Domain.UseCase } public bool UncheckAttendence(int firstClass, int lastClass, DateOnly date, int userId) { - return _repositoryPresenceImpl.UncheckAttendence(firstClass, lastClass, date, userId); + return _presenceRepository.UncheckAttendence(firstClass, lastClass, date, userId); } public void AddPresence(int firstClass, int lastClass, int groupId,DateOnly date) { - var users = _repositoryUserImpl.GetAllUser().Where(x => x.GroupId==groupId).ToList(); + var users = _userRepository.GetAllUser().Where(x => x.GroupId==groupId).ToList(); List presenceList = new List(); for (int i = firstClass; i < lastClass; i++) { @@ -78,5 +78,75 @@ namespace Posechaemost.Domain.UseCase } } } + public Dictionary GetPresenceStatsByGroup(int groupId) + { + var stats = new Dictionary(); + + // Получаем всех студентов группы + var users = _userRepository.GetAllUser().Where(x => x.GroupId == groupId).ToList(); + stats["Количество студентов"] = users.Count; + + // Получаем все записи посещаемости для группы + var presences = _presenceRepository.GetPresenceByGroup(groupId); + + // Считаем количество уникальных занятий + var uniqueLessons = presences + .Select(p => new { p.Date, p.ClassNumber }) + .Distinct() + .Count(); + stats["Количество занятий"] = uniqueLessons; + + // Считаем общую посещаемость + var totalAttendances = presences.Count(p => p.IsAttendence); + var totalPossibleAttendances = users.Count * uniqueLessons; + + if (totalPossibleAttendances > 0) + { + var attendancePercentage = (totalAttendances * 100) / totalPossibleAttendances; + stats["Процент посещаемости"] = attendancePercentage; + } + else + { + stats["Процент посещаемости"] = 0; + } + + return stats; + } + public void GenerateWeeklyPresence(int firstClass, int lastClass, int groupId, DateOnly startDate) + { + // Получаем всех студентов группы + var users = _userRepository.GetAllUser().Where(x => x.GroupId == groupId).ToList(); + + // Генерируем посещаемость на 7 дней + for (int day = 0; day < 7; day++) + { + var currentDate = startDate.AddDays(day); + + // Пропускаем выходные дни (суббота и воскресенье) + if (currentDate.DayOfWeek == DayOfWeek.Saturday || + currentDate.DayOfWeek == DayOfWeek.Sunday) + { + continue; + } + + // Для каждой пары в диапазоне + for (int classNum = firstClass; classNum <= lastClass; classNum++) + { + foreach (var user in users) + { + var presence = new PresenceDao + { + ClassNumber = classNum, + Date = currentDate, + UserId = user.UserId, + User = user, + GroupId = groupId + }; + + _presenceRepository.AddPresence(presence); + } + } + } + } } } diff --git a/Domain/UseCase/UserUseCase.cs b/Domain/UseCase/UserUseCase.cs old mode 100644 new mode 100755 index 5285986..ad04584 --- a/Domain/UseCase/UserUseCase.cs +++ b/Domain/UseCase/UserUseCase.cs @@ -13,19 +13,20 @@ namespace Posechaemost.Domain.UseCase public class UserUseCase { - private readonly SQLUserRepositoryImpl _repositoryUserImpl; + + private readonly IUserRepository _repositoryUserImpl; private readonly IGroupRepository _repositoryGroupImpl; - public UserUseCase(SQLUserRepositoryImpl repositoryImpl, SQLGroupRepositoryImpl repositoryGroupImpl) + public UserUseCase(IUserRepository repositoryImpl, IGroupRepository repositoryGroupImpl) { _repositoryUserImpl = repositoryImpl; _repositoryGroupImpl = repositoryGroupImpl; } - private List GetAllGroups() => _repositoryGroupImpl.GetAllGroups() + private List GetAllGroups() => _repositoryGroupImpl.GetAllGroup() .Select(it => new GroupDao { Id = it.Id, Name = it.Name}).ToList(); public List GetAllUsers() => _repositoryUserImpl.GetAllUser() - .Join(_repositoryGroupImpl.GetAllGroups(), + .Join(_repositoryGroupImpl.GetAllGroup(), user => user.GroupId, group => group.Id, (user, group) => diff --git a/Migrations/20241111193458_InitialCreate.Designer.cs b/Migrations/20241111193458_InitialCreate.Designer.cs new file mode 100644 index 0000000..70122da --- /dev/null +++ b/Migrations/20241111193458_InitialCreate.Designer.cs @@ -0,0 +1,131 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using Posechaemost.Data.RemoteData.RemoteDataBase; + +#nullable disable + +namespace Posechaemost.Migrations +{ + [DbContext(typeof(RemoteDataBaseContext))] + [Migration("20241111193458_InitialCreate")] + partial class InitialCreate + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "8.0.10") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.GroupDao", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("Groups"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.PresenceDao", b => + { + b.Property("PresenceId") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("PresenceId")); + + b.Property("ClassNumber") + .HasColumnType("integer"); + + b.Property("Date") + .HasColumnType("date"); + + b.Property("GroupId") + .HasColumnType("integer"); + + b.Property("IsAttendence") + .HasColumnType("boolean"); + + b.Property("UserId") + .HasColumnType("integer"); + + b.HasKey("PresenceId"); + + b.HasIndex("UserId"); + + b.ToTable("Presences"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.UserDao", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("UserId")); + + b.Property("FIO") + .IsRequired() + .HasColumnType("text"); + + b.Property("GroupId") + .HasColumnType("integer"); + + b.HasKey("UserId"); + + b.HasIndex("GroupId"); + + b.ToTable("Users"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.PresenceDao", b => + { + b.HasOne("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.UserDao", "User") + .WithMany("Presences") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("User"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.UserDao", b => + { + b.HasOne("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.GroupDao", "Group") + .WithMany("User") + .HasForeignKey("GroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Group"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.GroupDao", b => + { + b.Navigation("User"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.UserDao", b => + { + b.Navigation("Presences"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20241111193458_InitialCreate.cs b/Migrations/20241111193458_InitialCreate.cs new file mode 100644 index 0000000..cccbfef --- /dev/null +++ b/Migrations/20241111193458_InitialCreate.cs @@ -0,0 +1,95 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Posechaemost.Migrations +{ + /// + public partial class InitialCreate : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Groups", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + Name = table.Column(type: "text", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Groups", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Users", + columns: table => new + { + UserId = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + FIO = table.Column(type: "text", nullable: false), + GroupId = table.Column(type: "integer", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Users", x => x.UserId); + table.ForeignKey( + name: "FK_Users_Groups_GroupId", + column: x => x.GroupId, + principalTable: "Groups", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "Presences", + columns: table => new + { + PresenceId = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + Date = table.Column(type: "date", nullable: false), + ClassNumber = table.Column(type: "integer", nullable: false), + IsAttendence = table.Column(type: "boolean", nullable: false), + UserId = table.Column(type: "integer", nullable: false), + GroupId = table.Column(type: "integer", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Presences", x => x.PresenceId); + table.ForeignKey( + name: "FK_Presences_Users_UserId", + column: x => x.UserId, + principalTable: "Users", + principalColumn: "UserId", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_Presences_UserId", + table: "Presences", + column: "UserId"); + + migrationBuilder.CreateIndex( + name: "IX_Users_GroupId", + table: "Users", + column: "GroupId"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Presences"); + + migrationBuilder.DropTable( + name: "Users"); + + migrationBuilder.DropTable( + name: "Groups"); + } + } +} diff --git a/Migrations/RemoteDataBaseContextModelSnapshot.cs b/Migrations/RemoteDataBaseContextModelSnapshot.cs new file mode 100644 index 0000000..45ec615 --- /dev/null +++ b/Migrations/RemoteDataBaseContextModelSnapshot.cs @@ -0,0 +1,128 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using Posechaemost.Data.RemoteData.RemoteDataBase; + +#nullable disable + +namespace Posechaemost.Migrations +{ + [DbContext(typeof(RemoteDataBaseContext))] + partial class RemoteDataBaseContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "8.0.10") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.GroupDao", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.ToTable("Groups"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.PresenceDao", b => + { + b.Property("PresenceId") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("PresenceId")); + + b.Property("ClassNumber") + .HasColumnType("integer"); + + b.Property("Date") + .HasColumnType("date"); + + b.Property("GroupId") + .HasColumnType("integer"); + + b.Property("IsAttendence") + .HasColumnType("boolean"); + + b.Property("UserId") + .HasColumnType("integer"); + + b.HasKey("PresenceId"); + + b.HasIndex("UserId"); + + b.ToTable("Presences"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.UserDao", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("UserId")); + + b.Property("FIO") + .IsRequired() + .HasColumnType("text"); + + b.Property("GroupId") + .HasColumnType("integer"); + + b.HasKey("UserId"); + + b.HasIndex("GroupId"); + + b.ToTable("Users"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.PresenceDao", b => + { + b.HasOne("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.UserDao", "User") + .WithMany("Presences") + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("User"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.UserDao", b => + { + b.HasOne("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.GroupDao", "Group") + .WithMany("User") + .HasForeignKey("GroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Group"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.GroupDao", b => + { + b.Navigation("User"); + }); + + modelBuilder.Entity("Posechaemost.Data.RemoteData.RemoteDataBase.DAO.UserDao", b => + { + b.Navigation("Presences"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Posechaemost.csproj b/Posechaemost.csproj old mode 100644 new mode 100755 index c8124d5..b77e47c --- a/Posechaemost.csproj +++ b/Posechaemost.csproj @@ -8,6 +8,8 @@ + + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Posechaemost.sln b/Posechaemost.sln old mode 100644 new mode 100755 diff --git a/Program.cs b/Program.cs old mode 100644 new mode 100755 index 00e5e73..5774fc1 --- a/Program.cs +++ b/Program.cs @@ -3,21 +3,24 @@ using Posechaemost.Domain.UseCase; using Posechaemost.UI; using Microsoft.Extensions.DependencyInjection; using System.Text.RegularExpressions; +using Posechaemost.Data.RemoteData.RemoteDataBase; IServiceCollection services = new ServiceCollection(); services + .AddDbContext() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() .AddSingleton() - .AddSingleton(); + .AddSingleton() + .AddSingleton() + .AddSingleton(); var serviceProvider = services.BuildServiceProvider(); +// Создаем пользовательский интерфейс +MainMenuUI mainMenuUI = serviceProvider.GetService(); -var userUseCase = serviceProvider.GetService(); -var groupUseCase = serviceProvider.GetService(); -var presenceUseCase = serviceProvider.GetService(); - -MainMenuUI mainMenuUI = new MainMenuUI(userUseCase, groupUseCase, presenceUseCase); +// Выводим главное меню +mainMenuUI.DisplayMenu(); \ No newline at end of file diff --git a/UI/GroupConsole.cs b/UI/GroupConsole.cs old mode 100644 new mode 100755 diff --git a/UI/MainMenu.cs b/UI/MainMenu.cs old mode 100644 new mode 100755 index 238ab4c..e0a56e9 --- a/UI/MainMenu.cs +++ b/UI/MainMenu.cs @@ -1,3 +1,4 @@ +using Posechaemost.Data.Repository; using Posechaemost.Domain.UseCase; using System; using System.Collections.Generic; @@ -14,18 +15,18 @@ namespace Posechaemost.UI GroupConsoleUI _groupConsoleUI; PresenceConsoleUI _presenceConsoleUI; - public MainMenuUI(UserUseCase userUseCase, GroupUseCase groupUseCase, PresenceUseCase presenceUseCase) + public MainMenuUI(UserUseCase userUseCase, GroupUseCase groupUseCase, PresenceUseCase presenceUseCase, IPresenceRepository presenceRepository) { _userConsoleUI = new UserConsoleUI(userUseCase); _groupConsoleUI = new GroupConsoleUI(groupUseCase); - _presenceConsoleUI = new PresenceConsoleUI(presenceUseCase); + _presenceConsoleUI = new PresenceConsoleUI(presenceUseCase, presenceRepository); DisplayMenu(); } - private void DisplayMenu() + public void DisplayMenu() { while (true) { @@ -42,7 +43,8 @@ namespace Posechaemost.UI case "9": _presenceConsoleUI.GetPresenceByGroupAndDate(int.Parse(Console.ReadLine()), DateOnly.Parse(Console.ReadLine())); break; case "10": _presenceConsoleUI.UncheckAttendence(int.Parse(Console.ReadLine()), int.Parse(Console.ReadLine()), DateOnly.Parse(Console.ReadLine()), int.Parse(Console.ReadLine())); break; case "11": _presenceConsoleUI.AddPresence(int.Parse(Console.ReadLine()), int.Parse(Console.ReadLine()), int.Parse(Console.ReadLine()), DateOnly.Parse(Console.ReadLine())); break; - + case "12": _presenceConsoleUI.ExportPresenceToExcel(int.Parse(Console.ReadLine()), Console.ReadLine()); break; + case "13": _presenceConsoleUI.GenerateWeeklyPresence(int.Parse(Console.ReadLine()), int.Parse(Console.ReadLine()), int.Parse(Console.ReadLine()), DateOnly.Parse(Console.ReadLine())); break; default: DisplayMenu(); break; } diff --git a/UI/PresenceConsole.cs b/UI/PresenceConsole.cs old mode 100644 new mode 100755 index 90d2d95..cbfedb5 --- a/UI/PresenceConsole.cs +++ b/UI/PresenceConsole.cs @@ -4,15 +4,20 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using Posechaemost.Domain.UseCase; +using ClosedXML.Excel; +using Posechaemost.Data.Repository; namespace Posechaemost.UI { public class PresenceConsoleUI { - PresenceUseCase _presenceUseCase; - public PresenceConsoleUI(PresenceUseCase presenceUseCase) + private readonly PresenceUseCase _presenceUseCase; + + private readonly IPresenceRepository _presenceRepository; + public PresenceConsoleUI(PresenceUseCase presenceUseCase, IPresenceRepository presenceRepository) { _presenceUseCase = presenceUseCase; + _presenceRepository = presenceRepository; } public void GetPresenceByGroup(int groupId) @@ -51,5 +56,111 @@ namespace Posechaemost.UI presenceOutput.AppendLine("Посещаемость добавлена"); Console.WriteLine(presenceOutput); } + + public void GetPresenceStatsByGroup(int groupId) + { + var stats = _presenceUseCase.GetPresenceStatsByGroup(groupId); + StringBuilder output = new StringBuilder(); + + output.AppendLine($"Информация о группе {groupId}:"); + output.AppendLine($"Количество студентов: {stats["Количество студентов"]}"); + output.AppendLine($"Количество занятий: {stats["Количество занятий"]}"); + output.AppendLine($"Общий процент посещаемости: {stats["Процент посещаемости"]}%"); + output.AppendLine("\nСтатистика по студентам:"); + + var presence = _presenceUseCase.GetPresenceByGroup(groupId); + var students = presence.GroupBy(p => p.User) + .Select(g => new { + Student = g.Key, + Total = stats["Количество занятий"], + Attended = g.Count(p => p.IsAttendence), + Missed = stats["Количество занятий"] - g.Count(p => p.IsAttendence), + Percentage = (g.Count(p => p.IsAttendence) * 100) / stats["Количество занятий"] + }); + + foreach(var student in students) { + output.AppendLine($"\nСтудент: {student.Student.FIO}"); + output.AppendLine($"Посещено занятий: {student.Attended}"); + output.AppendLine($"Пропущено занятий: {student.Missed}"); + output.AppendLine($"Процент посещаемости: {student.Percentage}%"); + } + + Console.WriteLine(output.ToString()); + } + + public void GenerateWeeklyPresence(int firstClass, int lastClass, int groupId, DateOnly startDate) + { + _presenceUseCase.GenerateWeeklyPresence(firstClass, lastClass, groupId, startDate); + Console.WriteLine("Посещаемость на неделю сгенерирована"); + } + + public void ExportPresenceToExcel(int groupId, string filePath) + { + var presence = _presenceUseCase.GetPresenceByGroup(groupId); + var stats = _presenceUseCase.GetPresenceStatsByGroup(groupId); + + using (var workbook = new XLWorkbook()) + { + var worksheet = workbook.Worksheets.Add("Посещаемость"); + + // Заголовок листа + worksheet.Cell(1, 1).Value = $"Группа {groupId}"; + worksheet.Range(1, 1, 1, 3).Merge(); + worksheet.Cell(1, 1).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + + // Заголовки столбцов + worksheet.Cell(3, 1).Value = "№"; + worksheet.Cell(3, 2).Value = "ФИО"; + + // Получаем все уникальные даты + var dates = presence.Select(p => p.Date).Distinct().OrderBy(d => d).ToList(); + int col = 3; + foreach (var date in dates) + { + worksheet.Cell(3, col).Value = date.ToString("dd.MM.yyyy"); + col++; + } + + // Группируем данные по студентам + var studentGroups = presence.GroupBy(p => p.User); + int row = 4; + int studentNumber = 1; + + foreach (var studentGroup in studentGroups) + { + // Номер и ФИО студента + worksheet.Cell(row, 1).Value = studentNumber++; + worksheet.Cell(row, 2).Value = studentGroup.Key.FIO; + + // Заполняем посещаемость по датам + col = 3; + foreach (var date in dates) + { + var presenceOnDate = studentGroup.FirstOrDefault(p => p.Date == date); + worksheet.Cell(row, col).Value = presenceOnDate?.IsAttendence == true ? "+" : "н"; + worksheet.Cell(row, col).Style.Alignment.Horizontal = XLAlignmentHorizontalValues.Center; + col++; + } + row++; + } + + // Форматирование + var tableRange = worksheet.Range(3, 1, row - 1, dates.Count + 2); + tableRange.Style.Border.OutsideBorder = XLBorderStyleValues.Thin; + tableRange.Style.Border.InsideBorder = XLBorderStyleValues.Thin; + + worksheet.Columns().AdjustToContents(); + + try + { + workbook.SaveAs(filePath); + Console.WriteLine($"Данные успешно экспортированы в файл: {filePath}"); + } + catch (Exception ex) + { + Console.WriteLine($"Ошибка при сохранении файла: {ex.Message}"); + } + } + } } } \ No newline at end of file diff --git a/UI/UserConsole.cs b/UI/UserConsole.cs old mode 100644 new mode 100755 diff --git a/bin/Debug/net8.0/ClosedXML.Parser.dll b/bin/Debug/net8.0/ClosedXML.Parser.dll new file mode 100755 index 0000000..1613f29 Binary files /dev/null and b/bin/Debug/net8.0/ClosedXML.Parser.dll differ diff --git a/bin/Debug/net8.0/ClosedXML.dll b/bin/Debug/net8.0/ClosedXML.dll new file mode 100755 index 0000000..221ea4c Binary files /dev/null and b/bin/Debug/net8.0/ClosedXML.dll differ diff --git a/bin/Debug/net8.0/DocumentFormat.OpenXml.Framework.dll b/bin/Debug/net8.0/DocumentFormat.OpenXml.Framework.dll new file mode 100755 index 0000000..5556e87 Binary files /dev/null and b/bin/Debug/net8.0/DocumentFormat.OpenXml.Framework.dll differ diff --git a/bin/Debug/net8.0/DocumentFormat.OpenXml.dll b/bin/Debug/net8.0/DocumentFormat.OpenXml.dll new file mode 100755 index 0000000..05bafaf Binary files /dev/null and b/bin/Debug/net8.0/DocumentFormat.OpenXml.dll differ diff --git a/bin/Debug/net8.0/ExcelNumberFormat.dll b/bin/Debug/net8.0/ExcelNumberFormat.dll new file mode 100755 index 0000000..aaf7bf8 Binary files /dev/null and b/bin/Debug/net8.0/ExcelNumberFormat.dll differ diff --git a/bin/Debug/net8.0/Humanizer.dll b/bin/Debug/net8.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/bin/Debug/net8.0/Humanizer.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..fe6ba4c Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..dc218f9 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..412e7ed Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll b/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..8dec441 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll b/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..79e9046 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll differ diff --git a/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100755 index 0000000..2169cf8 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100755 index 0000000..7ba3d94 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100755 index 0000000..f8c58d0 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll new file mode 100755 index 0000000..b628ed6 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll b/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..077b1b6 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..81ed3de Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..bd71a2b Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 0000000..8905537 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..f9d1dc6 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..35905b6 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Options.dll b/bin/Debug/net8.0/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..a7b3f21 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Options.dll differ diff --git a/bin/Debug/net8.0/Mono.TextTemplating.dll b/bin/Debug/net8.0/Mono.TextTemplating.dll new file mode 100755 index 0000000..d5a4b3c Binary files /dev/null and b/bin/Debug/net8.0/Mono.TextTemplating.dll differ diff --git a/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll new file mode 100755 index 0000000..4b4f0fc Binary files /dev/null and b/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ diff --git a/bin/Debug/net8.0/Npgsql.dll b/bin/Debug/net8.0/Npgsql.dll new file mode 100755 index 0000000..fde1387 Binary files /dev/null and b/bin/Debug/net8.0/Npgsql.dll differ diff --git a/bin/Debug/net8.0/Posechaemost b/bin/Debug/net8.0/Posechaemost index 593b877..d36deed 100755 Binary files a/bin/Debug/net8.0/Posechaemost and b/bin/Debug/net8.0/Posechaemost differ diff --git a/bin/Debug/net8.0/Posechaemost.deps.json b/bin/Debug/net8.0/Posechaemost.deps.json old mode 100644 new mode 100755 index 31c2100..bcd7031 --- a/bin/Debug/net8.0/Posechaemost.deps.json +++ b/bin/Debug/net8.0/Posechaemost.deps.json @@ -7,10 +7,593 @@ "targets": { ".NETCoreApp,Version=v8.0": { "Posechaemost/1.0.0": { + "dependencies": { + "ClosedXML": "0.104.1", + "Microsoft.EntityFrameworkCore.Design": "8.0.10", + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10" + }, "runtime": { "Posechaemost.dll": {} } - } + }, + "ClosedXML/0.104.1": { + "dependencies": { + "ClosedXML.Parser": "1.2.0", + "DocumentFormat.OpenXml": "3.0.1", + "ExcelNumberFormat": "1.1.0", + "RBush": "3.2.0", + "SixLabors.Fonts": "1.0.0", + "System.IO.Packaging": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.dll": { + "assemblyVersion": "0.104.1.0", + "fileVersion": "0.104.1.0" + } + } + }, + "ClosedXML.Parser/1.2.0": { + "runtime": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DocumentFormat.OpenXml/3.0.1": { + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.0.1" + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "3.0.1.0", + "fileVersion": "3.0.1.0" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "dependencies": { + "System.IO.Packaging": "8.0.0" + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "assemblyVersion": "3.0.1.0", + "fileVersion": "3.0.1.0" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, + "Microsoft.CodeAnalysis.Common/4.5.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.3", + "System.Collections.Immutable": "6.0.0", + "System.Reflection.Metadata": "6.0.1", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.5.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.5.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.5.0", + "Microsoft.CodeAnalysis.Common": "4.5.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "Microsoft.CodeAnalysis.Common": "4.5.0", + "System.Composition": "6.0.0", + "System.IO.Pipelines": "6.0.3", + "System.Threading.Channels": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {}, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.2.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.2", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.224.6711" + } + } + }, + "Microsoft.Extensions.Primitives/8.0.0": {}, + "Mono.TextTemplating/2.2.1": { + "dependencies": { + "System.CodeDom": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/Mono.TextTemplating.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.1.1" + } + } + }, + "Npgsql/8.0.5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "8.0.5.0", + "fileVersion": "8.0.5.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Npgsql": "8.0.5" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.10.0" + } + } + }, + "RBush/3.2.0": { + "runtime": { + "lib/net6.0/RBush.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.2.0.0" + } + } + }, + "SixLabors.Fonts/1.0.0": { + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "System.CodeDom/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Collections.Immutable/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Composition/6.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "6.0.0", + "System.Composition.Convention": "6.0.0", + "System.Composition.Hosting": "6.0.0", + "System.Composition.Runtime": "6.0.0", + "System.Composition.TypedParts": "6.0.0" + } + }, + "System.Composition.AttributedModel/6.0.0": { + "runtime": { + "lib/net6.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.Convention/6.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.Convention.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.Hosting/6.0.0": { + "dependencies": { + "System.Composition.Runtime": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.Hosting.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.Runtime/6.0.0": { + "runtime": { + "lib/net6.0/System.Composition.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.TypedParts/6.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "6.0.0", + "System.Composition.Hosting": "6.0.0", + "System.Composition.Runtime": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Packaging/8.0.0": { + "runtime": { + "lib/net8.0/System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.IO.Pipelines/6.0.3": {}, + "System.Reflection.Metadata/6.0.1": { + "dependencies": { + "System.Collections.Immutable": "6.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Threading.Channels/6.0.0": {} } }, "libraries": { @@ -18,6 +601,328 @@ "type": "project", "serviceable": false, "sha512": "" + }, + "ClosedXML/0.104.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RVm2fUNWJlBJlg07shrfeWzrHPG5ypI/vARqdUOUbUdaog8yBw8l4IbCHf2MXt0AXtzaZqGNqhFaCAHigCBdfw==", + "path": "closedxml/0.104.1", + "hashPath": "closedxml.0.104.1.nupkg.sha512" + }, + "ClosedXML.Parser/1.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w+/0tsxABS3lkSH8EUlA7IGme+mq5T/Puf3DbOiTckmSuUpAUO2LK29oXYByCcWkBv6wcRHxgWlQb1lxkwI0Tw==", + "path": "closedxml.parser/1.2.0", + "hashPath": "closedxml.parser.1.2.0.nupkg.sha512" + }, + "DocumentFormat.OpenXml/3.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DCK1cwFUJ1FGGyYyo++HWl9H1RkqMWIu+FGOLRy6E4L4y0/HIhlJ7N/n1HKboFfOwKn1cMBRxt1RCuDbIEy5YQ==", + "path": "documentformat.openxml/3.0.1", + "hashPath": "documentformat.openxml.3.0.1.nupkg.sha512" + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ifyI7OW7sggz7LQMIAD2aUsY/zVUON9QaHrpZ4MK33iVMeHlTG4uhUE2aLWb31nry+LCs2ALDAwf8OfUJGjgBg==", + "path": "documentformat.openxml.framework/3.0.1", + "hashPath": "documentformat.openxml.framework.3.0.1.nupkg.sha512" + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "path": "excelnumberformat/1.1.0", + "hashPath": "excelnumberformat.1.1.0.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", + "path": "microsoft.bcl.asyncinterfaces/6.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", + "path": "microsoft.codeanalysis.analyzers/3.3.3", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==", + "path": "microsoft.codeanalysis.common/4.5.0", + "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==", + "path": "microsoft.codeanalysis.csharp/4.5.0", + "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==", + "path": "microsoft.codeanalysis.workspaces.common/4.5.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==", + "path": "microsoft.entityframeworkcore/8.0.10", + "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.10", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.10", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==", + "path": "microsoft.entityframeworkcore.design/8.0.10", + "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==", + "path": "microsoft.entityframeworkcore.relational/8.0.10", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", + "path": "microsoft.extensions.caching.memory/8.0.1", + "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", + "path": "microsoft.extensions.logging/8.0.1", + "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "path": "microsoft.extensions.options/8.0.2", + "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", + "path": "mono.texttemplating/2.2.1", + "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" + }, + "Npgsql/8.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "path": "npgsql/8.0.5", + "hashPath": "npgsql.8.0.5.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==", + "path": "npgsql.entityframeworkcore.postgresql/8.0.10", + "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512" + }, + "RBush/3.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ijGh9N0zZ7JfXk3oQkWCwK8SwSSByexbyh/MjbCjNxOft9eG5ZqKC1vdgiYq78h4IZRFmN4s3JZ/b10Jipud5w==", + "path": "rbush/3.2.0", + "hashPath": "rbush.3.2.0.nupkg.sha512" + }, + "SixLabors.Fonts/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==", + "path": "sixlabors.fonts/1.0.0", + "hashPath": "sixlabors.fonts.1.0.0.nupkg.sha512" + }, + "System.CodeDom/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", + "path": "system.codedom/4.4.0", + "hashPath": "system.codedom.4.4.0.nupkg.sha512" + }, + "System.Collections.Immutable/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "path": "system.collections.immutable/6.0.0", + "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" + }, + "System.Composition/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", + "path": "system.composition/6.0.0", + "hashPath": "system.composition.6.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", + "path": "system.composition.attributedmodel/6.0.0", + "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" + }, + "System.Composition.Convention/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", + "path": "system.composition.convention/6.0.0", + "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", + "path": "system.composition.hosting/6.0.0", + "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", + "path": "system.composition.runtime/6.0.0", + "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", + "path": "system.composition.typedparts/6.0.0", + "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" + }, + "System.IO.Packaging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8g1V4YRpdGAxFcK8v9OjuMdIOJSpF30Zb1JGicwVZhly3I994WFyBdV6mQEo8d3T+URQe55/M0U0eIH0Hts1bg==", + "path": "system.io.packaging/8.0.0", + "hashPath": "system.io.packaging.8.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Reflection.Metadata/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==", + "path": "system.reflection.metadata/6.0.1", + "hashPath": "system.reflection.metadata.6.0.1.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Threading.Channels/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==", + "path": "system.threading.channels/6.0.0", + "hashPath": "system.threading.channels.6.0.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/bin/Debug/net8.0/Posechaemost.dll b/bin/Debug/net8.0/Posechaemost.dll old mode 100644 new mode 100755 index 7712e4a..bc4ace1 Binary files a/bin/Debug/net8.0/Posechaemost.dll and b/bin/Debug/net8.0/Posechaemost.dll differ diff --git a/bin/Debug/net8.0/Posechaemost.pdb b/bin/Debug/net8.0/Posechaemost.pdb old mode 100644 new mode 100755 index 48814a0..a64eb9e Binary files a/bin/Debug/net8.0/Posechaemost.pdb and b/bin/Debug/net8.0/Posechaemost.pdb differ diff --git a/bin/Debug/net8.0/Posechaemost.runtimeconfig.json b/bin/Debug/net8.0/Posechaemost.runtimeconfig.json old mode 100644 new mode 100755 index becfaea..a42fa34 --- a/bin/Debug/net8.0/Posechaemost.runtimeconfig.json +++ b/bin/Debug/net8.0/Posechaemost.runtimeconfig.json @@ -1,11 +1,18 @@ { "runtimeOptions": { "tfm": "net8.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "8.0.0" - }, + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false } } diff --git a/bin/Debug/net8.0/RBush.dll b/bin/Debug/net8.0/RBush.dll new file mode 100755 index 0000000..dad8e8b Binary files /dev/null and b/bin/Debug/net8.0/RBush.dll differ diff --git a/bin/Debug/net8.0/SixLabors.Fonts.dll b/bin/Debug/net8.0/SixLabors.Fonts.dll new file mode 100755 index 0000000..281d8a7 Binary files /dev/null and b/bin/Debug/net8.0/SixLabors.Fonts.dll differ diff --git a/bin/Debug/net8.0/System.CodeDom.dll b/bin/Debug/net8.0/System.CodeDom.dll new file mode 100755 index 0000000..3128b6a Binary files /dev/null and b/bin/Debug/net8.0/System.CodeDom.dll differ diff --git a/bin/Debug/net8.0/System.Composition.AttributedModel.dll b/bin/Debug/net8.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..d37283b Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.AttributedModel.dll differ diff --git a/bin/Debug/net8.0/System.Composition.Convention.dll b/bin/Debug/net8.0/System.Composition.Convention.dll new file mode 100755 index 0000000..b6fa4ab Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.Convention.dll differ diff --git a/bin/Debug/net8.0/System.Composition.Hosting.dll b/bin/Debug/net8.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..c67f1c0 Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.Hosting.dll differ diff --git a/bin/Debug/net8.0/System.Composition.Runtime.dll b/bin/Debug/net8.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..2a4b38c Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.Runtime.dll differ diff --git a/bin/Debug/net8.0/System.Composition.TypedParts.dll b/bin/Debug/net8.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..7c0c780 Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.TypedParts.dll differ diff --git a/bin/Debug/net8.0/System.IO.Packaging.dll b/bin/Debug/net8.0/System.IO.Packaging.dll new file mode 100755 index 0000000..763f339 Binary files /dev/null and b/bin/Debug/net8.0/System.IO.Packaging.dll differ diff --git a/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..b08ba21 Binary files /dev/null and b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..eba2a5a Binary files /dev/null and b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..ff203e1 Binary files /dev/null and b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..fe89036 Binary files /dev/null and b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..3dda417 Binary files /dev/null and b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..4d3bd0a Binary files /dev/null and b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c41bb1f Binary files /dev/null and b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..05845f2 Binary files /dev/null and b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..1e5038d Binary files /dev/null and b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..456ac85 Binary files /dev/null and b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..7bb3187 Binary files /dev/null and b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..01edef3 Binary files /dev/null and b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..de36d31 Binary files /dev/null and b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..71d6443 Binary files /dev/null and b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..23107b9 Binary files /dev/null and b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..291cf9b Binary files /dev/null and b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..ef0d337 Binary files /dev/null and b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..f266330 Binary files /dev/null and b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..6affe5c Binary files /dev/null and b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..263bd04 Binary files /dev/null and b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..a94da35 Binary files /dev/null and b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..c94e8e6 Binary files /dev/null and b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..6e0e837 Binary files /dev/null and b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..212267a Binary files /dev/null and b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..1fae94d Binary files /dev/null and b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..b2e573c Binary files /dev/null and b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..fdbe6ff Binary files /dev/null and b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..5fee24c Binary files /dev/null and b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..9533b36 Binary files /dev/null and b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..fa25298 Binary files /dev/null and b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..1297d58 Binary files /dev/null and b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..8af36a3 Binary files /dev/null and b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..197797b Binary files /dev/null and b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..0fd342c Binary files /dev/null and b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c09c2ab Binary files /dev/null and b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..d6eaab6 Binary files /dev/null and b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..ecfe483 Binary files /dev/null and b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..e9133a5 Binary files /dev/null and b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..baa7776 Binary files /dev/null and b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..74714d8 Binary files /dev/null and b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..2fbf86e Binary files /dev/null and b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..4c57b04 Binary files /dev/null and b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..b551e37 Binary files /dev/null and b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..8758fff Binary files /dev/null and b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..de4fe51 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..67b261c Binary files /dev/null and b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c6b8d86 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..a14ec60 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..2d39791 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..86802cf Binary files /dev/null and b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..691a8fa Binary files /dev/null and b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e8e4ee0 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs old mode 100644 new mode 100755 diff --git a/obj/Debug/net8.0/Posechae.437B4565.Up2Date b/obj/Debug/net8.0/Posechae.437B4565.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net8.0/Posechaemost.AssemblyInfo.cs b/obj/Debug/net8.0/Posechaemost.AssemblyInfo.cs old mode 100644 new mode 100755 index e89b971..497ee5f --- a/obj/Debug/net8.0/Posechaemost.AssemblyInfo.cs +++ b/obj/Debug/net8.0/Posechaemost.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Posechaemost")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0705829116f2c729cee9977f2de521bf54b6e4b1")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+bc674c9649f39b91a997fa4742af88a219fd99ea")] [assembly: System.Reflection.AssemblyProductAttribute("Posechaemost")] [assembly: System.Reflection.AssemblyTitleAttribute("Posechaemost")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net8.0/Posechaemost.AssemblyInfoInputs.cache b/obj/Debug/net8.0/Posechaemost.AssemblyInfoInputs.cache old mode 100644 new mode 100755 index f8c3c80..9f3c2f7 --- a/obj/Debug/net8.0/Posechaemost.AssemblyInfoInputs.cache +++ b/obj/Debug/net8.0/Posechaemost.AssemblyInfoInputs.cache @@ -1 +1 @@ -04d7b3aacea28cffe6e56680c2c82b72f1a837729ee485f47bdc07c464612b47 +3c2955f6adf875fdcc3016c3e58a9c1f93648f50167acd41d612c2d10622ad57 diff --git a/obj/Debug/net8.0/Posechaemost.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/Posechaemost.GeneratedMSBuildEditorConfig.editorconfig old mode 100644 new mode 100755 diff --git a/obj/Debug/net8.0/Posechaemost.GlobalUsings.g.cs b/obj/Debug/net8.0/Posechaemost.GlobalUsings.g.cs old mode 100644 new mode 100755 diff --git a/obj/Debug/net8.0/Posechaemost.assets.cache b/obj/Debug/net8.0/Posechaemost.assets.cache old mode 100644 new mode 100755 index 64caa64..bd11046 Binary files a/obj/Debug/net8.0/Posechaemost.assets.cache and b/obj/Debug/net8.0/Posechaemost.assets.cache differ diff --git a/obj/Debug/net8.0/Posechaemost.csproj.AssemblyReference.cache b/obj/Debug/net8.0/Posechaemost.csproj.AssemblyReference.cache index 784edbe..f3647ff 100644 Binary files a/obj/Debug/net8.0/Posechaemost.csproj.AssemblyReference.cache and b/obj/Debug/net8.0/Posechaemost.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net8.0/Posechaemost.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0/Posechaemost.csproj.CoreCompileInputs.cache old mode 100644 new mode 100755 index 786b133..52f23dd --- a/obj/Debug/net8.0/Posechaemost.csproj.CoreCompileInputs.cache +++ b/obj/Debug/net8.0/Posechaemost.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -d16495386ea1e78818b82168a231de57a07fc0aed0d80bae9784f57984cdf7ac +2fbbd426ffeba2570f42561e98b16d5f8c2614ac04f9e9613e42b78dbc52e27b diff --git a/obj/Debug/net8.0/Posechaemost.csproj.FileListAbsolute.txt b/obj/Debug/net8.0/Posechaemost.csproj.FileListAbsolute.txt old mode 100644 new mode 100755 index 0750918..b5648a1 --- a/obj/Debug/net8.0/Posechaemost.csproj.FileListAbsolute.txt +++ b/obj/Debug/net8.0/Posechaemost.csproj.FileListAbsolute.txt @@ -12,3 +12,193 @@ /home/gara/csharp/Posechaemost/obj/Debug/net8.0/Posechaemost.pdb /home/gara/csharp/Posechaemost/obj/Debug/net8.0/Posechaemost.genruntimeconfig.cache /home/gara/csharp/Posechaemost/obj/Debug/net8.0/ref/Posechaemost.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ClosedXML.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ClosedXML.Parser.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/DocumentFormat.OpenXml.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/DocumentFormat.OpenXml.Framework.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ExcelNumberFormat.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Humanizer.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Mono.TextTemplating.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Npgsql.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/RBush.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/SixLabors.Fonts.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/System.CodeDom.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/System.Composition.AttributedModel.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/System.Composition.Convention.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/System.Composition.Hosting.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/System.Composition.Runtime.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/System.Composition.TypedParts.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/System.IO.Packaging.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/Posechaemost/obj/Debug/net8.0/Posechaemost.csproj.AssemblyReference.cache +/home/gara/csharp/Posechaemost/obj/Debug/net8.0/Posechae.437B4565.Up2Date +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Posechaemost +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Posechaemost.deps.json +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Posechaemost.runtimeconfig.json +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Posechaemost.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Posechaemost.pdb +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ClosedXML.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ClosedXML.Parser.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/DocumentFormat.OpenXml.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/DocumentFormat.OpenXml.Framework.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ExcelNumberFormat.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Humanizer.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Mono.TextTemplating.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Npgsql.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/RBush.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/SixLabors.Fonts.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/System.CodeDom.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/System.Composition.AttributedModel.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/System.Composition.Convention.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/System.Composition.Hosting.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/System.Composition.Runtime.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/System.Composition.TypedParts.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/System.IO.Packaging.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/Posechaemost.csproj.AssemblyReference.cache +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/Posechaemost.GeneratedMSBuildEditorConfig.editorconfig +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/Posechaemost.AssemblyInfoInputs.cache +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/Posechaemost.AssemblyInfo.cs +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/Posechaemost.csproj.CoreCompileInputs.cache +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/Posechae.437B4565.Up2Date +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/Posechaemost.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/refint/Posechaemost.dll +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/Posechaemost.pdb +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/Posechaemost.genruntimeconfig.cache +/home/gara/csharp/BIGPROGECT/Posechaemost/obj/Debug/net8.0/ref/Posechaemost.dll diff --git a/obj/Debug/net8.0/Posechaemost.dll b/obj/Debug/net8.0/Posechaemost.dll old mode 100644 new mode 100755 index 7712e4a..bc4ace1 Binary files a/obj/Debug/net8.0/Posechaemost.dll and b/obj/Debug/net8.0/Posechaemost.dll differ diff --git a/obj/Debug/net8.0/Posechaemost.genruntimeconfig.cache b/obj/Debug/net8.0/Posechaemost.genruntimeconfig.cache old mode 100644 new mode 100755 index af7189e..5bb08ae --- a/obj/Debug/net8.0/Posechaemost.genruntimeconfig.cache +++ b/obj/Debug/net8.0/Posechaemost.genruntimeconfig.cache @@ -1 +1 @@ -a9417c411c66b66a4df5d92d9f310b644c078377e1751bf58abb262a26de136e +4af8ed0c3635623f26c0bf989539d02b36219684f9c067489bf608d9b11d5f5a diff --git a/obj/Debug/net8.0/Posechaemost.pdb b/obj/Debug/net8.0/Posechaemost.pdb old mode 100644 new mode 100755 index 48814a0..a64eb9e Binary files a/obj/Debug/net8.0/Posechaemost.pdb and b/obj/Debug/net8.0/Posechaemost.pdb differ diff --git a/obj/Debug/net8.0/apphost b/obj/Debug/net8.0/apphost index 593b877..d36deed 100755 Binary files a/obj/Debug/net8.0/apphost and b/obj/Debug/net8.0/apphost differ diff --git a/obj/Debug/net8.0/ref/Posechaemost.dll b/obj/Debug/net8.0/ref/Posechaemost.dll old mode 100644 new mode 100755 index ddd7c01..905531c Binary files a/obj/Debug/net8.0/ref/Posechaemost.dll and b/obj/Debug/net8.0/ref/Posechaemost.dll differ diff --git a/obj/Debug/net8.0/refint/Posechaemost.dll b/obj/Debug/net8.0/refint/Posechaemost.dll old mode 100644 new mode 100755 index ddd7c01..905531c Binary files a/obj/Debug/net8.0/refint/Posechaemost.dll and b/obj/Debug/net8.0/refint/Posechaemost.dll differ diff --git a/obj/Posechaemost.csproj.EntityFrameworkCore.targets b/obj/Posechaemost.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..7d6485d --- /dev/null +++ b/obj/Posechaemost.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/obj/Posechaemost.csproj.nuget.dgspec.json b/obj/Posechaemost.csproj.nuget.dgspec.json index e6763e0..01879d9 100644 --- a/obj/Posechaemost.csproj.nuget.dgspec.json +++ b/obj/Posechaemost.csproj.nuget.dgspec.json @@ -43,6 +43,10 @@ "net8.0": { "targetAlias": "net8.0", "dependencies": { + "ClosedXML": { + "target": "Package", + "version": "[0.104.1, )" + }, "Microsoft.EntityFrameworkCore.Design": { "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", "suppressParent": "All", @@ -74,6 +78,9 @@ "assetTargetFallback": true, "warn": true, "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, "Microsoft.NETCore.App": { "privateAssets": "all" } diff --git a/obj/project.assets.json b/obj/project.assets.json index cb9e1f0..6234818 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -2,6 +2,85 @@ "version": 3, "targets": { "net8.0": { + "ClosedXML/0.104.1": { + "type": "package", + "dependencies": { + "ClosedXML.Parser": "[1.2.0, 2.0.0)", + "DocumentFormat.OpenXml": "[3.0.1, 4.0.0)", + "ExcelNumberFormat": "1.1.0", + "RBush": "3.2.0", + "SixLabors.Fonts": "1.0.0", + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + } + }, + "ClosedXML.Parser/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml/3.0.1": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.0.1" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + } + }, "Humanizer.Core/2.14.1": { "type": "package", "compile": { @@ -593,6 +672,32 @@ } } }, + "RBush/3.2.0": { + "type": "package", + "compile": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + } + }, + "SixLabors.Fonts/1.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + } + }, "System.CodeDom/4.4.0": { "type": "package", "compile": { @@ -727,6 +832,22 @@ "buildTransitive/netcoreapp3.1/_._": {} } }, + "System.IO.Packaging/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, "System.IO.Pipelines/6.0.3": { "type": "package", "compile": { @@ -822,6 +943,104 @@ } }, "libraries": { + "ClosedXML/0.104.1": { + "sha512": "RVm2fUNWJlBJlg07shrfeWzrHPG5ypI/vARqdUOUbUdaog8yBw8l4IbCHf2MXt0AXtzaZqGNqhFaCAHigCBdfw==", + "type": "package", + "path": "closedxml/0.104.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "closedxml.0.104.1.nupkg.sha512", + "closedxml.nuspec", + "lib/netstandard2.0/ClosedXML.dll", + "lib/netstandard2.0/ClosedXML.pdb", + "lib/netstandard2.0/ClosedXML.xml", + "lib/netstandard2.1/ClosedXML.dll", + "lib/netstandard2.1/ClosedXML.pdb", + "lib/netstandard2.1/ClosedXML.xml", + "nuget-logo.png" + ] + }, + "ClosedXML.Parser/1.2.0": { + "sha512": "w+/0tsxABS3lkSH8EUlA7IGme+mq5T/Puf3DbOiTckmSuUpAUO2LK29oXYByCcWkBv6wcRHxgWlQb1lxkwI0Tw==", + "type": "package", + "path": "closedxml.parser/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "closedxml.parser.1.2.0.nupkg.sha512", + "closedxml.parser.nuspec", + "lib/netstandard2.0/ClosedXML.Parser.dll", + "lib/netstandard2.0/ClosedXML.Parser.xml", + "lib/netstandard2.1/ClosedXML.Parser.dll", + "lib/netstandard2.1/ClosedXML.Parser.xml" + ] + }, + "DocumentFormat.OpenXml/3.0.1": { + "sha512": "DCK1cwFUJ1FGGyYyo++HWl9H1RkqMWIu+FGOLRy6E4L4y0/HIhlJ7N/n1HKboFfOwKn1cMBRxt1RCuDbIEy5YQ==", + "type": "package", + "path": "documentformat.openxml/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.3.0.1.nupkg.sha512", + "documentformat.openxml.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/net8.0/DocumentFormat.OpenXml.dll", + "lib/net8.0/DocumentFormat.OpenXml.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.xml" + ] + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "sha512": "ifyI7OW7sggz7LQMIAD2aUsY/zVUON9QaHrpZ4MK33iVMeHlTG4uhUE2aLWb31nry+LCs2ALDAwf8OfUJGjgBg==", + "type": "package", + "path": "documentformat.openxml.framework/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.framework.3.0.1.nupkg.sha512", + "documentformat.openxml.framework.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.Framework.dll", + "lib/net35/DocumentFormat.OpenXml.Framework.xml", + "lib/net40/DocumentFormat.OpenXml.Framework.dll", + "lib/net40/DocumentFormat.OpenXml.Framework.xml", + "lib/net46/DocumentFormat.OpenXml.Framework.dll", + "lib/net46/DocumentFormat.OpenXml.Framework.xml", + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net6.0/DocumentFormat.OpenXml.Framework.xml", + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net8.0/DocumentFormat.OpenXml.Framework.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml" + ] + }, + "ExcelNumberFormat/1.1.0": { + "sha512": "R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "type": "package", + "path": "excelnumberformat/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excelnumberformat.1.1.0.nupkg.sha512", + "excelnumberformat.nuspec", + "icon.png", + "lib/net20/ExcelNumberFormat.dll", + "lib/net20/ExcelNumberFormat.xml", + "lib/netstandard1.0/ExcelNumberFormat.dll", + "lib/netstandard1.0/ExcelNumberFormat.xml", + "lib/netstandard2.0/ExcelNumberFormat.dll", + "lib/netstandard2.0/ExcelNumberFormat.xml" + ] + }, "Humanizer.Core/2.14.1": { "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", "type": "package", @@ -1786,6 +2005,42 @@ "postgresql.png" ] }, + "RBush/3.2.0": { + "sha512": "ijGh9N0zZ7JfXk3oQkWCwK8SwSSByexbyh/MjbCjNxOft9eG5ZqKC1vdgiYq78h4IZRFmN4s3JZ/b10Jipud5w==", + "type": "package", + "path": "rbush/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/RBush.dll", + "lib/net6.0/RBush.xml", + "lib/netcoreapp3.1/RBush.dll", + "lib/netcoreapp3.1/RBush.xml", + "lib/netstandard1.2/RBush.dll", + "lib/netstandard1.2/RBush.xml", + "rbush.3.2.0.nupkg.sha512", + "rbush.nuspec", + "readme.md" + ] + }, + "SixLabors.Fonts/1.0.0": { + "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==", + "type": "package", + "path": "sixlabors.fonts/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/SixLabors.Fonts.dll", + "lib/netcoreapp3.1/SixLabors.Fonts.xml", + "lib/netstandard2.0/SixLabors.Fonts.dll", + "lib/netstandard2.0/SixLabors.Fonts.xml", + "lib/netstandard2.1/SixLabors.Fonts.dll", + "lib/netstandard2.1/SixLabors.Fonts.xml", + "sixlabors.fonts.1.0.0.nupkg.sha512", + "sixlabors.fonts.128.png", + "sixlabors.fonts.nuspec" + ] + }, "System.CodeDom/4.4.0": { "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", "type": "package", @@ -1962,6 +2217,35 @@ "useSharedDesignerContext.txt" ] }, + "System.IO.Packaging/8.0.0": { + "sha512": "8g1V4YRpdGAxFcK8v9OjuMdIOJSpF30Zb1JGicwVZhly3I994WFyBdV6mQEo8d3T+URQe55/M0U0eIH0Hts1bg==", + "type": "package", + "path": "system.io.packaging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Packaging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "lib/net462/System.IO.Packaging.dll", + "lib/net462/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/net7.0/System.IO.Packaging.dll", + "lib/net7.0/System.IO.Packaging.xml", + "lib/net8.0/System.IO.Packaging.dll", + "lib/net8.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.8.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.IO.Pipelines/6.0.3": { "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", "type": "package", @@ -2104,6 +2388,7 @@ }, "projectFileDependencyGroups": { "net8.0": [ + "ClosedXML >= 0.104.1", "Microsoft.EntityFrameworkCore.Design >= 8.0.10", "Microsoft.EntityFrameworkcore >= 8.0.10", "Microsoft.Extensions.DependencyInjection >= 8.0.1", @@ -2152,6 +2437,10 @@ "net8.0": { "targetAlias": "net8.0", "dependencies": { + "ClosedXML": { + "target": "Package", + "version": "[0.104.1, )" + }, "Microsoft.EntityFrameworkCore.Design": { "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", "suppressParent": "All", @@ -2183,6 +2472,9 @@ "assetTargetFallback": true, "warn": true, "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, "Microsoft.NETCore.App": { "privateAssets": "all" } diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index 1f16185..665790b 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,9 +1,14 @@ { "version": 2, - "dgSpecHash": "Mj/MlEhPDCU=", + "dgSpecHash": "1zLBEL6tKbs=", "success": true, "projectFilePath": "/home/gara/csharp/Posechaemost/Posechaemost.csproj", "expectedPackageFiles": [ + "/home/gara/.nuget/packages/closedxml/0.104.1/closedxml.0.104.1.nupkg.sha512", + "/home/gara/.nuget/packages/closedxml.parser/1.2.0/closedxml.parser.1.2.0.nupkg.sha512", + "/home/gara/.nuget/packages/documentformat.openxml/3.0.1/documentformat.openxml.3.0.1.nupkg.sha512", + "/home/gara/.nuget/packages/documentformat.openxml.framework/3.0.1/documentformat.openxml.framework.3.0.1.nupkg.sha512", + "/home/gara/.nuget/packages/excelnumberformat/1.1.0/excelnumberformat.1.1.0.nupkg.sha512", "/home/gara/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", "/home/gara/.nuget/packages/microsoft.bcl.asyncinterfaces/6.0.0/microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", "/home/gara/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3/microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", @@ -29,6 +34,8 @@ "/home/gara/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512", "/home/gara/.nuget/packages/npgsql/8.0.5/npgsql.8.0.5.nupkg.sha512", "/home/gara/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512", + "/home/gara/.nuget/packages/rbush/3.2.0/rbush.3.2.0.nupkg.sha512", + "/home/gara/.nuget/packages/sixlabors.fonts/1.0.0/sixlabors.fonts.1.0.0.nupkg.sha512", "/home/gara/.nuget/packages/system.codedom/4.4.0/system.codedom.4.4.0.nupkg.sha512", "/home/gara/.nuget/packages/system.collections.immutable/6.0.0/system.collections.immutable.6.0.0.nupkg.sha512", "/home/gara/.nuget/packages/system.composition/6.0.0/system.composition.6.0.0.nupkg.sha512", @@ -37,6 +44,7 @@ "/home/gara/.nuget/packages/system.composition.hosting/6.0.0/system.composition.hosting.6.0.0.nupkg.sha512", "/home/gara/.nuget/packages/system.composition.runtime/6.0.0/system.composition.runtime.6.0.0.nupkg.sha512", "/home/gara/.nuget/packages/system.composition.typedparts/6.0.0/system.composition.typedparts.6.0.0.nupkg.sha512", + "/home/gara/.nuget/packages/system.io.packaging/8.0.0/system.io.packaging.8.0.0.nupkg.sha512", "/home/gara/.nuget/packages/system.io.pipelines/6.0.3/system.io.pipelines.6.0.3.nupkg.sha512", "/home/gara/.nuget/packages/system.reflection.metadata/6.0.1/system.reflection.metadata.6.0.1.nupkg.sha512", "/home/gara/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",