| @ -0,0 +1,27 @@ | |||||
| <Project Sdk="Microsoft.NET.Sdk"> | |||||
| <PropertyGroup> | |||||
| <TargetFramework>net6.0</TargetFramework> | |||||
| <ImplicitUsings>enable</ImplicitUsings> | |||||
| <Nullable>enable</Nullable> | |||||
| </PropertyGroup> | |||||
| <ItemGroup> | |||||
| <PackageReference Include="Core.MSSQL.SqlHelper" Version="1.0.3" /> | |||||
| <PackageReference Include="EntityFramework" Version="6.4.4" /> | |||||
| <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" /> | |||||
| <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" /> | |||||
| <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" /> | |||||
| </ItemGroup> | |||||
| <ItemGroup> | |||||
| <ProjectReference Include="..\ACLib.P2.DbContext\ACLib.P2.AppContext.csproj" /> | |||||
| </ItemGroup> | |||||
| <ItemGroup> | |||||
| <Reference Include="DotNetNuke"> | |||||
| <HintPath>C:\website\dnndev.me\bin\DotNetNuke.dll</HintPath> | |||||
| </Reference> | |||||
| </ItemGroup> | |||||
| </Project> | |||||
| @ -0,0 +1,150 @@ | |||||
| using DotNetNuke.Data; | |||||
| using ACLib.P2.AppContext; | |||||
| using System.Data; | |||||
| using Microsoft.Data.SqlClient; | |||||
| using Microsoft.EntityFrameworkCore; | |||||
| using Microsoft.Extensions.Configuration; | |||||
| using Core.MSSQL.SqlHelper; | |||||
| using System.Collections.Generic; | |||||
| using System.Data.Common; | |||||
| namespace ACLib.P2.ACPI | |||||
| { | |||||
| public class StudentManagerP1 : IDataContext | |||||
| { | |||||
| private readonly DatabaseContext _context; | |||||
| public StudentManagerP1(DatabaseContext databaseContext) | |||||
| { | |||||
| _context = databaseContext; | |||||
| } | |||||
| private T MapDataToObjectOfType<T>(IDataReader reader) | |||||
| { | |||||
| // Implement your mapping logic here based on the reader's columns | |||||
| // For simplicity, you can use a data mapper library like AutoMapper if needed | |||||
| // Example: Map columns to properties of T | |||||
| var result = Activator.CreateInstance<T>(); | |||||
| // Assuming properties of T correspond to columns in the reader | |||||
| foreach (var property in typeof(T).GetProperties()) | |||||
| { | |||||
| if (!reader.IsDBNull(reader.GetOrdinal(property.Name))) | |||||
| { | |||||
| property.SetValue(result, reader[property.Name]); | |||||
| } | |||||
| } | |||||
| return result; | |||||
| } | |||||
| public void BeginTransaction() | |||||
| { | |||||
| throw new NotImplementedException(); | |||||
| } | |||||
| public void Commit() | |||||
| { | |||||
| throw new NotImplementedException(); | |||||
| } | |||||
| public DatabaseContext CreateDbContext() | |||||
| { | |||||
| return _context; | |||||
| } | |||||
| public void Dispose() | |||||
| { | |||||
| _context.Dispose(); | |||||
| } | |||||
| public void Execute(CommandType type, string sql, params object[] args) | |||||
| { | |||||
| throw new NotImplementedException(); | |||||
| } | |||||
| public IEnumerable<T> ExecuteQuery<T>(CommandType commandType, string commandText, params object[] parameters) | |||||
| { | |||||
| using (var connection = _context.Database.GetDbConnection()) | |||||
| { | |||||
| connection.Open(); | |||||
| // Create a command | |||||
| using (var command = connection.CreateCommand()) | |||||
| { | |||||
| command.CommandText = commandText; | |||||
| command.CommandType = commandType; | |||||
| if (parameters != null) | |||||
| { | |||||
| foreach (DbParameter parameter in parameters) | |||||
| { | |||||
| /* | |||||
| DbParameter param = command.CreateParameter(); | |||||
| param.ParameterName = parameter.ParameterName; | |||||
| param.Value = parameter.Value; | |||||
| */ | |||||
| command.Parameters.Add(parameter); | |||||
| } | |||||
| } | |||||
| // Execute the query | |||||
| using (var reader = command.ExecuteReader()) | |||||
| { | |||||
| while (reader.Read()) | |||||
| { | |||||
| // Map the data to objects of type T | |||||
| yield return MapDataToObjectOfType<T>(reader); | |||||
| } | |||||
| } | |||||
| } | |||||
| } | |||||
| } | |||||
| public T ExecuteScalar<T>(CommandType type, string sql, params object[] args) | |||||
| { | |||||
| throw new NotImplementedException(); | |||||
| } | |||||
| public T ExecuteSingleOrDefault<T>(CommandType type, string sql, params object[] args) | |||||
| { | |||||
| throw new NotImplementedException(); | |||||
| } | |||||
| public IRepository<T> GetRepository<T>() where T : class | |||||
| { | |||||
| throw new NotImplementedException(); | |||||
| } | |||||
| public void RollbackTransaction() | |||||
| { | |||||
| throw new NotImplementedException(); | |||||
| } | |||||
| public IDataReader ExecuteReader(CommandType commandType, string commandText, params SqlParameter[] parameters) | |||||
| { | |||||
| if (string.IsNullOrEmpty(commandText)) | |||||
| { | |||||
| throw new ArgumentException("Command text cannot be null or empty.", nameof(commandText)); | |||||
| } | |||||
| var database = _context.Database; | |||||
| var dbCommand = database.GetDbConnection().CreateCommand(); | |||||
| dbCommand.CommandType = commandType; | |||||
| dbCommand.CommandText = commandText; | |||||
| dbCommand.Parameters.AddRange(parameters); | |||||
| // Open the database connection | |||||
| if (database.GetDbConnection().State != ConnectionState.Open) | |||||
| { | |||||
| database.GetDbConnection().Open(); | |||||
| } | |||||
| // Execute the command and return the DataReader | |||||
| return dbCommand.ExecuteReader(CommandBehavior.CloseConnection); | |||||
| } | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,9 @@ | |||||
| { | |||||
| "runtimeOptions": { | |||||
| "tfm": "net6.0", | |||||
| "framework": { | |||||
| "name": "Microsoft.NETCore.App", | |||||
| "version": "6.0.0" | |||||
| } | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,12 @@ | |||||
| { | |||||
| "runtimeOptions": { | |||||
| "tfm": "net6.0", | |||||
| "framework": { | |||||
| "name": "Microsoft.NETCore.App", | |||||
| "version": "6.0.0" | |||||
| }, | |||||
| "configProperties": { | |||||
| "System.Reflection.Metadata.MetadataUpdater.IsSupported": false | |||||
| } | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,150 @@ | |||||
| { | |||||
| "format": 1, | |||||
| "restore": { | |||||
| "D:\\DNN\\DNN\\ACLib.P2\\ACLib.P2.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\\ACLib.P2.csproj": { | |||||
| "version": "1.0.0", | |||||
| "restore": { | |||||
| "projectUniqueName": "D:\\DNN\\DNN\\ACLib.P2\\ACLib.P2.csproj", | |||||
| "projectName": "ACLib.P2", | |||||
| "projectPath": "D:\\DNN\\DNN\\ACLib.P2\\ACLib.P2.csproj", | |||||
| "packagesPath": "C:\\Users\\lhluk\\.nuget\\packages\\", | |||||
| "outputPath": "D:\\DNN\\DNN\\ACLib.P2\\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", | |||||
| "dependencies": { | |||||
| "Core.MSSQL.SqlHelper": { | |||||
| "target": "Package", | |||||
| "version": "[1.0.3, )" | |||||
| }, | |||||
| "EntityFramework": { | |||||
| "target": "Package", | |||||
| "version": "[6.4.4, )" | |||||
| }, | |||||
| "Microsoft.EntityFrameworkCore": { | |||||
| "target": "Package", | |||||
| "version": "[6.0.0, )" | |||||
| }, | |||||
| "Microsoft.EntityFrameworkCore.SqlServer": { | |||||
| "target": "Package", | |||||
| "version": "[6.0.0, )" | |||||
| }, | |||||
| "Microsoft.Extensions.Configuration": { | |||||
| "target": "Package", | |||||
| "version": "[7.0.0, )" | |||||
| } | |||||
| }, | |||||
| "imports": [ | |||||
| "net461", | |||||
| "net462", | |||||
| "net47", | |||||
| "net471", | |||||
| "net472", | |||||
| "net48", | |||||
| "net481" | |||||
| ], | |||||
| "assetTargetFallback": true, | |||||
| "warn": true, | |||||
| "frameworkReferences": { | |||||
| "Microsoft.NETCore.App": { | |||||
| "privateAssets": "all" | |||||
| } | |||||
| }, | |||||
| "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" | |||||
| } | |||||
| } | |||||
| } | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,21 @@ | |||||
| <?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> | |||||
| <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||||
| <Import Project="$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.props" Condition="Exists('$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.props')" /> | |||||
| </ImportGroup> | |||||
| <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||||
| <PkgEntityFramework Condition=" '$(PkgEntityFramework)' == '' ">C:\Users\lhluk\.nuget\packages\entityframework\6.4.4</PkgEntityFramework> | |||||
| </PropertyGroup> | |||||
| </Project> | |||||
| @ -0,0 +1,6 @@ | |||||
| <?xml version="1.0" encoding="utf-8" standalone="no"?> | |||||
| <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
| <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |||||
| <Import Project="$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.targets" Condition="Exists('$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.targets')" /> | |||||
| </ImportGroup> | |||||
| </Project> | |||||
| @ -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")] | |||||
| [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")] | |||||
| [assembly: System.Reflection.AssemblyTitleAttribute("ACLib.P2")] | |||||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | |||||
| // Generated by the MSBuild WriteCodeFragment class. | |||||
| @ -0,0 +1 @@ | |||||
| 5844c26f9bc8c0e5c0f5039cbe2f3ef30bf5ba0e | |||||
| @ -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 | |||||
| build_property.ProjectDir = d:\DNN\DNN\ACLib.P2\ | |||||
| @ -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 @@ | |||||
| 67d73d8eff310cba39f2fae578c84a3e95ece214 | |||||
| @ -0,0 +1,78 @@ | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.deps.json | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.runtimeconfig.json | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.pdb | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.AppContext.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.WebControls.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.Instrumentation.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\CountryListBox.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.WebUtility.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\SharpZipLib.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Telerik.Web.UI.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Newtonsoft.Json.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.Web.Client.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.Services.Syndication.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Lucene.Net.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Lucene.Net.Contrib.FastVectorHighlighter.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\PetaPoco.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\SchwabenCode.QuickIO.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\System.Web.WebPages.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Microsoft.ApplicationBlocks.Data.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\dotnetnuke.log4net.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Microsoft.AnalysisServices.AdomdClient.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ClientDependency.Core.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Microsoft.Web.Infrastructure.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\System.Web.Razor.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\System.Web.WebPages.Deployment.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.AppContext.pdb | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.csproj.AssemblyReference.cache | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.GeneratedMSBuildEditorConfig.editorconfig | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.AssemblyInfoInputs.cache | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.AssemblyInfo.cs | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.csproj.CoreCompileInputs.cache | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.csproj.CopyComplete | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\refint\ACLib.P2.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.pdb | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.genruntimeconfig.cache | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ref\ACLib.P2.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.deps.json | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.runtimeconfig.json | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.pdb | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.AppContext.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.WebControls.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.Instrumentation.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\CountryListBox.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.WebUtility.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\SharpZipLib.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Telerik.Web.UI.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Newtonsoft.Json.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.Web.Client.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\DotNetNuke.Services.Syndication.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Lucene.Net.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Lucene.Net.Contrib.FastVectorHighlighter.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\PetaPoco.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\SchwabenCode.QuickIO.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\System.Web.WebPages.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Microsoft.ApplicationBlocks.Data.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\dotnetnuke.log4net.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Microsoft.AnalysisServices.AdomdClient.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ClientDependency.Core.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\Microsoft.Web.Infrastructure.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\System.Web.Razor.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\System.Web.WebPages.Deployment.dll | |||||
| D:\DNN\DNN\ACLib.P2\bin\Debug\net6.0\ACLib.P2.AppContext.pdb | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.csproj.AssemblyReference.cache | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.GeneratedMSBuildEditorConfig.editorconfig | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.AssemblyInfoInputs.cache | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.AssemblyInfo.cs | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.csproj.CoreCompileInputs.cache | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.csproj.CopyComplete | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.dll | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\refint\ACLib.P2.dll | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.pdb | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ACLib.P2.genruntimeconfig.cache | |||||
| D:\DNN\DNN\ACLib.P2\obj\Debug\net6.0\ref\ACLib.P2.dll | |||||
| @ -0,0 +1 @@ | |||||
| f92d1ef6d941e879ba8c83cb71de2a3d2def6fc2 | |||||
| @ -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")] | |||||
| [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")] | |||||
| [assembly: System.Reflection.AssemblyTitleAttribute("ACLib.P2")] | |||||
| [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | |||||
| // Generated by the MSBuild WriteCodeFragment class. | |||||
| @ -0,0 +1 @@ | |||||
| 18b8d288e0a5f40de05820f997f926921b04f516 | |||||
| @ -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 | |||||
| build_property.ProjectDir = C:\Projects\git-clone\DNN\DNN\ACLib.P2\ | |||||
| @ -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 @@ | |||||
| 61e085a32fb2b9d0051f2da37157f66fbcd913c3 | |||||
| @ -0,0 +1,39 @@ | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\ACLib.P2.deps.json | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\ACLib.P2.runtimeconfig.json | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\ACLib.P2.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\ACLib.P2.pdb | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\ACLib.P2.AppContext.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\DotNetNuke.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\DotNetNuke.WebControls.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\DotNetNuke.Instrumentation.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\CountryListBox.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\DotNetNuke.WebUtility.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\SharpZipLib.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\Telerik.Web.UI.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\Newtonsoft.Json.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\DotNetNuke.Web.Client.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\DotNetNuke.Services.Syndication.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\Lucene.Net.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\Lucene.Net.Contrib.FastVectorHighlighter.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\PetaPoco.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\SchwabenCode.QuickIO.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\System.Web.WebPages.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\Microsoft.ApplicationBlocks.Data.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\dotnetnuke.log4net.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\Microsoft.AnalysisServices.AdomdClient.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\ClientDependency.Core.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\Microsoft.Web.Infrastructure.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\System.Web.Razor.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\System.Web.WebPages.Deployment.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\bin\Release\net6.0\ACLib.P2.AppContext.pdb | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ACLib.P2.csproj.AssemblyReference.cache | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ACLib.P2.GeneratedMSBuildEditorConfig.editorconfig | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ACLib.P2.AssemblyInfoInputs.cache | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ACLib.P2.AssemblyInfo.cs | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ACLib.P2.csproj.CoreCompileInputs.cache | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ACLib.P2.csproj.CopyComplete | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ACLib.P2.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\refint\ACLib.P2.dll | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ACLib.P2.pdb | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ACLib.P2.genruntimeconfig.cache | |||||
| C:\Projects\git-clone\DNN\DNN\ACLib.P2\obj\Release\net6.0\ref\ACLib.P2.dll | |||||
| @ -0,0 +1 @@ | |||||
| 8a97f9dce25f82360fac29220155c50576161131 | |||||
| @ -0,0 +1,59 @@ | |||||
| { | |||||
| "version": 2, | |||||
| "dgSpecHash": "4AdBx/XGqRgwabiEj2srjWx55wATnYMVag6JRZZhU7n5qbHvl/Sl6njSq6ybp6ObajqCTn24vBHH4/Iuc6Hg5Q==", | |||||
| "success": true, | |||||
| "projectFilePath": "D:\\DNN\\DNN\\ACLib.P2\\ACLib.P2.csproj", | |||||
| "expectedPackageFiles": [ | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\core.mssql.sqlhelper\\1.0.3\\core.mssql.sqlhelper.1.0.3.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\entityframework\\6.4.4\\entityframework.6.4.4.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.4\\microsoft.data.sqlclient.2.1.4.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", | |||||
| "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.entityframeworkcore.relational\\6.0.0\\microsoft.entityframeworkcore.relational.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\6.0.0\\microsoft.entityframeworkcore.sqlserver.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.configuration\\7.0.0\\microsoft.extensions.configuration.7.0.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.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\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.codedom\\4.7.0\\system.codedom.4.7.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.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.data.sqlclient\\4.8.1\\system.data.sqlclient.4.8.1.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.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", | |||||
| "C:\\Users\\lhluk\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512" | |||||
| ], | |||||
| "logs": [] | |||||
| } | |||||