diff --git a/ACLib.P2.AppContext.csproj b/ACLib.P2.AppContext.csproj
new file mode 100644
index 0000000..e68b485
--- /dev/null
+++ b/ACLib.P2.AppContext.csproj
@@ -0,0 +1,13 @@
+
+
+
+ net6.0
+ enable
+ enable
+
+
+
+
+
+
+
diff --git a/DatabaseContext.cs b/DatabaseContext.cs
new file mode 100644
index 0000000..9cb7ca8
--- /dev/null
+++ b/DatabaseContext.cs
@@ -0,0 +1,40 @@
+using Microsoft.EntityFrameworkCore;
+using ACLib.P2.AppContext.Models;
+
+namespace ACLib.P2.AppContext
+{
+ public class DatabaseContext: DbContext
+ {
+ public DatabaseContext(DbContextOptions options) : base(options) { }
+ public DbSet AC_AcademicAlerts { get; set; }
+ public DbSet AC_AppointmentLog { get; set; }
+ public DbSet AC_ApprovalStatus { get; set; }
+ public DbSet AC_ClassRun { get; set; }
+ public DbSet AC_Consellings { get; set; }
+ public DbSet AC_Consequences { get; set; }
+ public DbSet AC_Instructors { get; set; }
+ public DbSet AC_NickNames { get; set; }
+ public DbSet AC_NonAcademicAwards { get; set; }
+ public DbSet AC_Semesters { get; set; }
+ public DbSet AC_StudentAccommodations { get; set; }
+ public DbSet AC_StudentAccommodationTerms { get; set; }
+ public DbSet AC_StudentAppeals { get; set; }
+ public DbSet AC_StudentLeaves { get; set; }
+ public DbSet AC_StudentComplains { get; set; }
+ public DbSet AC_StudentExamDeferrals { get; set; }
+ public DbSet AC_StudentNonAcademicMisconducts { get; set; }
+ public DbSet AC_TermCourseSeats { get; set; }
+ public DbSet AC_TicketCategories { get; set; }
+ public DbSet AC_Tickets { get; set; }
+ public DbSet AC_TicketMessages { get; set; }
+ public DbSet AC_TicketOnline { get; set; }
+ public DbSet AC_TicketUserAssociations { get; set; }
+ public DbSet AC_WLCSupportingDocs { get; set; }
+ public DbSet AC_WorkshopLog { get; set; }
+ public DbSet AC_WorkshopTypes { get; set; }
+ public DbSet AC_Clients { get; set; }
+ public DbSet AC_User { get; set; }
+ public DbSet AC_ApplicantInfo { get; set; }
+ public DbSet AC_Role { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/Models/AC_AcademicAlerts.cs b/Models/AC_AcademicAlerts.cs
new file mode 100644
index 0000000..f34e00f
--- /dev/null
+++ b/Models/AC_AcademicAlerts.cs
@@ -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 CommunicationDate { get; set; }
+ public string OutCome { get; set; }
+ public string SupportingFile { get; set; }
+ public Nullable 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 CreateDate { get; set; }
+ public Nullable 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; }
+ }
+}
diff --git a/Models/AC_AppointmentLog.cs b/Models/AC_AppointmentLog.cs
new file mode 100644
index 0000000..634fdda
--- /dev/null
+++ b/Models/AC_AppointmentLog.cs
@@ -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 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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_ApprovalStatus.cs b/Models/AC_ApprovalStatus.cs
new file mode 100644
index 0000000..7a1da32
--- /dev/null
+++ b/Models/AC_ApprovalStatus.cs
@@ -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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_ClassRun.cs b/Models/AC_ClassRun.cs
new file mode 100644
index 0000000..06db3ae
--- /dev/null
+++ b/Models/AC_ClassRun.cs
@@ -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 ClassID { get; set; }
+ public string CourseNumber { get; set; }
+ public string CourseRunTitle { get; set; }
+ public Nullable ClassStartdate { get; set; }
+ public Nullable ClassEnddate { get; set; }
+ public Nullable NumberWeeks { get; set; }
+ //public Nullable Monday { get; set; }
+ //public Nullable MondayStart { get; set; }
+ //public Nullable MondayEnd { get; set; }
+ //public Nullable Tuesday { get; set; }
+ //public Nullable TuesdayStart { get; set; }
+ //public Nullable TuesdayEnd { get; set; }
+ //public Nullable Wednesday { get; set; }
+ //public Nullable WednesdayStart { get; set; }
+ //public Nullable WednesdayEnd { get; set; }
+ //public Nullable Thursday { get; set; }
+ //public Nullable ThursdayStart { get; set; }
+ //public Nullable ThursdayEnd { get; set; }
+ //public Nullable Friday { get; set; }
+ //public Nullable FridayStart { get; set; }
+ //public Nullable FridayEnd { get; set; }
+ //public Nullable Saturday { get; set; }
+ //public Nullable SaturdayStart { get; set; }
+ //public Nullable SaturdayEnd { get; set; }
+ public Nullable InstructorID { get; set; }
+ public Nullable SemesterID { get; set; }
+ public string Section { get; set; }
+ public int CampusID { get; set; }
+ //public string Classroom { get; set; }
+ public Nullable MaxSeats { get; set; }
+ public bool Scheduled { get; set; }
+ public Nullable UpdateDate { get; set; }
+ public Nullable SyncDate { get; set; }
+ //public virtual AC_Courses AC_Courses { get; set; }
+ public virtual AC_Semesters AC_Semesters { get; set; }
+ //public virtual IEnumerable AC_ClassSections { get; set; }
+ public virtual AC_Instructors AC_Instructors { get; set; }
+ //public virtual AC_Campuses AC_Campuses { get; set; }
+ }
+}
diff --git a/Models/AC_Client.cs b/Models/AC_Client.cs
new file mode 100644
index 0000000..6384858
--- /dev/null
+++ b/Models/AC_Client.cs
@@ -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; }
+ }
+}
diff --git a/Models/AC_Consellings.cs b/Models/AC_Consellings.cs
new file mode 100644
index 0000000..0e83209
--- /dev/null
+++ b/Models/AC_Consellings.cs
@@ -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 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 CreateDate { get; set; }
+ public Nullable UpdateDate { get; set; }
+ }
+}
diff --git a/Models/AC_Consequences.cs b/Models/AC_Consequences.cs
new file mode 100644
index 0000000..3afaaae
--- /dev/null
+++ b/Models/AC_Consequences.cs
@@ -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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_Instructors.cs b/Models/AC_Instructors.cs
new file mode 100644
index 0000000..3a873b0
--- /dev/null
+++ b/Models/AC_Instructors.cs
@@ -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 InstructorID { get; set; }
+ public Nullable UserTypeID { get; set; }
+ public string FirstName { get; set; }
+ public string MiddleName { get; set; }
+ public string LastName { get; set; }
+ public Nullable 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 Employmentdate { get; set; }
+ public Nullable CreateDate { get; set; }
+ public Nullable UpdateDate { get; set; }
+ }
+}
diff --git a/Models/AC_NickNames.cs b/Models/AC_NickNames.cs
new file mode 100644
index 0000000..f602390
--- /dev/null
+++ b/Models/AC_NickNames.cs
@@ -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 UpdateDate { get; set; }
+ }
+}
diff --git a/Models/AC_NonAcademicAwards.cs b/Models/AC_NonAcademicAwards.cs
new file mode 100644
index 0000000..8f3ee50
--- /dev/null
+++ b/Models/AC_NonAcademicAwards.cs
@@ -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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_Role.cs b/Models/AC_Role.cs
new file mode 100644
index 0000000..680b1ae
--- /dev/null
+++ b/Models/AC_Role.cs
@@ -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; }
+ }
+}
diff --git a/Models/AC_Semesters.cs b/Models/AC_Semesters.cs
new file mode 100644
index 0000000..5a15c76
--- /dev/null
+++ b/Models/AC_Semesters.cs
@@ -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 StartDate { get; set; }
+ public Nullable EndDate { get; set; }
+ public Nullable LastClassDate { get; set; }
+ public Nullable InstructorAccessStart { get; set; }
+ public Nullable InstructorAccessEnd { get; set; }
+ public string Weeks { get; set; }
+ public Nullable RegistrationStart { get; set; }
+ public Nullable RegistrationEnd { get; set; }
+ public Nullable OrientationDate { get; set; }
+ public Nullable LastDropingDate { get; set; }
+ public Nullable LateRegistrationStart { get; set; }
+ public Nullable LateRegistrationEnd { get; set; }
+ public Nullable LastWithdrawDate { get; set; }
+ public Nullable ExamStartDate { get; set; }
+ public Nullable ExamEndDate { get; set; }
+ public string WeeksWithExam { get; set; }
+ public Nullable RegistrationOn { get; set; }
+ public int MaxCourses { get; set; }
+ public Nullable ComissionGenDate { get; set; }
+ public Nullable SemesterRollDate { get; set; }
+ public Nullable GradeRollDate { get; set; }
+ public Nullable GradeSubmissionLastDate { get; set; }
+ public Nullable CreateDate { get; set; }
+ public Nullable UpdateDate { get; set; }
+ }
+}
diff --git a/Models/AC_StudentAccommodationTerms.cs b/Models/AC_StudentAccommodationTerms.cs
new file mode 100644
index 0000000..f0b7b6d
--- /dev/null
+++ b/Models/AC_StudentAccommodationTerms.cs
@@ -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; }
+
+
+ }
+}
diff --git a/Models/AC_StudentAccommodations.cs b/Models/AC_StudentAccommodations.cs
new file mode 100644
index 0000000..9de2663
--- /dev/null
+++ b/Models/AC_StudentAccommodations.cs
@@ -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 ReceiveDate { get; set; }
+ public Nullable 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 CreatedDate { get; set; }
+ public string UpdatedBy { get; set; }
+ public Nullable UpdatedDate { get; set; }
+
+ public virtual IEnumerable AC_StudentAccommodationTerms { get; set; }
+ }
+}
diff --git a/Models/AC_StudentAppeals.cs b/Models/AC_StudentAppeals.cs
new file mode 100644
index 0000000..328e171
--- /dev/null
+++ b/Models/AC_StudentAppeals.cs
@@ -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 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 ReceiveDate { get; set; }
+ public string Status { get; set; }
+ public string DecidedBy { get; set; }
+ public Nullable DecisionDate { get; set; }
+ public string OutCome { get; set; }
+ public string Note { get; set; }
+ public string CreatedBy { get; set; }
+ public Nullable CreateDate { get; set; }
+ public string UpdatedBy { get; set; }
+ public Nullable UpdatedDate { get; set; }
+ }
+
+}
diff --git a/Models/AC_StudentComplains.cs b/Models/AC_StudentComplains.cs
new file mode 100644
index 0000000..7bdef07
--- /dev/null
+++ b/Models/AC_StudentComplains.cs
@@ -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 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 DecisionDate { get; set; }
+ public string CreatedBy { get; set; }
+ public Nullable CreatedDate { get; set; }
+ public string UpdatedBy { get; set; }
+ public Nullable UpdatedDate { get; set; }
+ }
+}
diff --git a/Models/AC_StudentExamDeferrals.cs b/Models/AC_StudentExamDeferrals.cs
new file mode 100644
index 0000000..f0fc7bc
--- /dev/null
+++ b/Models/AC_StudentExamDeferrals.cs
@@ -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 ReceiveDate { get; set; }
+ public string Status { get; set; }
+ public string Note { get; set; }
+ public Nullable NewExamDate { get; set; }
+ public string DecidedBy { get; set; }
+ public Nullable DecisionDate { get; set; }
+ public string CreatedBy { get; set; }
+ public Nullable CreatedDate { get; set; }
+ public string UpdatedBy { get; set; }
+ public Nullable UpdatedDate { get; set; }
+ }
+}
diff --git a/Models/AC_StudentLeaves.cs b/Models/AC_StudentLeaves.cs
new file mode 100644
index 0000000..853329a
--- /dev/null
+++ b/Models/AC_StudentLeaves.cs
@@ -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 StartDate { get; set; }
+ public Nullable 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 ReceiveDate { get; set; }
+ public string Status { get; set; }
+ public string Note { get; set; }
+ public string DecidedBy { get; set; }
+ public Nullable DecisionDate { get; set; }
+ public string CreatedBy { get; set; }
+ public Nullable CreatedDate { get; set; }
+ public string UpdatedBy { get; set; }
+ public Nullable UpdatedDate { get; set; }
+ }
+}
diff --git a/Models/AC_StudentNonAcademicMisconducts.cs b/Models/AC_StudentNonAcademicMisconducts.cs
new file mode 100644
index 0000000..5ea9f6b
--- /dev/null
+++ b/Models/AC_StudentNonAcademicMisconducts.cs
@@ -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 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 DecisionDate { get; set; }
+ public string CreatedBy { get; set; }
+ public Nullable CreatedDate { get; set; }
+ public string UpdatedBy { get; set; }
+ public Nullable UpdatedDate { get; set; }
+ }
+}
diff --git a/Models/AC_TermCourseSeats.cs b/Models/AC_TermCourseSeats.cs
new file mode 100644
index 0000000..ea0c45e
--- /dev/null
+++ b/Models/AC_TermCourseSeats.cs
@@ -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 CourseSeatID { get; set; }
+ public Nullable ApplicationID { get; set; }
+ public Nullable SemesterID { get; set; }
+ public Nullable RCategoryID { get; set; }
+ public Nullable 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 CoursePaid { get; set; }
+ public Nullable PaidDate { get; set; }
+ public string ReceiptNumber { get; set; }
+ public string ClassType { get; set; }
+ public string ClassRoom { get; set; }
+ public Nullable RegistrationDate { get; set; }
+ public Nullable DropingDate { get; set; }
+ public Nullable Locked { get; set; }
+ public string RegSource { get; set; }
+ public Nullable 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; }
+ }
+}
diff --git a/Models/AC_TicketCategories.cs b/Models/AC_TicketCategories.cs
new file mode 100644
index 0000000..d4dbdf9
--- /dev/null
+++ b/Models/AC_TicketCategories.cs
@@ -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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_TicketMessages.cs b/Models/AC_TicketMessages.cs
new file mode 100644
index 0000000..87982d2
--- /dev/null
+++ b/Models/AC_TicketMessages.cs
@@ -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 DateSent { get; set; }
+ public bool IsRead { get; set; }
+ }
+}
diff --git a/Models/AC_TicketOnline.cs b/Models/AC_TicketOnline.cs
new file mode 100644
index 0000000..eedab87
--- /dev/null
+++ b/Models/AC_TicketOnline.cs
@@ -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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_TicketUserAssociations.cs b/Models/AC_TicketUserAssociations.cs
new file mode 100644
index 0000000..701afee
--- /dev/null
+++ b/Models/AC_TicketUserAssociations.cs
@@ -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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_Tickets.cs b/Models/AC_Tickets.cs
new file mode 100644
index 0000000..f80fb8d
--- /dev/null
+++ b/Models/AC_Tickets.cs
@@ -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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_User.cs b/Models/AC_User.cs
new file mode 100644
index 0000000..d164cc5
--- /dev/null
+++ b/Models/AC_User.cs
@@ -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; }
+ }
+}
diff --git a/Models/AC_UserRole.cs b/Models/AC_UserRole.cs
new file mode 100644
index 0000000..0de7b6f
--- /dev/null
+++ b/Models/AC_UserRole.cs
@@ -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; }
+ }
+}
diff --git a/Models/AC_WLCSupportingDocs.cs b/Models/AC_WLCSupportingDocs.cs
new file mode 100644
index 0000000..a82f4e8
--- /dev/null
+++ b/Models/AC_WLCSupportingDocs.cs
@@ -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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_WorkshopLog.cs b/Models/AC_WorkshopLog.cs
new file mode 100644
index 0000000..b8792a7
--- /dev/null
+++ b/Models/AC_WorkshopLog.cs
@@ -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 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 CreateDate { get; set; }
+ }
+}
diff --git a/Models/AC_WorkshopTypes.cs b/Models/AC_WorkshopTypes.cs
new file mode 100644
index 0000000..941b159
--- /dev/null
+++ b/Models/AC_WorkshopTypes.cs
@@ -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 CreateDate { get; set; }
+ }
+}
diff --git a/bin/Debug/net6.0/ACLib.P2.AppContext.deps.json b/bin/Debug/net6.0/ACLib.P2.AppContext.deps.json
new file mode 100644
index 0000000..865f2b9
--- /dev/null
+++ b/bin/Debug/net6.0/ACLib.P2.AppContext.deps.json
@@ -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"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net6.0/ACLib.P2.AppContext.dll b/bin/Debug/net6.0/ACLib.P2.AppContext.dll
new file mode 100644
index 0000000..6e78fcd
Binary files /dev/null and b/bin/Debug/net6.0/ACLib.P2.AppContext.dll differ
diff --git a/bin/Debug/net6.0/ACLib.P2.AppContext.pdb b/bin/Debug/net6.0/ACLib.P2.AppContext.pdb
new file mode 100644
index 0000000..3664bcc
Binary files /dev/null and b/bin/Debug/net6.0/ACLib.P2.AppContext.pdb differ
diff --git a/bin/Release/net6.0/ACLib.P2.AppContext.deps.json b/bin/Release/net6.0/ACLib.P2.AppContext.deps.json
new file mode 100644
index 0000000..865f2b9
--- /dev/null
+++ b/bin/Release/net6.0/ACLib.P2.AppContext.deps.json
@@ -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"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Release/net6.0/ACLib.P2.AppContext.dll b/bin/Release/net6.0/ACLib.P2.AppContext.dll
new file mode 100644
index 0000000..3849072
Binary files /dev/null and b/bin/Release/net6.0/ACLib.P2.AppContext.dll differ
diff --git a/bin/Release/net6.0/ACLib.P2.AppContext.pdb b/bin/Release/net6.0/ACLib.P2.AppContext.pdb
new file mode 100644
index 0000000..8dafeeb
Binary files /dev/null and b/bin/Release/net6.0/ACLib.P2.AppContext.pdb differ
diff --git a/obj/ACLib.P2.AppContext.csproj.nuget.dgspec.json b/obj/ACLib.P2.AppContext.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..241f752
--- /dev/null
+++ b/obj/ACLib.P2.AppContext.csproj.nuget.dgspec.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/ACLib.P2.AppContext.csproj.nuget.g.props b/obj/ACLib.P2.AppContext.csproj.nuget.g.props
new file mode 100644
index 0000000..48dc32b
--- /dev/null
+++ b/obj/ACLib.P2.AppContext.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\lhluk\.nuget\packages\
+ PackageReference
+ 6.7.0
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/ACLib.P2.AppContext.csproj.nuget.g.targets b/obj/ACLib.P2.AppContext.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/obj/ACLib.P2.AppContext.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/obj/ACLib.P2.Context.csproj.nuget.dgspec.json b/obj/ACLib.P2.Context.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..ebe08a5
--- /dev/null
+++ b/obj/ACLib.P2.Context.csproj.nuget.dgspec.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/ACLib.P2.Context.csproj.nuget.g.props b/obj/ACLib.P2.Context.csproj.nuget.g.props
new file mode 100644
index 0000000..9fd1fe4
--- /dev/null
+++ b/obj/ACLib.P2.Context.csproj.nuget.g.props
@@ -0,0 +1,16 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\LH9645\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ PackageReference
+ 6.7.0
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/ACLib.P2.Context.csproj.nuget.g.targets b/obj/ACLib.P2.Context.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/obj/ACLib.P2.Context.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/obj/ACLib.P2.DbContext.csproj.nuget.dgspec.json b/obj/ACLib.P2.DbContext.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..fae1245
--- /dev/null
+++ b/obj/ACLib.P2.DbContext.csproj.nuget.dgspec.json
@@ -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"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/ACLib.P2.DbContext.csproj.nuget.g.props b/obj/ACLib.P2.DbContext.csproj.nuget.g.props
new file mode 100644
index 0000000..9fd1fe4
--- /dev/null
+++ b/obj/ACLib.P2.DbContext.csproj.nuget.g.props
@@ -0,0 +1,16 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\LH9645\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ PackageReference
+ 6.7.0
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/ACLib.P2.DbContext.csproj.nuget.g.targets b/obj/ACLib.P2.DbContext.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/obj/ACLib.P2.DbContext.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..ed92695
--- /dev/null
+++ b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.AssemblyInfo.cs b/obj/Debug/net6.0/ACLib.P2.AppContext.AssemblyInfo.cs
new file mode 100644
index 0000000..195ad11
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.AppContext.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 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.
+//
+//------------------------------------------------------------------------------
+
+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.
+
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.AssemblyInfoInputs.cache b/obj/Debug/net6.0/ACLib.P2.AppContext.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..e41b29a
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.AppContext.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+d316db291ef9e253707bb9e0877e2d3d099de7a3
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/ACLib.P2.AppContext.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..6803627
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.AppContext.GeneratedMSBuildEditorConfig.editorconfig
@@ -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\
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.GlobalUsings.g.cs b/obj/Debug/net6.0/ACLib.P2.AppContext.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.AppContext.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.assets.cache b/obj/Debug/net6.0/ACLib.P2.AppContext.assets.cache
new file mode 100644
index 0000000..58118cb
Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.AppContext.assets.cache differ
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.AssemblyReference.cache b/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..9bd96b8
Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..938c039
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+f81fbdafd7a673813e1332d9a4c4a219e9afcdd6
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.FileListAbsolute.txt b/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..c718a87
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.AppContext.csproj.FileListAbsolute.txt
@@ -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
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.dll b/obj/Debug/net6.0/ACLib.P2.AppContext.dll
new file mode 100644
index 0000000..6e78fcd
Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.AppContext.dll differ
diff --git a/obj/Debug/net6.0/ACLib.P2.AppContext.pdb b/obj/Debug/net6.0/ACLib.P2.AppContext.pdb
new file mode 100644
index 0000000..3664bcc
Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.AppContext.pdb differ
diff --git a/obj/Debug/net6.0/ACLib.P2.Context.AssemblyInfo.cs b/obj/Debug/net6.0/ACLib.P2.Context.AssemblyInfo.cs
new file mode 100644
index 0000000..65f7cdd
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.Context.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 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.
+//
+//------------------------------------------------------------------------------
+
+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.
+
diff --git a/obj/Debug/net6.0/ACLib.P2.Context.AssemblyInfoInputs.cache b/obj/Debug/net6.0/ACLib.P2.Context.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..218f5c3
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.Context.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+854a66ac2fa5f3e7ec017d823727f154c4538e69
diff --git a/obj/Debug/net6.0/ACLib.P2.Context.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/ACLib.P2.Context.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..dbb2912
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.Context.GeneratedMSBuildEditorConfig.editorconfig
@@ -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\
diff --git a/obj/Debug/net6.0/ACLib.P2.Context.GlobalUsings.g.cs b/obj/Debug/net6.0/ACLib.P2.Context.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.Context.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/obj/Debug/net6.0/ACLib.P2.Context.assets.cache b/obj/Debug/net6.0/ACLib.P2.Context.assets.cache
new file mode 100644
index 0000000..f9d4898
Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.Context.assets.cache differ
diff --git a/obj/Debug/net6.0/ACLib.P2.Context.csproj.AssemblyReference.cache b/obj/Debug/net6.0/ACLib.P2.Context.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..767d9b5
Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.Context.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net6.0/ACLib.P2.DbContext.AssemblyInfo.cs b/obj/Debug/net6.0/ACLib.P2.DbContext.AssemblyInfo.cs
new file mode 100644
index 0000000..7ecdd5f
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.DbContext.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 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.
+//
+//------------------------------------------------------------------------------
+
+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.
+
diff --git a/obj/Debug/net6.0/ACLib.P2.DbContext.AssemblyInfoInputs.cache b/obj/Debug/net6.0/ACLib.P2.DbContext.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..73eb8c2
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.DbContext.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+63b4e494bcfabfb9b2cc70eecf7105693322c2d8
diff --git a/obj/Debug/net6.0/ACLib.P2.DbContext.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/ACLib.P2.DbContext.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..d8ff1f4
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.DbContext.GeneratedMSBuildEditorConfig.editorconfig
@@ -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\
diff --git a/obj/Debug/net6.0/ACLib.P2.DbContext.GlobalUsings.g.cs b/obj/Debug/net6.0/ACLib.P2.DbContext.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/obj/Debug/net6.0/ACLib.P2.DbContext.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/obj/Debug/net6.0/ACLib.P2.DbContext.assets.cache b/obj/Debug/net6.0/ACLib.P2.DbContext.assets.cache
new file mode 100644
index 0000000..e4e805e
Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.DbContext.assets.cache differ
diff --git a/obj/Debug/net6.0/ACLib.P2.DbContext.csproj.AssemblyReference.cache b/obj/Debug/net6.0/ACLib.P2.DbContext.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..767d9b5
Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.DbContext.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net6.0/ref/ACLib.P2.AppContext.dll b/obj/Debug/net6.0/ref/ACLib.P2.AppContext.dll
new file mode 100644
index 0000000..7da389b
Binary files /dev/null and b/obj/Debug/net6.0/ref/ACLib.P2.AppContext.dll differ
diff --git a/obj/Debug/net6.0/refint/ACLib.P2.AppContext.dll b/obj/Debug/net6.0/refint/ACLib.P2.AppContext.dll
new file mode 100644
index 0000000..7da389b
Binary files /dev/null and b/obj/Debug/net6.0/refint/ACLib.P2.AppContext.dll differ
diff --git a/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..ed92695
--- /dev/null
+++ b/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.AssemblyInfo.cs b/obj/Release/net6.0/ACLib.P2.AppContext.AssemblyInfo.cs
new file mode 100644
index 0000000..ac7ce9b
--- /dev/null
+++ b/obj/Release/net6.0/ACLib.P2.AppContext.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 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.
+//
+//------------------------------------------------------------------------------
+
+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.
+
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.AssemblyInfoInputs.cache b/obj/Release/net6.0/ACLib.P2.AppContext.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..55be773
--- /dev/null
+++ b/obj/Release/net6.0/ACLib.P2.AppContext.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+1920a871d43e84f8cb7196e0c9c61112cd4544ce
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0/ACLib.P2.AppContext.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..2bd59d1
--- /dev/null
+++ b/obj/Release/net6.0/ACLib.P2.AppContext.GeneratedMSBuildEditorConfig.editorconfig
@@ -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\
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.GlobalUsings.g.cs b/obj/Release/net6.0/ACLib.P2.AppContext.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/obj/Release/net6.0/ACLib.P2.AppContext.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.assets.cache b/obj/Release/net6.0/ACLib.P2.AppContext.assets.cache
new file mode 100644
index 0000000..e2dee35
Binary files /dev/null and b/obj/Release/net6.0/ACLib.P2.AppContext.assets.cache differ
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.csproj.AssemblyReference.cache b/obj/Release/net6.0/ACLib.P2.AppContext.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..767d9b5
Binary files /dev/null and b/obj/Release/net6.0/ACLib.P2.AppContext.csproj.AssemblyReference.cache differ
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.csproj.CoreCompileInputs.cache b/obj/Release/net6.0/ACLib.P2.AppContext.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..449e935
--- /dev/null
+++ b/obj/Release/net6.0/ACLib.P2.AppContext.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+fa6431ef91589805fe3422dcaa0ea51c7d1854aa
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.csproj.FileListAbsolute.txt b/obj/Release/net6.0/ACLib.P2.AppContext.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..138f488
--- /dev/null
+++ b/obj/Release/net6.0/ACLib.P2.AppContext.csproj.FileListAbsolute.txt
@@ -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
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.dll b/obj/Release/net6.0/ACLib.P2.AppContext.dll
new file mode 100644
index 0000000..3849072
Binary files /dev/null and b/obj/Release/net6.0/ACLib.P2.AppContext.dll differ
diff --git a/obj/Release/net6.0/ACLib.P2.AppContext.pdb b/obj/Release/net6.0/ACLib.P2.AppContext.pdb
new file mode 100644
index 0000000..8dafeeb
Binary files /dev/null and b/obj/Release/net6.0/ACLib.P2.AppContext.pdb differ
diff --git a/obj/Release/net6.0/ref/ACLib.P2.AppContext.dll b/obj/Release/net6.0/ref/ACLib.P2.AppContext.dll
new file mode 100644
index 0000000..4f33d28
Binary files /dev/null and b/obj/Release/net6.0/ref/ACLib.P2.AppContext.dll differ
diff --git a/obj/Release/net6.0/refint/ACLib.P2.AppContext.dll b/obj/Release/net6.0/refint/ACLib.P2.AppContext.dll
new file mode 100644
index 0000000..4f33d28
Binary files /dev/null and b/obj/Release/net6.0/refint/ACLib.P2.AppContext.dll differ
diff --git a/obj/project.assets.json b/obj/project.assets.json
new file mode 100644
index 0000000..283eea1
--- /dev/null
+++ b/obj/project.assets.json
@@ -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"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
new file mode 100644
index 0000000..b27e36f
--- /dev/null
+++ b/obj/project.nuget.cache
@@ -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": []
+}
\ No newline at end of file