commit d10b55cb3838832e9ac359f2ec416293125b3903 Author: idluhak Date: Wed Sep 27 19:50:19 2023 +0800 initial commit diff --git a/ACLib.P2.v01.csproj b/ACLib.P2.v01.csproj new file mode 100644 index 0000000..ab26cce --- /dev/null +++ b/ACLib.P2.v01.csproj @@ -0,0 +1,13 @@ + + + + net6.0 + enable + enable + + + + + + + diff --git a/Class1.cs b/Class1.cs new file mode 100644 index 0000000..7430648 --- /dev/null +++ b/Class1.cs @@ -0,0 +1,7 @@ +namespace ACLib.P2.v01 +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/Controllers/ACAPI_Student.cs b/Controllers/ACAPI_Student.cs new file mode 100644 index 0000000..4f100df --- /dev/null +++ b/Controllers/ACAPI_Student.cs @@ -0,0 +1,220 @@ +using ACLib.P2.AppContext; +using ACLib.P2.AppContext.Models; + +namespace ACLib.P2.v01.Controllers +{ + /// + /// Interface Definition + /// + public interface IStudentManagerP2 + { + + #region Student Information + + AC_Clients GetClient(string clientName); + IEnumerable GetClientById(int? clientId); + IEnumerable GetStudentAccommodationTerms(int? appid); + + /* + int GetApplicationIDByStudentID(string studentid); + IEnumerable GetStudentAccommodations(int appid); + IEnumerable GetStudentAppeals(int appid); + IEnumerable AC_StudentLeaves(int appid); + IEnumerable AC_StudentComplains(int appid); + IEnumerable GetStudentExamDeferrals(int appid); + IEnumerable GetStudentNonAcademicMisconducts(int appid); + IEnumerable GetStudentConsellings(int appid); + float GetMyCredits(int appid); + IEnumerable GetStudentsWithCreditsOver(float totalcredits); + */ + #endregion + + } + + /// + /// Interface Implementation + /// + /// + public class StudentManagerP2 : IStudentManagerP2 + { + string constring; + private readonly DatabaseContext _context; + + public StudentManagerP2(DatabaseContext context) + { + this._context = context; + } + + public AC_Clients GetClient(string clientName) + { + IEnumerable comtable; + comtable = this._context.AC_Clients.Where(u => u.ClientName == clientName); + return comtable.FirstOrDefault(); + } + + public IEnumerable GetClientById(int? clientId) + { + IEnumerable comtable; + comtable = _context.AC_Clients.Where(client => client.ID == clientId); + return comtable.ToList(); + } + + public IEnumerable GetStudentAccommodationTerms(int? appid) + { + IEnumerable comtab = Enumerable.Empty(); + comtab = _context.AC_StudentAccommodationTerms.Where(u => u.AccommID == appid); + return comtab.ToList(); + } + /* + + public IEnumerable GetStudentAccommodations(int appid) + { + IEnumerable comtab = Enumerable.Empty(); + using (IDataContext ctx = DataContext.Instance()) + { + comtab = ctx.ExecuteQuery(System.Data.CommandType.Text, "select * from AC_StudentAccommodations where ApplicationID=" + appid); + } + + foreach(AC_StudentAccommodations tx in comtab) + { + tx.AC_StudentAccommodationTerms = GetStudentAccommodationTerms(appid); + yield return tx; + } + } + + public IEnumerable GetStudentAppeals(int appid) + { + IEnumerable comtab = Enumerable.Empty(); + using (IDataContext ctx = DataContext.Instance()) + { + comtab = ctx.ExecuteQuery(System.Data.CommandType.Text, "select * from AC_StudentAppeals where ApplicationID=" + appid); + } + + return comtab; + } + + public IEnumerable AC_StudentLeaves(int appid) + { + IEnumerable comtab = Enumerable.Empty(); + using (IDataContext ctx = DataContext.Instance()) + { + comtab = ctx.ExecuteQuery(System.Data.CommandType.Text, "select * from AC_StudentLeaves where ApplicationID=" + appid); + } + + return comtab; + } + + public IEnumerable AC_StudentComplains(int appid) + { + IEnumerable comtab = Enumerable.Empty(); + using (IDataContext ctx = DataContext.Instance()) + { + comtab = ctx.ExecuteQuery(System.Data.CommandType.Text, "select * from AC_StudentComplains where ApplicationID=" + appid); + } + + return comtab; + } + + public IEnumerable GetStudentExamDeferrals(int appid) + { + IEnumerable comtab = Enumerable.Empty(); + using (IDataContext ctx = DataContext.Instance()) + { + comtab = ctx.ExecuteQuery(System.Data.CommandType.Text, "select * from AC_StudentExamDeferrals where ApplicationID=" + appid); + } + + return comtab; + } + + public IEnumerable GetStudentNonAcademicMisconducts(int appid) + { + IEnumerable comtab = Enumerable.Empty(); + using (IDataContext ctx = DataContext.Instance()) + { + comtab = ctx.ExecuteQuery(System.Data.CommandType.Text, "select * from AC_StudentNonAcademicMisconducts where ApplicationID=" + appid); + } + + return comtab; + } + + public IEnumerable GetStudentConsellings(int appid) + { + IEnumerable comtab = Enumerable.Empty(); + using (IDataContext ctx = DataContext.Instance()) + { + comtab = ctx.ExecuteQuery(System.Data.CommandType.Text, "select * from AC_Consellings where ApplicationID=" + appid); + } + + return comtab; + } + + public float GetMyCredits(int appid) + { + float credits = 0; + string strsql = "select sum(credits) as finalcredits from ( " + + " select T1.ApplicationID , sum(T3.CourseCredit) as credits " + + " from AC_ApplicantCourse T1 join AC_ClassRun T2 on (T1.ClassID = T2.ClassID) join AC_Courses T3 on (T2.CourseNumber = T3.CourseNumber) " + + " where T3.CourseCredit > 0 and T1.Mark >= 50 and(T1.RepeatedCourse = 0 or RepeatedCourse is null) " + + " group by ApplicationID " + + " UNION " + + " select ApplicationID, sum(Credit) as credits from AC_AcademicCourseHistory group by ApplicationID " + + " ) G1 " + + " where ApplicationID = " + appid + + " group by G1.ApplicationID"; + try + { + using (IDataContext ctx = DataContext.Instance()) + { + credits = ctx.ExecuteScalar(System.Data.CommandType.Text, strsql); + + } + } + catch (Exception ex) + { + return credits; + } + + return credits; + } + + + public IEnumerable GetStudentsWithCreditsOver(float totalcredits) + { + IEnumerable appids = Enumerable.Empty(); + + string strsql = "select ApplicationID from ( " + + "select ApplicationID, sum(credits) as finalcredits from ( " + + " select T1.ApplicationID , sum(T3.CourseCredit) as credits " + + " from AC_ApplicantCourse T1 join AC_ClassRun T2 on (T1.ClassID = T2.ClassID) join AC_Courses T3 on (T2.CourseNumber = T3.CourseNumber) " + + " where T3.CourseCredit > 0 and T1.Mark >= 50 and(T1.RepeatedCourse = 0 or RepeatedCourse is null) " + + " group by ApplicationID " + + " UNION " + + " select ApplicationID, sum(Credit) as credits from AC_AcademicCourseHistory group by ApplicationID " + + " ) G1 " + + " group by G1.ApplicationID" + + ") G2 where finalcredits > =" + totalcredits; + try + { + using (IDataContext ctx = DataContext.Instance()) + { + appids = ctx.ExecuteQuery(System.Data.CommandType.Text, strsql); + + } + } + catch (Exception ex) + { + return appids; + } + + return appids; + + } + + public int GetApplicationIDByStudentID(string studentid) + { + throw new NotImplementedException(); + } + */ + } + +} 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/Debug/net6.0/ACLib.P2.v01.deps.json b/bin/Debug/net6.0/ACLib.P2.v01.deps.json new file mode 100644 index 0000000..7c1d49c --- /dev/null +++ b/bin/Debug/net6.0/ACLib.P2.v01.deps.json @@ -0,0 +1,266 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "ACLib.P2.v01/1.0.0": { + "dependencies": { + "ACLib.P2.AppContext": "1.0.0" + }, + "runtime": { + "ACLib.P2.v01.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": {}, + "ACLib.P2.AppContext/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.0" + }, + "runtime": { + "ACLib.P2.AppContext.dll": {} + } + } + } + }, + "libraries": { + "ACLib.P2.v01/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" + }, + "ACLib.P2.AppContext/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0/ACLib.P2.v01.dll b/bin/Debug/net6.0/ACLib.P2.v01.dll new file mode 100644 index 0000000..0558968 Binary files /dev/null and b/bin/Debug/net6.0/ACLib.P2.v01.dll differ diff --git a/bin/Debug/net6.0/ACLib.P2.v01.pdb b/bin/Debug/net6.0/ACLib.P2.v01.pdb new file mode 100644 index 0000000..8242223 Binary files /dev/null and b/bin/Debug/net6.0/ACLib.P2.v01.pdb differ 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/bin/Release/net6.0/ACLib.P2.v01.deps.json b/bin/Release/net6.0/ACLib.P2.v01.deps.json new file mode 100644 index 0000000..7c1d49c --- /dev/null +++ b/bin/Release/net6.0/ACLib.P2.v01.deps.json @@ -0,0 +1,266 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "ACLib.P2.v01/1.0.0": { + "dependencies": { + "ACLib.P2.AppContext": "1.0.0" + }, + "runtime": { + "ACLib.P2.v01.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": {}, + "ACLib.P2.AppContext/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.0" + }, + "runtime": { + "ACLib.P2.AppContext.dll": {} + } + } + } + }, + "libraries": { + "ACLib.P2.v01/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" + }, + "ACLib.P2.AppContext/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Release/net6.0/ACLib.P2.v01.dll b/bin/Release/net6.0/ACLib.P2.v01.dll new file mode 100644 index 0000000..5ccd45a Binary files /dev/null and b/bin/Release/net6.0/ACLib.P2.v01.dll differ diff --git a/bin/Release/net6.0/ACLib.P2.v01.pdb b/bin/Release/net6.0/ACLib.P2.v01.pdb new file mode 100644 index 0000000..dbf7efe Binary files /dev/null and b/bin/Release/net6.0/ACLib.P2.v01.pdb differ diff --git a/obj/ACLib.P2.v01.csproj.nuget.dgspec.json b/obj/ACLib.P2.v01.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e738be4 --- /dev/null +++ b/obj/ACLib.P2.v01.csproj.nuget.dgspec.json @@ -0,0 +1,128 @@ +{ + "format": 1, + "restore": { + "D:\\DNN\\DNN\\ACLib.P2.v01\\ACLib.P2.v01.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" + } + } + }, + "D:\\DNN\\DNN\\ACLib.P2.v01\\ACLib.P2.v01.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\DNN\\DNN\\ACLib.P2.v01\\ACLib.P2.v01.csproj", + "projectName": "ACLib.P2.v01", + "projectPath": "D:\\DNN\\DNN\\ACLib.P2.v01\\ACLib.P2.v01.csproj", + "packagesPath": "C:\\Users\\lhluk\\.nuget\\packages\\", + "outputPath": "D:\\DNN\\DNN\\ACLib.P2.v01\\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": { + "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj": { + "projectPath": "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.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.v01.csproj.nuget.g.props b/obj/ACLib.P2.v01.csproj.nuget.g.props new file mode 100644 index 0000000..48dc32b --- /dev/null +++ b/obj/ACLib.P2.v01.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.v01.csproj.nuget.g.targets b/obj/ACLib.P2.v01.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/ACLib.P2.v01.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.v01.AssemblyInfo.cs b/obj/Debug/net6.0/ACLib.P2.v01.AssemblyInfo.cs new file mode 100644 index 0000000..ef6fe68 --- /dev/null +++ b/obj/Debug/net6.0/ACLib.P2.v01.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.v01")] +[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.v01")] +[assembly: System.Reflection.AssemblyTitleAttribute("ACLib.P2.v01")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net6.0/ACLib.P2.v01.AssemblyInfoInputs.cache b/obj/Debug/net6.0/ACLib.P2.v01.AssemblyInfoInputs.cache new file mode 100644 index 0000000..5c18f3d --- /dev/null +++ b/obj/Debug/net6.0/ACLib.P2.v01.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ca093671d1b1f757d90bd4f6dab358b509ea054d diff --git a/obj/Debug/net6.0/ACLib.P2.v01.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/ACLib.P2.v01.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6d58e69 --- /dev/null +++ b/obj/Debug/net6.0/ACLib.P2.v01.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.v01 +build_property.ProjectDir = d:\DNN\DNN\ACLib.P2.v01\ diff --git a/obj/Debug/net6.0/ACLib.P2.v01.GlobalUsings.g.cs b/obj/Debug/net6.0/ACLib.P2.v01.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net6.0/ACLib.P2.v01.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.v01.assets.cache b/obj/Debug/net6.0/ACLib.P2.v01.assets.cache new file mode 100644 index 0000000..2fe0f61 Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.v01.assets.cache differ diff --git a/obj/Debug/net6.0/ACLib.P2.v01.csproj.AssemblyReference.cache b/obj/Debug/net6.0/ACLib.P2.v01.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0ebeeb6 Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.v01.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0/ACLib.P2.v01.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0/ACLib.P2.v01.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0/ACLib.P2.v01.csproj.CopyComplete b/obj/Debug/net6.0/ACLib.P2.v01.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0/ACLib.P2.v01.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0/ACLib.P2.v01.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..458700c --- /dev/null +++ b/obj/Debug/net6.0/ACLib.P2.v01.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +19fcae2cd2fbfd92785d76c636b8a0720904259d diff --git a/obj/Debug/net6.0/ACLib.P2.v01.csproj.FileListAbsolute.txt b/obj/Debug/net6.0/ACLib.P2.v01.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..28706a2 --- /dev/null +++ b/obj/Debug/net6.0/ACLib.P2.v01.csproj.FileListAbsolute.txt @@ -0,0 +1,30 @@ +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.v01.deps.json +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.v01.dll +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.v01.pdb +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.AppContext.dll +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.AppContext.pdb +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.csproj.AssemblyReference.cache +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.GeneratedMSBuildEditorConfig.editorconfig +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.AssemblyInfoInputs.cache +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.AssemblyInfo.cs +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.csproj.CoreCompileInputs.cache +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.csproj.CopyComplete +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.dll +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\refint\ACLib.P2.v01.dll +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.pdb +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ref\ACLib.P2.v01.dll +D:\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.v01.deps.json +D:\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.v01.dll +D:\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.v01.pdb +D:\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.AppContext.dll +D:\DNN\DNN\ACLib.P2.v01\bin\Debug\net6.0\ACLib.P2.AppContext.pdb +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.csproj.AssemblyReference.cache +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.GeneratedMSBuildEditorConfig.editorconfig +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.AssemblyInfoInputs.cache +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.AssemblyInfo.cs +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.csproj.CoreCompileInputs.cache +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.csproj.CopyComplete +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.dll +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\refint\ACLib.P2.v01.dll +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ACLib.P2.v01.pdb +D:\DNN\DNN\ACLib.P2.v01\obj\Debug\net6.0\ref\ACLib.P2.v01.dll diff --git a/obj/Debug/net6.0/ACLib.P2.v01.dll b/obj/Debug/net6.0/ACLib.P2.v01.dll new file mode 100644 index 0000000..0558968 Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.v01.dll differ diff --git a/obj/Debug/net6.0/ACLib.P2.v01.pdb b/obj/Debug/net6.0/ACLib.P2.v01.pdb new file mode 100644 index 0000000..8242223 Binary files /dev/null and b/obj/Debug/net6.0/ACLib.P2.v01.pdb differ diff --git a/obj/Debug/net6.0/ref/ACLib.P2.v01.dll b/obj/Debug/net6.0/ref/ACLib.P2.v01.dll new file mode 100644 index 0000000..16b9629 Binary files /dev/null and b/obj/Debug/net6.0/ref/ACLib.P2.v01.dll differ diff --git a/obj/Debug/net6.0/refint/ACLib.P2.v01.dll b/obj/Debug/net6.0/refint/ACLib.P2.v01.dll new file mode 100644 index 0000000..16b9629 Binary files /dev/null and b/obj/Debug/net6.0/refint/ACLib.P2.v01.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.v01.AssemblyInfo.cs b/obj/Release/net6.0/ACLib.P2.v01.AssemblyInfo.cs new file mode 100644 index 0000000..fbc214c --- /dev/null +++ b/obj/Release/net6.0/ACLib.P2.v01.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.v01")] +[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.v01")] +[assembly: System.Reflection.AssemblyTitleAttribute("ACLib.P2.v01")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Release/net6.0/ACLib.P2.v01.AssemblyInfoInputs.cache b/obj/Release/net6.0/ACLib.P2.v01.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fa045e7 --- /dev/null +++ b/obj/Release/net6.0/ACLib.P2.v01.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +50a3e3ba55af9ca25d1765dafdcc8d2fb2d48718 diff --git a/obj/Release/net6.0/ACLib.P2.v01.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0/ACLib.P2.v01.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..71f0c6c --- /dev/null +++ b/obj/Release/net6.0/ACLib.P2.v01.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.v01 +build_property.ProjectDir = C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\ diff --git a/obj/Release/net6.0/ACLib.P2.v01.GlobalUsings.g.cs b/obj/Release/net6.0/ACLib.P2.v01.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Release/net6.0/ACLib.P2.v01.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.v01.assets.cache b/obj/Release/net6.0/ACLib.P2.v01.assets.cache new file mode 100644 index 0000000..913b1f3 Binary files /dev/null and b/obj/Release/net6.0/ACLib.P2.v01.assets.cache differ diff --git a/obj/Release/net6.0/ACLib.P2.v01.csproj.AssemblyReference.cache b/obj/Release/net6.0/ACLib.P2.v01.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0cffc60 Binary files /dev/null and b/obj/Release/net6.0/ACLib.P2.v01.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net6.0/ACLib.P2.v01.csproj.CopyComplete b/obj/Release/net6.0/ACLib.P2.v01.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net6.0/ACLib.P2.v01.csproj.CoreCompileInputs.cache b/obj/Release/net6.0/ACLib.P2.v01.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..1d60e23 --- /dev/null +++ b/obj/Release/net6.0/ACLib.P2.v01.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1932b9e012b503a1a91b71ff6be4017fce1d8a40 diff --git a/obj/Release/net6.0/ACLib.P2.v01.csproj.FileListAbsolute.txt b/obj/Release/net6.0/ACLib.P2.v01.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5f9ebd9 --- /dev/null +++ b/obj/Release/net6.0/ACLib.P2.v01.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Release\net6.0\ACLib.P2.v01.deps.json +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Release\net6.0\ACLib.P2.v01.dll +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Release\net6.0\ACLib.P2.v01.pdb +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Release\net6.0\ACLib.P2.AppContext.dll +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\bin\Release\net6.0\ACLib.P2.AppContext.pdb +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\ACLib.P2.v01.csproj.AssemblyReference.cache +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\ACLib.P2.v01.GeneratedMSBuildEditorConfig.editorconfig +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\ACLib.P2.v01.AssemblyInfoInputs.cache +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\ACLib.P2.v01.AssemblyInfo.cs +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\ACLib.P2.v01.csproj.CoreCompileInputs.cache +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\ACLib.P2.v01.csproj.CopyComplete +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\ACLib.P2.v01.dll +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\refint\ACLib.P2.v01.dll +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\ACLib.P2.v01.pdb +C:\Projects\git-clone\DNN\DNN\ACLib.P2.v01\obj\Release\net6.0\ref\ACLib.P2.v01.dll diff --git a/obj/Release/net6.0/ACLib.P2.v01.dll b/obj/Release/net6.0/ACLib.P2.v01.dll new file mode 100644 index 0000000..5ccd45a Binary files /dev/null and b/obj/Release/net6.0/ACLib.P2.v01.dll differ diff --git a/obj/Release/net6.0/ACLib.P2.v01.pdb b/obj/Release/net6.0/ACLib.P2.v01.pdb new file mode 100644 index 0000000..dbf7efe Binary files /dev/null and b/obj/Release/net6.0/ACLib.P2.v01.pdb differ diff --git a/obj/Release/net6.0/ref/ACLib.P2.v01.dll b/obj/Release/net6.0/ref/ACLib.P2.v01.dll new file mode 100644 index 0000000..ee7a012 Binary files /dev/null and b/obj/Release/net6.0/ref/ACLib.P2.v01.dll differ diff --git a/obj/Release/net6.0/refint/ACLib.P2.v01.dll b/obj/Release/net6.0/refint/ACLib.P2.v01.dll new file mode 100644 index 0000000..ee7a012 Binary files /dev/null and b/obj/Release/net6.0/refint/ACLib.P2.v01.dll differ diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..8ee755d --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,658 @@ +{ + "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/_._": {} + } + }, + "ACLib.P2.AppContext/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.0" + }, + "compile": { + "bin/placeholder/ACLib.P2.AppContext.dll": {} + }, + "runtime": { + "bin/placeholder/ACLib.P2.AppContext.dll": {} + } + } + } + }, + "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" + ] + }, + "ACLib.P2.AppContext/1.0.0": { + "type": "project", + "path": "../ACLib.P2.DbContext/ACLib.P2.AppContext.csproj", + "msbuildProject": "../ACLib.P2.DbContext/ACLib.P2.AppContext.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "ACLib.P2.AppContext >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\lhluk\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\DNN\\DNN\\ACLib.P2.v01\\ACLib.P2.v01.csproj", + "projectName": "ACLib.P2.v01", + "projectPath": "D:\\DNN\\DNN\\ACLib.P2.v01\\ACLib.P2.v01.csproj", + "packagesPath": "C:\\Users\\lhluk\\.nuget\\packages\\", + "outputPath": "D:\\DNN\\DNN\\ACLib.P2.v01\\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": { + "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj": { + "projectPath": "D:\\DNN\\DNN\\ACLib.P2.DbContext\\ACLib.P2.AppContext.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.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..a2109c6 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,23 @@ +{ + "version": 2, + "dgSpecHash": "igQJNzsTSw/97JCZGoNJgc0cd/wh42WJMhm2hLqmAwa7MnxQjZBCMJw9UHPOzvAFq0jNzEaeFFgff+EXaHfdcg==", + "success": true, + "projectFilePath": "D:\\DNN\\DNN\\ACLib.P2.v01\\ACLib.P2.v01.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