| @ -0,0 +1,13 @@ | |||
| <Project Sdk="Microsoft.NET.Sdk"> | |||
| <PropertyGroup> | |||
| <TargetFramework>net6.0</TargetFramework> | |||
| <ImplicitUsings>enable</ImplicitUsings> | |||
| <Nullable>enable</Nullable> | |||
| </PropertyGroup> | |||
| <ItemGroup> | |||
| <ProjectReference Include="..\ACLib.P2.DbContext\ACLib.P2.AppContext.csproj" /> | |||
| </ItemGroup> | |||
| </Project> | |||
| @ -0,0 +1,7 @@ | |||
| namespace ACLib.P2.v01 | |||
| { | |||
| public class Class1 | |||
| { | |||
| } | |||
| } | |||
| @ -0,0 +1,220 @@ | |||
| using ACLib.P2.AppContext; | |||
| using ACLib.P2.AppContext.Models; | |||
| namespace ACLib.P2.v01.Controllers | |||
| { | |||
| /// <summary> | |||
| /// Interface Definition | |||
| /// </summary> | |||
| public interface IStudentManagerP2 | |||
| { | |||
| #region Student Information | |||
| AC_Clients GetClient(string clientName); | |||
| IEnumerable<AC_Clients> GetClientById(int? clientId); | |||
| IEnumerable<AC_StudentAccommodationTerms> GetStudentAccommodationTerms(int? appid); | |||
| /* | |||
| int GetApplicationIDByStudentID(string studentid); | |||
| IEnumerable<AC_StudentAccommodations> GetStudentAccommodations(int appid); | |||
| IEnumerable<AC_StudentAppeals> GetStudentAppeals(int appid); | |||
| IEnumerable<AC_StudentLeaves> AC_StudentLeaves(int appid); | |||
| IEnumerable<AC_StudentComplains> AC_StudentComplains(int appid); | |||
| IEnumerable<AC_StudentExamDeferrals> GetStudentExamDeferrals(int appid); | |||
| IEnumerable<AC_StudentNonAcademicMisconducts> GetStudentNonAcademicMisconducts(int appid); | |||
| IEnumerable<AC_Consellings> GetStudentConsellings(int appid); | |||
| float GetMyCredits(int appid); | |||
| IEnumerable<int> GetStudentsWithCreditsOver(float totalcredits); | |||
| */ | |||
| #endregion | |||
| } | |||
| /// <summary> | |||
| /// Interface Implementation | |||
| /// </summary> | |||
| /// | |||
| public class StudentManagerP2 : IStudentManagerP2 | |||
| { | |||
| string constring; | |||
| private readonly DatabaseContext _context; | |||
| public StudentManagerP2(DatabaseContext context) | |||
| { | |||
| this._context = context; | |||
| } | |||
| public AC_Clients GetClient(string clientName) | |||
| { | |||
| IEnumerable<AC_Clients> comtable; | |||
| comtable = this._context.AC_Clients.Where(u => u.ClientName == clientName); | |||
| return comtable.FirstOrDefault(); | |||
| } | |||
| public IEnumerable<AC_Clients> GetClientById(int? clientId) | |||
| { | |||
| IEnumerable<AC_Clients> comtable; | |||
| comtable = _context.AC_Clients.Where(client => client.ID == clientId); | |||
| return comtable.ToList(); | |||
| } | |||
| public IEnumerable<AC_StudentAccommodationTerms> GetStudentAccommodationTerms(int? appid) | |||
| { | |||
| IEnumerable<AC_StudentAccommodationTerms> comtab = Enumerable.Empty<AC_StudentAccommodationTerms>(); | |||
| comtab = _context.AC_StudentAccommodationTerms.Where(u => u.AccommID == appid); | |||
| return comtab.ToList(); | |||
| } | |||
| /* | |||
| public IEnumerable<AC_StudentAccommodations> GetStudentAccommodations(int appid) | |||
| { | |||
| IEnumerable<AC_StudentAccommodations> comtab = Enumerable.Empty<AC_StudentAccommodations>(); | |||
| using (IDataContext ctx = DataContext.Instance()) | |||
| { | |||
| comtab = ctx.ExecuteQuery<AC_StudentAccommodations>(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<AC_StudentAppeals> GetStudentAppeals(int appid) | |||
| { | |||
| IEnumerable<AC_StudentAppeals> comtab = Enumerable.Empty<AC_StudentAppeals>(); | |||
| using (IDataContext ctx = DataContext.Instance()) | |||
| { | |||
| comtab = ctx.ExecuteQuery<AC_StudentAppeals>(System.Data.CommandType.Text, "select * from AC_StudentAppeals where ApplicationID=" + appid); | |||
| } | |||
| return comtab; | |||
| } | |||
| public IEnumerable<AC_StudentLeaves> AC_StudentLeaves(int appid) | |||
| { | |||
| IEnumerable<AC_StudentLeaves> comtab = Enumerable.Empty<AC_StudentLeaves>(); | |||
| using (IDataContext ctx = DataContext.Instance()) | |||
| { | |||
| comtab = ctx.ExecuteQuery<AC_StudentLeaves>(System.Data.CommandType.Text, "select * from AC_StudentLeaves where ApplicationID=" + appid); | |||
| } | |||
| return comtab; | |||
| } | |||
| public IEnumerable<AC_StudentComplains> AC_StudentComplains(int appid) | |||
| { | |||
| IEnumerable<AC_StudentComplains> comtab = Enumerable.Empty<AC_StudentComplains>(); | |||
| using (IDataContext ctx = DataContext.Instance()) | |||
| { | |||
| comtab = ctx.ExecuteQuery<AC_StudentComplains>(System.Data.CommandType.Text, "select * from AC_StudentComplains where ApplicationID=" + appid); | |||
| } | |||
| return comtab; | |||
| } | |||
| public IEnumerable<AC_StudentExamDeferrals> GetStudentExamDeferrals(int appid) | |||
| { | |||
| IEnumerable<AC_StudentExamDeferrals> comtab = Enumerable.Empty<AC_StudentExamDeferrals>(); | |||
| using (IDataContext ctx = DataContext.Instance()) | |||
| { | |||
| comtab = ctx.ExecuteQuery<AC_StudentExamDeferrals>(System.Data.CommandType.Text, "select * from AC_StudentExamDeferrals where ApplicationID=" + appid); | |||
| } | |||
| return comtab; | |||
| } | |||
| public IEnumerable<AC_StudentNonAcademicMisconducts> GetStudentNonAcademicMisconducts(int appid) | |||
| { | |||
| IEnumerable<AC_StudentNonAcademicMisconducts> comtab = Enumerable.Empty<AC_StudentNonAcademicMisconducts>(); | |||
| using (IDataContext ctx = DataContext.Instance()) | |||
| { | |||
| comtab = ctx.ExecuteQuery<AC_StudentNonAcademicMisconducts>(System.Data.CommandType.Text, "select * from AC_StudentNonAcademicMisconducts where ApplicationID=" + appid); | |||
| } | |||
| return comtab; | |||
| } | |||
| public IEnumerable<AC_Consellings> GetStudentConsellings(int appid) | |||
| { | |||
| IEnumerable<AC_Consellings> comtab = Enumerable.Empty<AC_Consellings>(); | |||
| using (IDataContext ctx = DataContext.Instance()) | |||
| { | |||
| comtab = ctx.ExecuteQuery<AC_Consellings>(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<float>(System.Data.CommandType.Text, strsql); | |||
| } | |||
| } | |||
| catch (Exception ex) | |||
| { | |||
| return credits; | |||
| } | |||
| return credits; | |||
| } | |||
| public IEnumerable<int> GetStudentsWithCreditsOver(float totalcredits) | |||
| { | |||
| IEnumerable<int> appids = Enumerable.Empty<int>(); | |||
| 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<int>(System.Data.CommandType.Text, strsql); | |||
| } | |||
| } | |||
| catch (Exception ex) | |||
| { | |||
| return appids; | |||
| } | |||
| return appids; | |||
| } | |||
| public int GetApplicationIDByStudentID(string studentid) | |||
| { | |||
| throw new NotImplementedException(); | |||
| } | |||
| */ | |||
| } | |||
| } | |||
| @ -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": "" | |||
| } | |||
| } | |||
| } | |||
| @ -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": "" | |||
| } | |||
| } | |||
| } | |||
| @ -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" | |||
| } | |||
| } | |||
| } | |||
| } | |||
| } | |||
| @ -0,0 +1,15 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | |||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||
| <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||
| <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> | |||
| <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | |||
| <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | |||
| <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> | |||
| <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\lhluk\.nuget\packages\</NuGetPackageFolders> | |||
| <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | |||
| <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion> | |||
| </PropertyGroup> | |||
| <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||
| <SourceRoot Include="C:\Users\lhluk\.nuget\packages\" /> | |||
| </ItemGroup> | |||
| </Project> | |||
| @ -0,0 +1,2 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | |||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" /> | |||
| @ -0,0 +1,4 @@ | |||
| // <autogenerated /> | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] | |||
| @ -0,0 +1,23 @@ | |||
| //------------------------------------------------------------------------------ | |||
| // <auto-generated> | |||
| // This code was generated by a tool. | |||
| // Runtime Version:4.0.30319.42000 | |||
| // | |||
| // Changes to this file may cause incorrect behavior and will be lost if | |||
| // the code is regenerated. | |||
| // </auto-generated> | |||
| //------------------------------------------------------------------------------ | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: System.Reflection.AssemblyCompanyAttribute("ACLib.P2.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. | |||
| @ -0,0 +1 @@ | |||
| ca093671d1b1f757d90bd4f6dab358b509ea054d | |||
| @ -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\ | |||
| @ -0,0 +1,8 @@ | |||
| // <auto-generated/> | |||
| global using global::System; | |||
| global using global::System.Collections.Generic; | |||
| global using global::System.IO; | |||
| global using global::System.Linq; | |||
| global using global::System.Net.Http; | |||
| global using global::System.Threading; | |||
| global using global::System.Threading.Tasks; | |||
| @ -0,0 +1 @@ | |||
| 19fcae2cd2fbfd92785d76c636b8a0720904259d | |||
| @ -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 | |||
| @ -0,0 +1,4 @@ | |||
| // <autogenerated /> | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] | |||
| @ -0,0 +1,23 @@ | |||
| //------------------------------------------------------------------------------ | |||
| // <auto-generated> | |||
| // This code was generated by a tool. | |||
| // Runtime Version:4.0.30319.42000 | |||
| // | |||
| // Changes to this file may cause incorrect behavior and will be lost if | |||
| // the code is regenerated. | |||
| // </auto-generated> | |||
| //------------------------------------------------------------------------------ | |||
| using System; | |||
| using System.Reflection; | |||
| [assembly: System.Reflection.AssemblyCompanyAttribute("ACLib.P2.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. | |||
| @ -0,0 +1 @@ | |||
| 50a3e3ba55af9ca25d1765dafdcc8d2fb2d48718 | |||
| @ -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\ | |||
| @ -0,0 +1,8 @@ | |||
| // <auto-generated/> | |||
| global using global::System; | |||
| global using global::System.Collections.Generic; | |||
| global using global::System.IO; | |||
| global using global::System.Linq; | |||
| global using global::System.Net.Http; | |||
| global using global::System.Threading; | |||
| global using global::System.Threading.Tasks; | |||
| @ -0,0 +1 @@ | |||
| 1932b9e012b503a1a91b71ff6be4017fce1d8a40 | |||
| @ -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 | |||
| @ -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" | |||
| } | |||
| } | |||
| } | |||
| } | |||
| @ -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": [] | |||
| } | |||