| @ -0,0 +1,13 @@ | |||
| <Project Sdk="Microsoft.NET.Sdk"> | |||
| <PropertyGroup> | |||
| <TargetFramework>net6.0</TargetFramework> | |||
| <ImplicitUsings>enable</ImplicitUsings> | |||
| <Nullable>enable</Nullable> | |||
| </PropertyGroup> | |||
| <ItemGroup> | |||
| <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" /> | |||
| </ItemGroup> | |||
| </Project> | |||
| @ -0,0 +1,40 @@ | |||
| using Microsoft.EntityFrameworkCore; | |||
| using ACLib.P2.AppContext.Models; | |||
| namespace ACLib.P2.AppContext | |||
| { | |||
| public class DatabaseContext: DbContext | |||
| { | |||
| public DatabaseContext(DbContextOptions<DatabaseContext> options) : base(options) { } | |||
| public DbSet<AC_AcademicAlerts> AC_AcademicAlerts { get; set; } | |||
| public DbSet<AC_AppointmentLog> AC_AppointmentLog { get; set; } | |||
| public DbSet<AC_ApprovalStatus> AC_ApprovalStatus { get; set; } | |||
| public DbSet<AC_ClassRun> AC_ClassRun { get; set; } | |||
| public DbSet<AC_Consellings> AC_Consellings { get; set; } | |||
| public DbSet<AC_Consequences> AC_Consequences { get; set; } | |||
| public DbSet<AC_Instructors> AC_Instructors { get; set; } | |||
| public DbSet<AC_NickNames> AC_NickNames { get; set; } | |||
| public DbSet<AC_NonAcademicAwards> AC_NonAcademicAwards { get; set; } | |||
| public DbSet<AC_Semesters> AC_Semesters { get; set; } | |||
| public DbSet<AC_StudentAccommodations> AC_StudentAccommodations { get; set; } | |||
| public DbSet<AC_StudentAccommodationTerms> AC_StudentAccommodationTerms { get; set; } | |||
| public DbSet<AC_StudentAppeals> AC_StudentAppeals { get; set; } | |||
| public DbSet<AC_StudentLeaves> AC_StudentLeaves { get; set; } | |||
| public DbSet<AC_StudentComplains> AC_StudentComplains { get; set; } | |||
| public DbSet<AC_StudentExamDeferrals> AC_StudentExamDeferrals { get; set; } | |||
| public DbSet<AC_StudentNonAcademicMisconducts> AC_StudentNonAcademicMisconducts { get; set; } | |||
| public DbSet<AC_TermCourseSeats> AC_TermCourseSeats { get; set; } | |||
| public DbSet<AC_TicketCategories> AC_TicketCategories { get; set; } | |||
| public DbSet<AC_Tickets> AC_Tickets { get; set; } | |||
| public DbSet<AC_TicketMessages> AC_TicketMessages { get; set; } | |||
| public DbSet<AC_TicketOnline> AC_TicketOnline { get; set; } | |||
| public DbSet<AC_TicketUserAssociations> AC_TicketUserAssociations { get; set; } | |||
| public DbSet<AC_WLCSupportingDocs> AC_WLCSupportingDocs { get; set; } | |||
| public DbSet<AC_WorkshopLog> AC_WorkshopLog { get; set; } | |||
| public DbSet<AC_WorkshopTypes> AC_WorkshopTypes { get; set; } | |||
| public DbSet<AC_Clients> AC_Clients { get; set; } | |||
| public DbSet<AC_Users> AC_User { get; set; } | |||
| public DbSet<AC_ApplicantInfo> AC_ApplicantInfo { get; set; } | |||
| public DbSet<AC_Role> AC_Role { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,38 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_AcademicAlerts | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public int AlertTypeID { get; set; } | |||
| public int FractionID { get; set; } | |||
| public int SemesterID { get; set; } | |||
| public int CampusID { get; set; } | |||
| public string Course { get; set; } | |||
| public string Descript { get; set; } | |||
| public Nullable<System.DateTime> CommunicationDate { get; set; } | |||
| public string OutCome { get; set; } | |||
| public string SupportingFile { get; set; } | |||
| public Nullable<System.DateTime> EventDate { get; set; } | |||
| public int Point { get; set; } | |||
| public string FiledBy { get; set; } | |||
| public string FollowUp { get; set; } | |||
| public int ConsequenceID { get; set; } | |||
| public int ApprovalID { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| public Nullable<System.DateTime> UpdateDate { get; set; } | |||
| //public virtual AC_ApplicantInfo AC_ApplicantInfo { get; set; } | |||
| //public virtual AC_AlertTypes AC_AlertTypes { get; set; } | |||
| //public virtual AC_AlertFractions AC_AlertFractions { get; set; } | |||
| public virtual AC_Semesters AC_Semesters { get; set; } | |||
| //public virtual AC_Campuses AC_Campuses { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,28 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_AppointmentLog | |||
| { | |||
| [Key] | |||
| public int AptLogID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public Nullable<System.DateTime> AptDate { get; set; } | |||
| public string AptDuration { get; set; } | |||
| public int SemesterID { get; set; } | |||
| public int ClassID { get; set; } | |||
| public string Course { get; set; } | |||
| public string Assignment { get; set; } | |||
| public string StaffName { get; set; } | |||
| public string AptComment { get; set; } | |||
| public string AdminNote { get; set; } | |||
| public bool NotifyingFlag { get; set; } | |||
| public string Status { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,18 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_ApprovalStatus | |||
| { | |||
| [Key] | |||
| public int ApprovalID { get; set; } | |||
| public string ApprovalName { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,53 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_ClassRun | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public Nullable<int> ClassID { get; set; } | |||
| public string CourseNumber { get; set; } | |||
| public string CourseRunTitle { get; set; } | |||
| public Nullable<System.DateTime> ClassStartdate { get; set; } | |||
| public Nullable<System.DateTime> ClassEnddate { get; set; } | |||
| public Nullable<byte> NumberWeeks { get; set; } | |||
| //public Nullable<bool> Monday { get; set; } | |||
| //public Nullable<System.TimeSpan> MondayStart { get; set; } | |||
| //public Nullable<System.TimeSpan> MondayEnd { get; set; } | |||
| //public Nullable<bool> Tuesday { get; set; } | |||
| //public Nullable<System.TimeSpan> TuesdayStart { get; set; } | |||
| //public Nullable<System.TimeSpan> TuesdayEnd { get; set; } | |||
| //public Nullable<bool> Wednesday { get; set; } | |||
| //public Nullable<System.TimeSpan> WednesdayStart { get; set; } | |||
| //public Nullable<System.TimeSpan> WednesdayEnd { get; set; } | |||
| //public Nullable<bool> Thursday { get; set; } | |||
| //public Nullable<System.TimeSpan> ThursdayStart { get; set; } | |||
| //public Nullable<System.TimeSpan> ThursdayEnd { get; set; } | |||
| //public Nullable<bool> Friday { get; set; } | |||
| //public Nullable<System.TimeSpan> FridayStart { get; set; } | |||
| //public Nullable<System.TimeSpan> FridayEnd { get; set; } | |||
| //public Nullable<bool> Saturday { get; set; } | |||
| //public Nullable<System.TimeSpan> SaturdayStart { get; set; } | |||
| //public Nullable<System.TimeSpan> SaturdayEnd { get; set; } | |||
| public Nullable<int> InstructorID { get; set; } | |||
| public Nullable<int> SemesterID { get; set; } | |||
| public string Section { get; set; } | |||
| public int CampusID { get; set; } | |||
| //public string Classroom { get; set; } | |||
| public Nullable<byte> MaxSeats { get; set; } | |||
| public bool Scheduled { get; set; } | |||
| public Nullable<System.DateTime> UpdateDate { get; set; } | |||
| public Nullable<System.DateTime> SyncDate { get; set; } | |||
| //public virtual AC_Courses AC_Courses { get; set; } | |||
| public virtual AC_Semesters AC_Semesters { get; set; } | |||
| //public virtual IEnumerable<AC_ClassSections> AC_ClassSections { get; set; } | |||
| public virtual AC_Instructors AC_Instructors { get; set; } | |||
| //public virtual AC_Campuses AC_Campuses { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,17 @@ | |||
| using System; | |||
| using System.ComponentModel.DataAnnotations; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_Clients | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public string ClientName { get; set; } | |||
| public string ClientID { get; set; } | |||
| public string ClientSecret { get; set; } | |||
| public int Status { get; set; } | |||
| public DateTime CreatedDate { get; set; } | |||
| public DateTime? UpdatedDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,29 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_Consellings | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public Nullable<System.DateTime> ConsellDate { get; set; } | |||
| public string Location { get; set; } | |||
| public bool HighRiskFlag { get; set; } | |||
| public bool SelfRishFlag { get; set; } | |||
| public bool UPREFlag { get; set; } | |||
| public bool Rev1Flag { get; set; } | |||
| public bool Rev2Flag { get; set; } | |||
| public bool Deleted { get; set; } | |||
| public string Note { get; set; } | |||
| public string Counseller { get; set; } | |||
| public string ReferredBy { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| public Nullable<System.DateTime> UpdateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,17 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_Consequences | |||
| { | |||
| [Key] | |||
| public int ConsequenceID { get; set; } | |||
| public int Name { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,41 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_Instructors | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public Nullable<int> InstructorID { get; set; } | |||
| public Nullable<int> UserTypeID { get; set; } | |||
| public string FirstName { get; set; } | |||
| public string MiddleName { get; set; } | |||
| public string LastName { get; set; } | |||
| public Nullable<System.DateTime> Birthday { get; set; } | |||
| public string Phone { get; set; } | |||
| public string Cell { get; set; } | |||
| public string Email { get; set; } | |||
| public string Position { get; set; } | |||
| public int CampusID { get; set; } | |||
| public int InstructorTypeID { get; set; } | |||
| public string EmployeeID { get; set; } | |||
| public int DepartmentID { get; set; } | |||
| public string Manager { get; set; } | |||
| public bool IsManager { get; set; } | |||
| public string Education { get; set; } | |||
| public string AdditionalQualification { get; set; } | |||
| public string Address { get; set; } | |||
| public int RoleID { get; set; } | |||
| public string Status { get; set; } | |||
| public string Picture { get; set; } | |||
| public string TeachingCourse { get; set; } | |||
| public Nullable<System.DateTime> Employmentdate { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| public Nullable<System.DateTime> UpdateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,19 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_NickNames | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public int InstructorID { get; set; } | |||
| public String NickName { get; set; } | |||
| public Nullable<System.DateTime> UpdateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,18 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_NonAcademicAwards | |||
| { | |||
| [Key] | |||
| public int AwardID { get; set; } | |||
| public string Name { get; set; } | |||
| public string Description { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,15 @@ | |||
| using System; | |||
| using System.ComponentModel.DataAnnotations; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_Role | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public string Name { get; set; } | |||
| public int Status { get; set; } | |||
| public DateTime CreatedDate { get; set; } | |||
| public DateTime? UpdatedDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,40 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_Semesters | |||
| { | |||
| [Key] | |||
| public int SemesterID { get; set; } | |||
| public string SemesterName { get; set; } | |||
| public Nullable<System.DateTime> StartDate { get; set; } | |||
| public Nullable<System.DateTime> EndDate { get; set; } | |||
| public Nullable<System.DateTime> LastClassDate { get; set; } | |||
| public Nullable<System.DateTime> InstructorAccessStart { get; set; } | |||
| public Nullable<System.DateTime> InstructorAccessEnd { get; set; } | |||
| public string Weeks { get; set; } | |||
| public Nullable<System.DateTime> RegistrationStart { get; set; } | |||
| public Nullable<System.DateTime> RegistrationEnd { get; set; } | |||
| public Nullable<System.DateTime> OrientationDate { get; set; } | |||
| public Nullable<System.DateTime> LastDropingDate { get; set; } | |||
| public Nullable<System.DateTime> LateRegistrationStart { get; set; } | |||
| public Nullable<System.DateTime> LateRegistrationEnd { get; set; } | |||
| public Nullable<System.DateTime> LastWithdrawDate { get; set; } | |||
| public Nullable<System.DateTime> ExamStartDate { get; set; } | |||
| public Nullable<System.DateTime> ExamEndDate { get; set; } | |||
| public string WeeksWithExam { get; set; } | |||
| public Nullable<bool> RegistrationOn { get; set; } | |||
| public int MaxCourses { get; set; } | |||
| public Nullable<System.DateTime> ComissionGenDate { get; set; } | |||
| public Nullable<System.DateTime> SemesterRollDate { get; set; } | |||
| public Nullable<System.DateTime> GradeRollDate { get; set; } | |||
| public Nullable<System.DateTime> GradeSubmissionLastDate { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| public Nullable<System.DateTime> UpdateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,20 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_StudentAccommodationTerms | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int AccommID { get; set; } | |||
| public int SemesterID { get; set; } | |||
| public String SemesterName { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,32 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_StudentAccommodations | |||
| { | |||
| [Key] | |||
| public int AccommID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public string AccommType { get; set; } | |||
| public string FiledIn { get; set; } | |||
| public string Detail { get; set; } | |||
| public string SupportingLink { get; set; } | |||
| public Nullable<System.DateTime> ReceiveDate { get; set; } | |||
| public Nullable<System.DateTime> DecisionDate { get; set; } | |||
| public string DecidedBy { get; set; } | |||
| public string Status { get; set; } | |||
| public string ApproveCondition { get; set; } | |||
| public string Note { get; set; } | |||
| public string CreatedBy { get; set; } | |||
| public Nullable<System.DateTime> CreatedDate { get; set; } | |||
| public string UpdatedBy { get; set; } | |||
| public Nullable<System.DateTime> UpdatedDate { get; set; } | |||
| public virtual IEnumerable<AC_StudentAccommodationTerms> AC_StudentAccommodationTerms { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,37 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_StudentAppeals | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public string AppealType { get; set; } | |||
| public int AppealID { get; set; } | |||
| public Nullable<System.DateTime> AppealReceiveDate { get; set; } | |||
| public int SemesterID { get; set; } | |||
| public int ClassID { get; set; } | |||
| public string ExamType { get; set; } | |||
| public string FiledIn { get; set; } | |||
| public string EnteredBy { get; set; } | |||
| public string Detail { get; set; } | |||
| public string SupportingLink { get; set; } | |||
| public Nullable<System.DateTime> ReceiveDate { get; set; } | |||
| public string Status { get; set; } | |||
| public string DecidedBy { get; set; } | |||
| public Nullable<System.DateTime> DecisionDate { get; set; } | |||
| public string OutCome { get; set; } | |||
| public string Note { get; set; } | |||
| public string CreatedBy { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| public string UpdatedBy { get; set; } | |||
| public Nullable<System.DateTime> UpdatedDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,33 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_StudentComplains | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public int SemesterID { get; set; } | |||
| public string Against { get; set; } | |||
| public string AgainstOther { get; set; } | |||
| public string FiledIn { get; set; } | |||
| public string EnteredBy { get; set; } | |||
| public string Detail { get; set; } | |||
| public string SupportingLink { get; set; } | |||
| public Nullable<System.DateTime> ReceiveDate { get; set; } | |||
| public string Status { get; set; } | |||
| public string OutCome { get; set; } | |||
| public string Note { get; set; } | |||
| public string DecidedBy { get; set; } | |||
| public Nullable<System.DateTime> DecisionDate { get; set; } | |||
| public string CreatedBy { get; set; } | |||
| public Nullable<System.DateTime> CreatedDate { get; set; } | |||
| public string UpdatedBy { get; set; } | |||
| public Nullable<System.DateTime> UpdatedDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,34 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_StudentExamDeferrals | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public int SemesterID { get; set; } | |||
| public int ClassID { get; set; } | |||
| public string FiledIn { get; set; } | |||
| public string EnteredBy { get; set; } | |||
| public string ExamType { get; set; } | |||
| public string OtherNote { get; set; } | |||
| public string Detail { get; set; } | |||
| public string SupportingLink { get; set; } | |||
| public Nullable<System.DateTime> ReceiveDate { get; set; } | |||
| public string Status { get; set; } | |||
| public string Note { get; set; } | |||
| public Nullable<System.DateTime> NewExamDate { get; set; } | |||
| public string DecidedBy { get; set; } | |||
| public Nullable<System.DateTime> DecisionDate { get; set; } | |||
| public string CreatedBy { get; set; } | |||
| public Nullable<System.DateTime> CreatedDate { get; set; } | |||
| public string UpdatedBy { get; set; } | |||
| public Nullable<System.DateTime> UpdatedDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,33 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_StudentLeaves | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public string LeaveType { get; set; } | |||
| public int SemesterID { get; set; } | |||
| public Nullable<System.DateTime> StartDate { get; set; } | |||
| public Nullable<System.DateTime> EndDate { get; set; } | |||
| public string FiledIn { get; set; } | |||
| public string EnteredBy { get; set; } | |||
| public string Detail { get; set; } | |||
| public string SupportingLink { get; set; } | |||
| public Nullable<System.DateTime> ReceiveDate { get; set; } | |||
| public string Status { get; set; } | |||
| public string Note { get; set; } | |||
| public string DecidedBy { get; set; } | |||
| public Nullable<System.DateTime> DecisionDate { get; set; } | |||
| public string CreatedBy { get; set; } | |||
| public Nullable<System.DateTime> CreatedDate { get; set; } | |||
| public string UpdatedBy { get; set; } | |||
| public Nullable<System.DateTime> UpdatedDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,33 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_StudentNonAcademicMisconducts | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public int SemesterID { get; set; } | |||
| public int ClassID { get; set; } | |||
| public string FiledIn { get; set; } | |||
| public string FiledBy { get; set; } | |||
| public string EnteredBy { get; set; } | |||
| public string SupportingLink { get; set; } | |||
| public string SummaryNote { get; set; } | |||
| public Nullable<System.DateTime> ReceiveDate { get; set; } | |||
| public string Status { get; set; } | |||
| public string Note { get; set; } | |||
| public string OutCome { get; set; } | |||
| public string DecidedBy { get; set; } | |||
| public Nullable<System.DateTime> DecisionDate { get; set; } | |||
| public string CreatedBy { get; set; } | |||
| public Nullable<System.DateTime> CreatedDate { get; set; } | |||
| public string UpdatedBy { get; set; } | |||
| public Nullable<System.DateTime> UpdatedDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,41 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_TermCourseSeats | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public Nullable<int> CourseSeatID { get; set; } | |||
| public Nullable<int> ApplicationID { get; set; } | |||
| public Nullable<int> SemesterID { get; set; } | |||
| public Nullable<int> RCategoryID { get; set; } | |||
| public Nullable<int> ClassID { get; set; } | |||
| public string CourseRunTitle { get; set; } | |||
| public float CourseFee { get; set; } | |||
| public float LabFee { get; set; } | |||
| public float LateFee { get; set; } | |||
| public Nullable<bool> CoursePaid { get; set; } | |||
| public Nullable<System.DateTime> PaidDate { get; set; } | |||
| public string ReceiptNumber { get; set; } | |||
| public string ClassType { get; set; } | |||
| public string ClassRoom { get; set; } | |||
| public Nullable<System.DateTime> RegistrationDate { get; set; } | |||
| public Nullable<System.DateTime> DropingDate { get; set; } | |||
| public Nullable<bool> Locked { get; set; } | |||
| public string RegSource { get; set; } | |||
| public Nullable<System.DateTime> UpdateDate { get; set; } | |||
| //public virtual AC_Courses AC_Courses { get; set; } | |||
| public virtual AC_ClassRun AC_ClassRun { get; set; } | |||
| //public virtual AC_ApplicantInfo AC_ApplicantInfo { get; set; } | |||
| //public virtual AC_ApplicantCourse AC_ApplicantCourse { get; set; } | |||
| public virtual AC_Semesters AC_Semesters { get; set; } | |||
| //public virtual AC_PreAvailableCourses AC_PreAvailableCourses { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,20 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_TicketCategories | |||
| { | |||
| [Key] | |||
| public int TicketCategoryID { get; set; } | |||
| public string CategoryName { get; set; } | |||
| public string SupportUsers { get; set; } | |||
| public string OwnerRoles { get; set; } | |||
| public string TicketUsers { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,23 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_TicketMessages | |||
| { | |||
| [Key] | |||
| public int MessageID { get; set; } | |||
| public int MsgFromUserID { get; set; } | |||
| public string MsgFromUserName { get; set; } | |||
| public string MsgToUserID { get; set; } | |||
| public string Message { get; set; } | |||
| public string FileUpload { get; set; } | |||
| public int TicketID { get; set; } | |||
| public Nullable<System.DateTimeOffset> DateSent { get; set; } | |||
| public bool IsRead { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,22 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_TicketOnline | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int UserID { get; set; } | |||
| public string UserType { get; set; } | |||
| public int TicketID { get; set; } | |||
| public string ConnectionID { get; set; } | |||
| public bool ShowOnline { get; set; } | |||
| public string SupportCategory { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,19 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_TicketUserAssociations | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int TicketID { get; set; } | |||
| public int UserID { get; set; } | |||
| public string Note { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,31 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_Tickets | |||
| { | |||
| [Key] | |||
| public int TicketID { get; set; } | |||
| public string Status { get; set; } | |||
| public string Subject { get; set; } | |||
| public string Description { get; set; } | |||
| public string Details { get; set; } | |||
| //public string Category { get; set; } | |||
| public int TicketCategoryID { get; set; } | |||
| public string Tags { get; set; } | |||
| //public int AssignedToUserID { get; set; } | |||
| public string Priority { get; set; } | |||
| public string Usertype { get; set; } | |||
| public int CreatedByUserID { get; set; } | |||
| public string Reporter { get; set; } | |||
| public bool IsAlive { get; set; } | |||
| public string Campus { get; set; } | |||
| public string Room { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,79 @@ | |||
| using System; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.ComponentModel.DataAnnotations.Schema; | |||
| using Microsoft.EntityFrameworkCore; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_Users | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public string UserName { get; set; } | |||
| } | |||
| public partial class AC_ApplicantInfo | |||
| { | |||
| public string AptUnit_HT { get; set; } | |||
| public string StreetNo_HT { get; set; } | |||
| public string StreetAddress_HT { get; set; } | |||
| public string City_HT { get; set; } | |||
| public string Province_HT { get; set; } | |||
| public int? CountryID_HT { get; set; } | |||
| public string PostCode_HT { get; set; } | |||
| public string ContactInfo_HT { get; set; } | |||
| public string Address_HT { get; set; } | |||
| public string EmContactName { get; set; } | |||
| public string PoBox_HT { get; set; } | |||
| public string EmContactRelationship { get; set; } | |||
| public string EmContactEmail { get; set; } | |||
| public string ApplicationNote { get; set; } | |||
| public string Picture { get; set; } | |||
| public string NickName { get; set; } | |||
| public string FirstLanguage { get; set; } | |||
| public string AuthorizedPerson { get; set; } | |||
| public bool EmailVerified { get; set; } | |||
| public DateTime? CreateDate { get; set; } | |||
| public DateTime? UpdateDate { get; set; } | |||
| public string EmContactPhone { get; set; } | |||
| public int? NationalityID { get; set; } | |||
| public int? CountryID { get; set; } | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int? ApplicationID { get; set; } | |||
| public int? UserTypeID { get; set; } | |||
| public string StudentID { get; set; } | |||
| public int? ApplicationID_Previous { get; set; } | |||
| public string StudentID_Previous { get; set; } | |||
| public string Title { get; set; } | |||
| public string FirstName { get; set; } | |||
| public string MiddleName { get; set; } | |||
| public string LastName { get; set; } | |||
| public string PostCode { get; set; } | |||
| public string Gender { get; set; } | |||
| public string Phone { get; set; } | |||
| public string Cell { get; set; } | |||
| public string Email { get; set; } | |||
| public string PoBox { get; set; } | |||
| public string AptUnit { get; set; } | |||
| public string StreetNo { get; set; } | |||
| public string StreetName { get; set; } | |||
| public string StreetAddress { get; set; } | |||
| public string City { get; set; } | |||
| public string Province { get; set; } | |||
| public DateTime? Birthday { get; set; } | |||
| [ForeignKey("CountryID")] | |||
| public virtual AC_Countries AC_Countries { get; set; } | |||
| } | |||
| public record AC_Countries | |||
| { | |||
| [Key] | |||
| public int CountryID { get; set; } | |||
| public string CountryName { get; set; } | |||
| public int AgencyZoneID { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,15 @@ | |||
| using System; | |||
| using System.ComponentModel.DataAnnotations; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_UserRole | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public int UserID { get; set; } | |||
| public int RoleID { get; set; } | |||
| public DateTime CreatedDate { get; set; } | |||
| public DateTime? UpdatedDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,19 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_WLCSupportingDocs | |||
| { | |||
| [Key] | |||
| public int ID { get; set; } | |||
| public string DocCategory { get; set; } | |||
| public int WLCSubID { get; set; } | |||
| public string FilePath { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,27 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_WorkshopLog | |||
| { | |||
| [Key] | |||
| public int WSLogID { get; set; } | |||
| public int ApplicationID { get; set; } | |||
| public int SemesterID { get; set; } | |||
| public Nullable<System.DateTime> WSDate { get; set; } | |||
| public int WSTypeID { get; set; } | |||
| public string WSResult { get; set; } | |||
| public string WSComment { get; set; } | |||
| public string AdminNote { get; set; } | |||
| public bool EmailAdmmissionFlag { get; set; } | |||
| public bool EmailWLCFlag { get; set; } | |||
| public bool EmailSAOFlag { get; set; } | |||
| public string Status { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,17 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.ComponentModel.DataAnnotations; | |||
| using System.Linq; | |||
| using System.Text; | |||
| using System.Threading.Tasks; | |||
| namespace ACLib.P2.AppContext.Models | |||
| { | |||
| public partial class AC_WorkshopTypes | |||
| { | |||
| [Key] | |||
| public int WSTypeID { get; set; } | |||
| public string TypeName { get; set; } | |||
| public Nullable<System.DateTime> CreateDate { get; set; } | |||
| } | |||
| } | |||
| @ -0,0 +1,253 @@ | |||
| { | |||
| "runtimeTarget": { | |||
| "name": ".NETCoreApp,Version=v6.0", | |||
| "signature": "" | |||
| }, | |||
| "compilationOptions": {}, | |||
| "targets": { | |||
| ".NETCoreApp,Version=v6.0": { | |||
| "ACLib.P2.AppContext/1.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.EntityFrameworkCore": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "ACLib.P2.AppContext.dll": {} | |||
| } | |||
| }, | |||
| "Microsoft.EntityFrameworkCore/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.EntityFrameworkCore.Abstractions": "6.0.0", | |||
| "Microsoft.EntityFrameworkCore.Analyzers": "6.0.0", | |||
| "Microsoft.Extensions.Caching.Memory": "6.0.0", | |||
| "Microsoft.Extensions.DependencyInjection": "6.0.0", | |||
| "Microsoft.Extensions.Logging": "6.0.0", | |||
| "System.Collections.Immutable": "6.0.0", | |||
| "System.Diagnostics.DiagnosticSource": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52301" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52301" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": {}, | |||
| "Microsoft.Extensions.Caching.Abstractions/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.Primitives": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Caching.Memory/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.Caching.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Logging.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Options": "6.0.0", | |||
| "Microsoft.Extensions.Primitives": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Logging/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.DependencyInjection": "6.0.0", | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Logging.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Options": "6.0.0", | |||
| "System.Diagnostics.DiagnosticSource": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Logging.Abstractions/6.0.0": { | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Options/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Primitives": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Primitives/6.0.0": { | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.Primitives.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "System.Collections.Immutable/6.0.0": { | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| } | |||
| }, | |||
| "System.Diagnostics.DiagnosticSource/6.0.0": { | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| } | |||
| }, | |||
| "System.Runtime.CompilerServices.Unsafe/6.0.0": {} | |||
| } | |||
| }, | |||
| "libraries": { | |||
| "ACLib.P2.AppContext/1.0.0": { | |||
| "type": "project", | |||
| "serviceable": false, | |||
| "sha512": "" | |||
| }, | |||
| "Microsoft.EntityFrameworkCore/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-BdHAtHzfQt3rltgSoYamSlHg2qawPtEDT677/bcSJlO8lQ/lj6XWlusM0TOt59O8Sbqm3hAC1a+4cEBxmv56pw==", | |||
| "path": "microsoft.entityframeworkcore/6.0.0", | |||
| "hashPath": "microsoft.entityframeworkcore.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-MrMLWEw4JsZdkVci0MkkGj+fSjZrXnm3m6UNuIEwytiAAIZPvJs3iPpnzfK4qM7np82W374voYm96q7QCdL0ow==", | |||
| "path": "microsoft.entityframeworkcore.abstractions/6.0.0", | |||
| "hashPath": "microsoft.entityframeworkcore.abstractions.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-BqWBL05PUDKwPwLeQCJdc2R4cIUycXV9UmuSjYfux2fcgyet8I2eYnOWlA7NgsDwRVcxW26vxvNQ0wuc8UAcLA==", | |||
| "path": "microsoft.entityframeworkcore.analyzers/6.0.0", | |||
| "hashPath": "microsoft.entityframeworkcore.analyzers.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Caching.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", | |||
| "path": "microsoft.extensions.caching.abstractions/6.0.0", | |||
| "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Caching.Memory/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", | |||
| "path": "microsoft.extensions.caching.memory/6.0.0", | |||
| "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", | |||
| "path": "microsoft.extensions.dependencyinjection/6.0.0", | |||
| "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", | |||
| "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", | |||
| "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Logging/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", | |||
| "path": "microsoft.extensions.logging/6.0.0", | |||
| "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Logging.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", | |||
| "path": "microsoft.extensions.logging.abstractions/6.0.0", | |||
| "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Options/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", | |||
| "path": "microsoft.extensions.options/6.0.0", | |||
| "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Primitives/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", | |||
| "path": "microsoft.extensions.primitives/6.0.0", | |||
| "hashPath": "microsoft.extensions.primitives.6.0.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.Diagnostics.DiagnosticSource/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", | |||
| "path": "system.diagnostics.diagnosticsource/6.0.0", | |||
| "hashPath": "system.diagnostics.diagnosticsource.6.0.0.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" | |||
| } | |||
| } | |||
| } | |||
| @ -0,0 +1,253 @@ | |||
| { | |||
| "runtimeTarget": { | |||
| "name": ".NETCoreApp,Version=v6.0", | |||
| "signature": "" | |||
| }, | |||
| "compilationOptions": {}, | |||
| "targets": { | |||
| ".NETCoreApp,Version=v6.0": { | |||
| "ACLib.P2.AppContext/1.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.EntityFrameworkCore": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "ACLib.P2.AppContext.dll": {} | |||
| } | |||
| }, | |||
| "Microsoft.EntityFrameworkCore/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.EntityFrameworkCore.Abstractions": "6.0.0", | |||
| "Microsoft.EntityFrameworkCore.Analyzers": "6.0.0", | |||
| "Microsoft.Extensions.Caching.Memory": "6.0.0", | |||
| "Microsoft.Extensions.DependencyInjection": "6.0.0", | |||
| "Microsoft.Extensions.Logging": "6.0.0", | |||
| "System.Collections.Immutable": "6.0.0", | |||
| "System.Diagnostics.DiagnosticSource": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52301" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52301" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": {}, | |||
| "Microsoft.Extensions.Caching.Abstractions/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.Primitives": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Caching.Memory/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.Caching.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Logging.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Options": "6.0.0", | |||
| "Microsoft.Extensions.Primitives": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Logging/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.DependencyInjection": "6.0.0", | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Logging.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Options": "6.0.0", | |||
| "System.Diagnostics.DiagnosticSource": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Logging.Abstractions/6.0.0": { | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Options/6.0.0": { | |||
| "dependencies": { | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Primitives": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Primitives/6.0.0": { | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.Primitives.dll": { | |||
| "assemblyVersion": "6.0.0.0", | |||
| "fileVersion": "6.0.21.52210" | |||
| } | |||
| } | |||
| }, | |||
| "System.Collections.Immutable/6.0.0": { | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| } | |||
| }, | |||
| "System.Diagnostics.DiagnosticSource/6.0.0": { | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| } | |||
| }, | |||
| "System.Runtime.CompilerServices.Unsafe/6.0.0": {} | |||
| } | |||
| }, | |||
| "libraries": { | |||
| "ACLib.P2.AppContext/1.0.0": { | |||
| "type": "project", | |||
| "serviceable": false, | |||
| "sha512": "" | |||
| }, | |||
| "Microsoft.EntityFrameworkCore/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-BdHAtHzfQt3rltgSoYamSlHg2qawPtEDT677/bcSJlO8lQ/lj6XWlusM0TOt59O8Sbqm3hAC1a+4cEBxmv56pw==", | |||
| "path": "microsoft.entityframeworkcore/6.0.0", | |||
| "hashPath": "microsoft.entityframeworkcore.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-MrMLWEw4JsZdkVci0MkkGj+fSjZrXnm3m6UNuIEwytiAAIZPvJs3iPpnzfK4qM7np82W374voYm96q7QCdL0ow==", | |||
| "path": "microsoft.entityframeworkcore.abstractions/6.0.0", | |||
| "hashPath": "microsoft.entityframeworkcore.abstractions.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-BqWBL05PUDKwPwLeQCJdc2R4cIUycXV9UmuSjYfux2fcgyet8I2eYnOWlA7NgsDwRVcxW26vxvNQ0wuc8UAcLA==", | |||
| "path": "microsoft.entityframeworkcore.analyzers/6.0.0", | |||
| "hashPath": "microsoft.entityframeworkcore.analyzers.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Caching.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", | |||
| "path": "microsoft.extensions.caching.abstractions/6.0.0", | |||
| "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Caching.Memory/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", | |||
| "path": "microsoft.extensions.caching.memory/6.0.0", | |||
| "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", | |||
| "path": "microsoft.extensions.dependencyinjection/6.0.0", | |||
| "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", | |||
| "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", | |||
| "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Logging/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", | |||
| "path": "microsoft.extensions.logging/6.0.0", | |||
| "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Logging.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", | |||
| "path": "microsoft.extensions.logging.abstractions/6.0.0", | |||
| "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Options/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", | |||
| "path": "microsoft.extensions.options/6.0.0", | |||
| "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" | |||
| }, | |||
| "Microsoft.Extensions.Primitives/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", | |||
| "path": "microsoft.extensions.primitives/6.0.0", | |||
| "hashPath": "microsoft.extensions.primitives.6.0.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.Diagnostics.DiagnosticSource/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", | |||
| "path": "system.diagnostics.diagnosticsource/6.0.0", | |||
| "hashPath": "system.diagnostics.diagnosticsource.6.0.0.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" | |||
| } | |||
| } | |||
| } | |||
| @ -0,0 +1,69 @@ | |||
| { | |||
| "format": 1, | |||
| "restore": { | |||
| "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj": {} | |||
| }, | |||
| "projects": { | |||
| "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj": { | |||
| "version": "1.0.0", | |||
| "restore": { | |||
| "projectUniqueName": "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj", | |||
| "projectName": "ACLib.P2.AppContext", | |||
| "projectPath": "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj", | |||
| "packagesPath": "C:\\Users\\lhluk\\.nuget\\packages\\", | |||
| "outputPath": "D:\\DNN\\DNN\\ACLib.P2.DbContext\\obj\\", | |||
| "projectStyle": "PackageReference", | |||
| "configFilePaths": [ | |||
| "C:\\Users\\lhluk\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | |||
| ], | |||
| "originalTargetFrameworks": [ | |||
| "net6.0" | |||
| ], | |||
| "sources": { | |||
| "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | |||
| "Https://api.nuget.org/v3/index.json": {} | |||
| }, | |||
| "frameworks": { | |||
| "net6.0": { | |||
| "targetAlias": "net6.0", | |||
| "projectReferences": {} | |||
| } | |||
| }, | |||
| "warningProperties": { | |||
| "warnAsError": [ | |||
| "NU1605" | |||
| ] | |||
| } | |||
| }, | |||
| "frameworks": { | |||
| "net6.0": { | |||
| "targetAlias": "net6.0", | |||
| "dependencies": { | |||
| "Microsoft.EntityFrameworkCore": { | |||
| "target": "Package", | |||
| "version": "[6.0.0, )" | |||
| } | |||
| }, | |||
| "imports": [ | |||
| "net461", | |||
| "net462", | |||
| "net47", | |||
| "net471", | |||
| "net472", | |||
| "net48", | |||
| "net481" | |||
| ], | |||
| "assetTargetFallback": true, | |||
| "warn": true, | |||
| "frameworkReferences": { | |||
| "Microsoft.NETCore.App": { | |||
| "privateAssets": "all" | |||
| } | |||
| }, | |||
| "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" | |||
| } | |||
| } | |||
| } | |||
| } | |||
| } | |||
| @ -0,0 +1,15 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | |||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||
| <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||
| <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> | |||
| <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | |||
| <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | |||
| <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> | |||
| <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\lhluk\.nuget\packages\</NuGetPackageFolders> | |||
| <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | |||
| <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion> | |||
| </PropertyGroup> | |||
| <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||
| <SourceRoot Include="C:\Users\lhluk\.nuget\packages\" /> | |||
| </ItemGroup> | |||
| </Project> | |||
| @ -0,0 +1,2 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | |||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" /> | |||
| @ -0,0 +1,73 @@ | |||
| { | |||
| "format": 1, | |||
| "restore": { | |||
| "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.Context.csproj": {} | |||
| }, | |||
| "projects": { | |||
| "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.Context.csproj": { | |||
| "version": "1.0.0", | |||
| "restore": { | |||
| "projectUniqueName": "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.Context.csproj", | |||
| "projectName": "ACLib.P2.Context", | |||
| "projectPath": "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.Context.csproj", | |||
| "packagesPath": "C:\\Users\\LH9645\\.nuget\\packages\\", | |||
| "outputPath": "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\obj\\", | |||
| "projectStyle": "PackageReference", | |||
| "fallbackFolders": [ | |||
| "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" | |||
| ], | |||
| "configFilePaths": [ | |||
| "C:\\Users\\LH9645\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", | |||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | |||
| ], | |||
| "originalTargetFrameworks": [ | |||
| "net6.0" | |||
| ], | |||
| "sources": { | |||
| "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | |||
| "https://api.nuget.org/v3/index.json": {} | |||
| }, | |||
| "frameworks": { | |||
| "net6.0": { | |||
| "targetAlias": "net6.0", | |||
| "projectReferences": {} | |||
| } | |||
| }, | |||
| "warningProperties": { | |||
| "warnAsError": [ | |||
| "NU1605" | |||
| ] | |||
| } | |||
| }, | |||
| "frameworks": { | |||
| "net6.0": { | |||
| "targetAlias": "net6.0", | |||
| "dependencies": { | |||
| "Microsoft.EntityFrameworkCore": { | |||
| "target": "Package", | |||
| "version": "[6.0.0, )" | |||
| } | |||
| }, | |||
| "imports": [ | |||
| "net461", | |||
| "net462", | |||
| "net47", | |||
| "net471", | |||
| "net472", | |||
| "net48", | |||
| "net481" | |||
| ], | |||
| "assetTargetFallback": true, | |||
| "warn": true, | |||
| "frameworkReferences": { | |||
| "Microsoft.NETCore.App": { | |||
| "privateAssets": "all" | |||
| } | |||
| }, | |||
| "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" | |||
| } | |||
| } | |||
| } | |||
| } | |||
| } | |||
| @ -0,0 +1,16 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | |||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||
| <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||
| <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> | |||
| <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | |||
| <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | |||
| <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> | |||
| <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\LH9645\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders> | |||
| <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | |||
| <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion> | |||
| </PropertyGroup> | |||
| <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||
| <SourceRoot Include="C:\Users\LH9645\.nuget\packages\" /> | |||
| <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> | |||
| </ItemGroup> | |||
| </Project> | |||
| @ -0,0 +1,2 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | |||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" /> | |||
| @ -0,0 +1,73 @@ | |||
| { | |||
| "format": 1, | |||
| "restore": { | |||
| "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.DbContext.csproj": {} | |||
| }, | |||
| "projects": { | |||
| "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.DbContext.csproj": { | |||
| "version": "1.0.0", | |||
| "restore": { | |||
| "projectUniqueName": "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.DbContext.csproj", | |||
| "projectName": "ACLib.P2.DbContext", | |||
| "projectPath": "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.DbContext.csproj", | |||
| "packagesPath": "C:\\Users\\LH9645\\.nuget\\packages\\", | |||
| "outputPath": "C:\\Projects\\git-clone\\DNN\\DNN\\ACLib.P2.DbContext\\obj\\", | |||
| "projectStyle": "PackageReference", | |||
| "fallbackFolders": [ | |||
| "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" | |||
| ], | |||
| "configFilePaths": [ | |||
| "C:\\Users\\LH9645\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", | |||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | |||
| ], | |||
| "originalTargetFrameworks": [ | |||
| "net6.0" | |||
| ], | |||
| "sources": { | |||
| "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | |||
| "https://api.nuget.org/v3/index.json": {} | |||
| }, | |||
| "frameworks": { | |||
| "net6.0": { | |||
| "targetAlias": "net6.0", | |||
| "projectReferences": {} | |||
| } | |||
| }, | |||
| "warningProperties": { | |||
| "warnAsError": [ | |||
| "NU1605" | |||
| ] | |||
| } | |||
| }, | |||
| "frameworks": { | |||
| "net6.0": { | |||
| "targetAlias": "net6.0", | |||
| "dependencies": { | |||
| "Microsoft.EntityFrameworkCore": { | |||
| "target": "Package", | |||
| "version": "[6.0.0, )" | |||
| } | |||
| }, | |||
| "imports": [ | |||
| "net461", | |||
| "net462", | |||
| "net47", | |||
| "net471", | |||
| "net472", | |||
| "net48", | |||
| "net481" | |||
| ], | |||
| "assetTargetFallback": true, | |||
| "warn": true, | |||
| "frameworkReferences": { | |||
| "Microsoft.NETCore.App": { | |||
| "privateAssets": "all" | |||
| } | |||
| }, | |||
| "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" | |||
| } | |||
| } | |||
| } | |||
| } | |||
| } | |||
| @ -0,0 +1,16 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | |||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||
| <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||
| <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> | |||
| <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | |||
| <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | |||
| <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> | |||
| <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\LH9645\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders> | |||
| <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | |||
| <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion> | |||
| </PropertyGroup> | |||
| <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||
| <SourceRoot Include="C:\Users\LH9645\.nuget\packages\" /> | |||
| <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> | |||
| </ItemGroup> | |||
| </Project> | |||
| @ -0,0 +1,2 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | |||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" /> | |||
| @ -0,0 +1,4 @@ | |||
| // <autogenerated /> | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] | |||
| @ -0,0 +1,23 @@ | |||
| //------------------------------------------------------------------------------ | |||
| // <auto-generated> | |||
| // This code was generated by a tool. | |||
| // Runtime Version:4.0.30319.42000 | |||
| // | |||
| // Changes to this file may cause incorrect behavior and will be lost if | |||
| // the code is regenerated. | |||
| // </auto-generated> | |||
| //------------------------------------------------------------------------------ | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: System.Reflection.AssemblyCompanyAttribute("ACLib.P2.AppContext")] | |||
| [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | |||
| [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | |||
| [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] | |||
| [assembly: System.Reflection.AssemblyProductAttribute("ACLib.P2.AppContext")] | |||
| [assembly: System.Reflection.AssemblyTitleAttribute("ACLib.P2.AppContext")] | |||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | |||
| // Generated by the MSBuild WriteCodeFragment class. | |||
| @ -0,0 +1 @@ | |||
| d316db291ef9e253707bb9e0877e2d3d099de7a3 | |||
| @ -0,0 +1,11 @@ | |||
| is_global = true | |||
| build_property.TargetFramework = net6.0 | |||
| build_property.TargetPlatformMinVersion = | |||
| build_property.UsingMicrosoftNETSdkWeb = | |||
| build_property.ProjectTypeGuids = | |||
| build_property.InvariantGlobalization = | |||
| build_property.PlatformNeutralAssembly = | |||
| build_property.EnforceExtendedAnalyzerRules = | |||
| build_property._SupportedPlatformList = Linux,macOS,Windows | |||
| build_property.RootNamespace = ACLib.P2.AppContext | |||
| build_property.ProjectDir = d:\DNN\DNN\ACLib.P2.DbContext\ | |||
| @ -0,0 +1,8 @@ | |||
| // <auto-generated/> | |||
| global using global::System; | |||
| global using global::System.Collections.Generic; | |||
| global using global::System.IO; | |||
| global using global::System.Linq; | |||
| global using global::System.Net.Http; | |||
| global using global::System.Threading; | |||
| global using global::System.Threading.Tasks; | |||
| @ -0,0 +1 @@ | |||
| f81fbdafd7a673813e1332d9a4c4a219e9afcdd6 | |||
| @ -0,0 +1,24 @@ | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\bin\Debug\net6.0\ACLib.P2.AppContext.deps.json | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\bin\Debug\net6.0\ACLib.P2.AppContext.dll | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\bin\Debug\net6.0\ACLib.P2.AppContext.pdb | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.csproj.AssemblyReference.cache | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.GeneratedMSBuildEditorConfig.editorconfig | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.AssemblyInfoInputs.cache | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.AssemblyInfo.cs | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.csproj.CoreCompileInputs.cache | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.dll | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\refint\ACLib.P2.AppContext.dll | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.pdb | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ref\ACLib.P2.AppContext.dll | |||
| D:\DNN\DNN\ACLib.P2.DbContext\bin\Debug\net6.0\ACLib.P2.AppContext.deps.json | |||
| D:\DNN\DNN\ACLib.P2.DbContext\bin\Debug\net6.0\ACLib.P2.AppContext.dll | |||
| D:\DNN\DNN\ACLib.P2.DbContext\bin\Debug\net6.0\ACLib.P2.AppContext.pdb | |||
| D:\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.csproj.AssemblyReference.cache | |||
| D:\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.GeneratedMSBuildEditorConfig.editorconfig | |||
| D:\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.AssemblyInfoInputs.cache | |||
| D:\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.AssemblyInfo.cs | |||
| D:\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.csproj.CoreCompileInputs.cache | |||
| D:\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.dll | |||
| D:\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\refint\ACLib.P2.AppContext.dll | |||
| D:\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ACLib.P2.AppContext.pdb | |||
| D:\DNN\DNN\ACLib.P2.DbContext\obj\Debug\net6.0\ref\ACLib.P2.AppContext.dll | |||
| @ -0,0 +1,23 @@ | |||
| //------------------------------------------------------------------------------ | |||
| // <auto-generated> | |||
| // This code was generated by a tool. | |||
| // Runtime Version:4.0.30319.42000 | |||
| // | |||
| // Changes to this file may cause incorrect behavior and will be lost if | |||
| // the code is regenerated. | |||
| // </auto-generated> | |||
| //------------------------------------------------------------------------------ | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: System.Reflection.AssemblyCompanyAttribute("ACLib.P2.Context")] | |||
| [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | |||
| [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | |||
| [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] | |||
| [assembly: System.Reflection.AssemblyProductAttribute("ACLib.P2.Context")] | |||
| [assembly: System.Reflection.AssemblyTitleAttribute("ACLib.P2.Context")] | |||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | |||
| // Generated by the MSBuild WriteCodeFragment class. | |||
| @ -0,0 +1 @@ | |||
| 854a66ac2fa5f3e7ec017d823727f154c4538e69 | |||
| @ -0,0 +1,11 @@ | |||
| is_global = true | |||
| build_property.TargetFramework = net6.0 | |||
| build_property.TargetPlatformMinVersion = | |||
| build_property.UsingMicrosoftNETSdkWeb = | |||
| build_property.ProjectTypeGuids = | |||
| build_property.InvariantGlobalization = | |||
| build_property.PlatformNeutralAssembly = | |||
| build_property.EnforceExtendedAnalyzerRules = | |||
| build_property._SupportedPlatformList = Linux,macOS,Windows | |||
| build_property.RootNamespace = ACLib.P2.Context | |||
| build_property.ProjectDir = C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\ | |||
| @ -0,0 +1,8 @@ | |||
| // <auto-generated/> | |||
| global using global::System; | |||
| global using global::System.Collections.Generic; | |||
| global using global::System.IO; | |||
| global using global::System.Linq; | |||
| global using global::System.Net.Http; | |||
| global using global::System.Threading; | |||
| global using global::System.Threading.Tasks; | |||
| @ -0,0 +1,23 @@ | |||
| //------------------------------------------------------------------------------ | |||
| // <auto-generated> | |||
| // This code was generated by a tool. | |||
| // Runtime Version:4.0.30319.42000 | |||
| // | |||
| // Changes to this file may cause incorrect behavior and will be lost if | |||
| // the code is regenerated. | |||
| // </auto-generated> | |||
| //------------------------------------------------------------------------------ | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: System.Reflection.AssemblyCompanyAttribute("ACLib.P2.DbContext")] | |||
| [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | |||
| [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | |||
| [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] | |||
| [assembly: System.Reflection.AssemblyProductAttribute("ACLib.P2.DbContext")] | |||
| [assembly: System.Reflection.AssemblyTitleAttribute("ACLib.P2.DbContext")] | |||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | |||
| // Generated by the MSBuild WriteCodeFragment class. | |||
| @ -0,0 +1 @@ | |||
| 63b4e494bcfabfb9b2cc70eecf7105693322c2d8 | |||
| @ -0,0 +1,11 @@ | |||
| is_global = true | |||
| build_property.TargetFramework = net6.0 | |||
| build_property.TargetPlatformMinVersion = | |||
| build_property.UsingMicrosoftNETSdkWeb = | |||
| build_property.ProjectTypeGuids = | |||
| build_property.InvariantGlobalization = | |||
| build_property.PlatformNeutralAssembly = | |||
| build_property.EnforceExtendedAnalyzerRules = | |||
| build_property._SupportedPlatformList = Linux,macOS,Windows | |||
| build_property.RootNamespace = ACLib.P2.DbContext | |||
| build_property.ProjectDir = C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\ | |||
| @ -0,0 +1,8 @@ | |||
| // <auto-generated/> | |||
| global using global::System; | |||
| global using global::System.Collections.Generic; | |||
| global using global::System.IO; | |||
| global using global::System.Linq; | |||
| global using global::System.Net.Http; | |||
| global using global::System.Threading; | |||
| global using global::System.Threading.Tasks; | |||
| @ -0,0 +1,4 @@ | |||
| // <autogenerated /> | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] | |||
| @ -0,0 +1,23 @@ | |||
| //------------------------------------------------------------------------------ | |||
| // <auto-generated> | |||
| // This code was generated by a tool. | |||
| // Runtime Version:4.0.30319.42000 | |||
| // | |||
| // Changes to this file may cause incorrect behavior and will be lost if | |||
| // the code is regenerated. | |||
| // </auto-generated> | |||
| //------------------------------------------------------------------------------ | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: System.Reflection.AssemblyCompanyAttribute("ACLib.P2.AppContext")] | |||
| [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] | |||
| [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | |||
| [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] | |||
| [assembly: System.Reflection.AssemblyProductAttribute("ACLib.P2.AppContext")] | |||
| [assembly: System.Reflection.AssemblyTitleAttribute("ACLib.P2.AppContext")] | |||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | |||
| // Generated by the MSBuild WriteCodeFragment class. | |||
| @ -0,0 +1 @@ | |||
| 1920a871d43e84f8cb7196e0c9c61112cd4544ce | |||
| @ -0,0 +1,11 @@ | |||
| is_global = true | |||
| build_property.TargetFramework = net6.0 | |||
| build_property.TargetPlatformMinVersion = | |||
| build_property.UsingMicrosoftNETSdkWeb = | |||
| build_property.ProjectTypeGuids = | |||
| build_property.InvariantGlobalization = | |||
| build_property.PlatformNeutralAssembly = | |||
| build_property.EnforceExtendedAnalyzerRules = | |||
| build_property._SupportedPlatformList = Linux,macOS,Windows | |||
| build_property.RootNamespace = ACLib.P2.AppContext | |||
| build_property.ProjectDir = C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\ | |||
| @ -0,0 +1,8 @@ | |||
| // <auto-generated/> | |||
| global using global::System; | |||
| global using global::System.Collections.Generic; | |||
| global using global::System.IO; | |||
| global using global::System.Linq; | |||
| global using global::System.Net.Http; | |||
| global using global::System.Threading; | |||
| global using global::System.Threading.Tasks; | |||
| @ -0,0 +1 @@ | |||
| fa6431ef91589805fe3422dcaa0ea51c7d1854aa | |||
| @ -0,0 +1,12 @@ | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\bin\Release\net6.0\ACLib.P2.AppContext.deps.json | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\bin\Release\net6.0\ACLib.P2.AppContext.dll | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\bin\Release\net6.0\ACLib.P2.AppContext.pdb | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Release\net6.0\ACLib.P2.AppContext.csproj.AssemblyReference.cache | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Release\net6.0\ACLib.P2.AppContext.GeneratedMSBuildEditorConfig.editorconfig | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Release\net6.0\ACLib.P2.AppContext.AssemblyInfoInputs.cache | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Release\net6.0\ACLib.P2.AppContext.AssemblyInfo.cs | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Release\net6.0\ACLib.P2.AppContext.csproj.CoreCompileInputs.cache | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Release\net6.0\ACLib.P2.AppContext.dll | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Release\net6.0\refint\ACLib.P2.AppContext.dll | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Release\net6.0\ACLib.P2.AppContext.pdb | |||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2.DbContext\obj\Release\net6.0\ref\ACLib.P2.AppContext.dll | |||
| @ -0,0 +1,642 @@ | |||
| { | |||
| "version": 3, | |||
| "targets": { | |||
| "net6.0": { | |||
| "Microsoft.EntityFrameworkCore/6.0.0": { | |||
| "type": "package", | |||
| "dependencies": { | |||
| "Microsoft.EntityFrameworkCore.Abstractions": "6.0.0", | |||
| "Microsoft.EntityFrameworkCore.Analyzers": "6.0.0", | |||
| "Microsoft.Extensions.Caching.Memory": "6.0.0", | |||
| "Microsoft.Extensions.DependencyInjection": "6.0.0", | |||
| "Microsoft.Extensions.Logging": "6.0.0", | |||
| "System.Collections.Immutable": "6.0.0", | |||
| "System.Diagnostics.DiagnosticSource": "6.0.0" | |||
| }, | |||
| "compile": { | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { | |||
| "related": ".xml" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "compile": { | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { | |||
| "related": ".xml" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": { | |||
| "type": "package", | |||
| "compile": { | |||
| "lib/netstandard2.0/_._": {} | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.0/_._": {} | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Caching.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "dependencies": { | |||
| "Microsoft.Extensions.Primitives": "6.0.0" | |||
| }, | |||
| "compile": { | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { | |||
| "related": ".xml" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Caching.Memory/6.0.0": { | |||
| "type": "package", | |||
| "dependencies": { | |||
| "Microsoft.Extensions.Caching.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Logging.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Options": "6.0.0", | |||
| "Microsoft.Extensions.Primitives": "6.0.0" | |||
| }, | |||
| "compile": { | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { | |||
| "related": ".xml" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection/6.0.0": { | |||
| "type": "package", | |||
| "dependencies": { | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| }, | |||
| "compile": { | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "build": { | |||
| "buildTransitive/netcoreapp3.1/_._": {} | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "compile": { | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "build": { | |||
| "buildTransitive/netcoreapp3.1/_._": {} | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Logging/6.0.0": { | |||
| "type": "package", | |||
| "dependencies": { | |||
| "Microsoft.Extensions.DependencyInjection": "6.0.0", | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Logging.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Options": "6.0.0", | |||
| "System.Diagnostics.DiagnosticSource": "6.0.0" | |||
| }, | |||
| "compile": { | |||
| "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { | |||
| "related": ".xml" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Logging.Abstractions/6.0.0": { | |||
| "type": "package", | |||
| "compile": { | |||
| "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "build": { | |||
| "buildTransitive/netcoreapp3.1/_._": {} | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Options/6.0.0": { | |||
| "type": "package", | |||
| "dependencies": { | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", | |||
| "Microsoft.Extensions.Primitives": "6.0.0" | |||
| }, | |||
| "compile": { | |||
| "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { | |||
| "related": ".xml" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.Extensions.Primitives/6.0.0": { | |||
| "type": "package", | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| }, | |||
| "compile": { | |||
| "lib/net6.0/Microsoft.Extensions.Primitives.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/Microsoft.Extensions.Primitives.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "build": { | |||
| "buildTransitive/netcoreapp3.1/_._": {} | |||
| } | |||
| }, | |||
| "System.Collections.Immutable/6.0.0": { | |||
| "type": "package", | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| }, | |||
| "compile": { | |||
| "lib/net6.0/System.Collections.Immutable.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/System.Collections.Immutable.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "build": { | |||
| "buildTransitive/netcoreapp3.1/_._": {} | |||
| } | |||
| }, | |||
| "System.Diagnostics.DiagnosticSource/6.0.0": { | |||
| "type": "package", | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| }, | |||
| "compile": { | |||
| "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "build": { | |||
| "buildTransitive/netcoreapp3.1/_._": {} | |||
| } | |||
| }, | |||
| "System.Runtime.CompilerServices.Unsafe/6.0.0": { | |||
| "type": "package", | |||
| "compile": { | |||
| "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { | |||
| "related": ".xml" | |||
| } | |||
| }, | |||
| "build": { | |||
| "buildTransitive/netcoreapp3.1/_._": {} | |||
| } | |||
| } | |||
| } | |||
| }, | |||
| "libraries": { | |||
| "Microsoft.EntityFrameworkCore/6.0.0": { | |||
| "sha512": "BdHAtHzfQt3rltgSoYamSlHg2qawPtEDT677/bcSJlO8lQ/lj6XWlusM0TOt59O8Sbqm3hAC1a+4cEBxmv56pw==", | |||
| "type": "package", | |||
| "path": "microsoft.entityframeworkcore/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.dll", | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.xml", | |||
| "microsoft.entityframeworkcore.6.0.0.nupkg.sha512", | |||
| "microsoft.entityframeworkcore.nuspec" | |||
| ] | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { | |||
| "sha512": "MrMLWEw4JsZdkVci0MkkGj+fSjZrXnm3m6UNuIEwytiAAIZPvJs3iPpnzfK4qM7np82W374voYm96q7QCdL0ow==", | |||
| "type": "package", | |||
| "path": "microsoft.entityframeworkcore.abstractions/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll", | |||
| "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml", | |||
| "microsoft.entityframeworkcore.abstractions.6.0.0.nupkg.sha512", | |||
| "microsoft.entityframeworkcore.abstractions.nuspec" | |||
| ] | |||
| }, | |||
| "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": { | |||
| "sha512": "BqWBL05PUDKwPwLeQCJdc2R4cIUycXV9UmuSjYfux2fcgyet8I2eYnOWlA7NgsDwRVcxW26vxvNQ0wuc8UAcLA==", | |||
| "type": "package", | |||
| "path": "microsoft.entityframeworkcore.analyzers/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", | |||
| "lib/netstandard2.0/_._", | |||
| "microsoft.entityframeworkcore.analyzers.6.0.0.nupkg.sha512", | |||
| "microsoft.entityframeworkcore.analyzers.nuspec" | |||
| ] | |||
| }, | |||
| "Microsoft.Extensions.Caching.Abstractions/6.0.0": { | |||
| "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", | |||
| "type": "package", | |||
| "path": "microsoft.extensions.caching.abstractions/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", | |||
| "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", | |||
| "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", | |||
| "microsoft.extensions.caching.abstractions.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "Microsoft.Extensions.Caching.Memory/6.0.0": { | |||
| "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", | |||
| "type": "package", | |||
| "path": "microsoft.extensions.caching.memory/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "lib/net461/Microsoft.Extensions.Caching.Memory.dll", | |||
| "lib/net461/Microsoft.Extensions.Caching.Memory.xml", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", | |||
| "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", | |||
| "microsoft.extensions.caching.memory.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection/6.0.0": { | |||
| "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", | |||
| "type": "package", | |||
| "path": "microsoft.extensions.dependencyinjection/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", | |||
| "buildTransitive/netcoreapp3.1/_._", | |||
| "lib/net461/Microsoft.Extensions.DependencyInjection.dll", | |||
| "lib/net461/Microsoft.Extensions.DependencyInjection.xml", | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", | |||
| "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", | |||
| "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", | |||
| "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", | |||
| "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", | |||
| "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", | |||
| "microsoft.extensions.dependencyinjection.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { | |||
| "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", | |||
| "type": "package", | |||
| "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", | |||
| "buildTransitive/netcoreapp3.1/_._", | |||
| "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", | |||
| "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", | |||
| "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", | |||
| "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", | |||
| "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", | |||
| "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", | |||
| "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", | |||
| "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", | |||
| "microsoft.extensions.dependencyinjection.abstractions.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "Microsoft.Extensions.Logging/6.0.0": { | |||
| "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", | |||
| "type": "package", | |||
| "path": "microsoft.extensions.logging/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "lib/net461/Microsoft.Extensions.Logging.dll", | |||
| "lib/net461/Microsoft.Extensions.Logging.xml", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", | |||
| "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", | |||
| "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", | |||
| "microsoft.extensions.logging.6.0.0.nupkg.sha512", | |||
| "microsoft.extensions.logging.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "Microsoft.Extensions.Logging.Abstractions/6.0.0": { | |||
| "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", | |||
| "type": "package", | |||
| "path": "microsoft.extensions.logging.abstractions/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", | |||
| "build/Microsoft.Extensions.Logging.Abstractions.targets", | |||
| "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", | |||
| "buildTransitive/netcoreapp3.1/_._", | |||
| "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", | |||
| "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", | |||
| "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", | |||
| "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", | |||
| "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", | |||
| "microsoft.extensions.logging.abstractions.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "Microsoft.Extensions.Options/6.0.0": { | |||
| "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", | |||
| "type": "package", | |||
| "path": "microsoft.extensions.options/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "lib/net461/Microsoft.Extensions.Options.dll", | |||
| "lib/net461/Microsoft.Extensions.Options.xml", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Options.dll", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Options.xml", | |||
| "lib/netstandard2.1/Microsoft.Extensions.Options.dll", | |||
| "lib/netstandard2.1/Microsoft.Extensions.Options.xml", | |||
| "microsoft.extensions.options.6.0.0.nupkg.sha512", | |||
| "microsoft.extensions.options.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "Microsoft.Extensions.Primitives/6.0.0": { | |||
| "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", | |||
| "type": "package", | |||
| "path": "microsoft.extensions.primitives/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", | |||
| "buildTransitive/netcoreapp3.1/_._", | |||
| "lib/net461/Microsoft.Extensions.Primitives.dll", | |||
| "lib/net461/Microsoft.Extensions.Primitives.xml", | |||
| "lib/net6.0/Microsoft.Extensions.Primitives.dll", | |||
| "lib/net6.0/Microsoft.Extensions.Primitives.xml", | |||
| "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", | |||
| "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", | |||
| "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", | |||
| "microsoft.extensions.primitives.6.0.0.nupkg.sha512", | |||
| "microsoft.extensions.primitives.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "System.Collections.Immutable/6.0.0": { | |||
| "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", | |||
| "type": "package", | |||
| "path": "system.collections.immutable/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", | |||
| "buildTransitive/netcoreapp3.1/_._", | |||
| "lib/net461/System.Collections.Immutable.dll", | |||
| "lib/net461/System.Collections.Immutable.xml", | |||
| "lib/net6.0/System.Collections.Immutable.dll", | |||
| "lib/net6.0/System.Collections.Immutable.xml", | |||
| "lib/netstandard2.0/System.Collections.Immutable.dll", | |||
| "lib/netstandard2.0/System.Collections.Immutable.xml", | |||
| "system.collections.immutable.6.0.0.nupkg.sha512", | |||
| "system.collections.immutable.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "System.Diagnostics.DiagnosticSource/6.0.0": { | |||
| "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", | |||
| "type": "package", | |||
| "path": "system.diagnostics.diagnosticsource/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", | |||
| "buildTransitive/netcoreapp3.1/_._", | |||
| "lib/net461/System.Diagnostics.DiagnosticSource.dll", | |||
| "lib/net461/System.Diagnostics.DiagnosticSource.xml", | |||
| "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", | |||
| "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", | |||
| "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", | |||
| "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", | |||
| "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", | |||
| "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", | |||
| "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", | |||
| "system.diagnostics.diagnosticsource.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| }, | |||
| "System.Runtime.CompilerServices.Unsafe/6.0.0": { | |||
| "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", | |||
| "type": "package", | |||
| "path": "system.runtime.compilerservices.unsafe/6.0.0", | |||
| "files": [ | |||
| ".nupkg.metadata", | |||
| ".signature.p7s", | |||
| "Icon.png", | |||
| "LICENSE.TXT", | |||
| "THIRD-PARTY-NOTICES.TXT", | |||
| "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", | |||
| "buildTransitive/netcoreapp3.1/_._", | |||
| "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", | |||
| "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", | |||
| "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", | |||
| "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", | |||
| "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", | |||
| "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", | |||
| "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", | |||
| "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", | |||
| "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", | |||
| "system.runtime.compilerservices.unsafe.nuspec", | |||
| "useSharedDesignerContext.txt" | |||
| ] | |||
| } | |||
| }, | |||
| "projectFileDependencyGroups": { | |||
| "net6.0": [ | |||
| "Microsoft.EntityFrameworkCore >= 6.0.0" | |||
| ] | |||
| }, | |||
| "packageFolders": { | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\": {} | |||
| }, | |||
| "project": { | |||
| "version": "1.0.0", | |||
| "restore": { | |||
| "projectUniqueName": "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj", | |||
| "projectName": "ACLib.P2.AppContext", | |||
| "projectPath": "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj", | |||
| "packagesPath": "C:\\Users\\lhluk\\.nuget\\packages\\", | |||
| "outputPath": "D:\\DNN\\DNN\\ACLib.P2.DbContext\\obj\\", | |||
| "projectStyle": "PackageReference", | |||
| "configFilePaths": [ | |||
| "C:\\Users\\lhluk\\AppData\\Roaming\\NuGet\\NuGet.Config", | |||
| "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | |||
| ], | |||
| "originalTargetFrameworks": [ | |||
| "net6.0" | |||
| ], | |||
| "sources": { | |||
| "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | |||
| "Https://api.nuget.org/v3/index.json": {} | |||
| }, | |||
| "frameworks": { | |||
| "net6.0": { | |||
| "targetAlias": "net6.0", | |||
| "projectReferences": {} | |||
| } | |||
| }, | |||
| "warningProperties": { | |||
| "warnAsError": [ | |||
| "NU1605" | |||
| ] | |||
| } | |||
| }, | |||
| "frameworks": { | |||
| "net6.0": { | |||
| "targetAlias": "net6.0", | |||
| "dependencies": { | |||
| "Microsoft.EntityFrameworkCore": { | |||
| "target": "Package", | |||
| "version": "[6.0.0, )" | |||
| } | |||
| }, | |||
| "imports": [ | |||
| "net461", | |||
| "net462", | |||
| "net47", | |||
| "net471", | |||
| "net472", | |||
| "net48", | |||
| "net481" | |||
| ], | |||
| "assetTargetFallback": true, | |||
| "warn": true, | |||
| "frameworkReferences": { | |||
| "Microsoft.NETCore.App": { | |||
| "privateAssets": "all" | |||
| } | |||
| }, | |||
| "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" | |||
| } | |||
| } | |||
| } | |||
| } | |||
| @ -0,0 +1,23 @@ | |||
| { | |||
| "version": 2, | |||
| "dgSpecHash": "GidrBONiR2xFW0ppS4c0fbgqEV1QgPceG8JOmfK/O7+/Lsfl8dCi/wvjCt7yFVhyQvt77TW6V9NA+HDNL9ZFWw==", | |||
| "success": true, | |||
| "projectFilePath": "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj", | |||
| "expectedPackageFiles": [ | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.0\\microsoft.entityframeworkcore.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.0\\microsoft.entityframeworkcore.abstractions.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.0\\microsoft.entityframeworkcore.analyzers.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.0\\microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", | |||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" | |||
| ], | |||
| "logs": [] | |||
| } | |||