엑셀 읽기 작업 완료

This commit is contained in:
김판돌 2023-11-19 18:33:18 +09:00
parent bf6f27051e
commit 47cad5c7e3
15 changed files with 526 additions and 5 deletions

View File

@ -7,6 +7,10 @@ namespace Server.Git
public abstract class AbstractGit public abstract class AbstractGit
{ {
public bool isRestart; public bool isRestart;
string repositoryPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "excel");
public string _repositoryPath { get { return repositoryPath; } }
/// <summary> /// <summary>
/// 가장먼저 시작해야 하는 스크립트 /// 가장먼저 시작해야 하는 스크립트
/// </summary> /// </summary>
@ -32,7 +36,6 @@ namespace Server.Git
private void Pull() private void Pull()
{ {
string repositoryPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "excel");
if (!Directory.Exists(repositoryPath)) if (!Directory.Exists(repositoryPath))
{ {
Directory.CreateDirectory(repositoryPath); Directory.CreateDirectory(repositoryPath);

View File

@ -0,0 +1,63 @@
using Aspose.Cells;
namespace Server.Git
{
class ExcelManager
{
Dictionary<int, Dictionary<int, List<string>>> _dicViewer;
string _pathFile;
public ExcelManager(string path, string file)
{
_pathFile = path + "\\" + file;
Console.WriteLine(_pathFile);
_dicViewer = new Dictionary<int, Dictionary<int, List<string>>>();
}
public Dictionary<int, Dictionary<int, List<string>>> dicViewerOut
{
get { return _dicViewer; }
}
public void Play()
{
ExcelLoad(_pathFile);
}
public bool ExcelLoad(string path)//엑셀 로드
{
// 엑셀 파일 불러오기
Workbook wb = new Workbook(_pathFile);
// 모든 워크시트 가져오기
WorksheetCollection collection = wb.Worksheets;
// 모든 워크시트 반복
for (int worksheetIndex = 0; worksheetIndex < collection.Count; worksheetIndex++)
{
// 인덱스를 사용하여 워크시트 가져오기
Worksheet worksheet = collection[worksheetIndex];
// 워크시트 이름 인쇄
Console.WriteLine("Worksheet: " + worksheet.Name);
// 행과 열의 수 얻기
int rows = worksheet.Cells.MaxDataRow;
int cols = worksheet.Cells.MaxDataColumn;
// 행 반복
for (int i = 0; i < rows; i++)
{
// 선택한 행의 각 열 반복
for (int j = 0; j < cols; j++)
{
// 프링 셀 값
Console.Write(worksheet.Cells[i, j].Value + " | ");
}
// 줄바꿈 인쇄
Console.WriteLine(" ");
}
}
return true;
}
}
}

View File

@ -4,7 +4,22 @@
{ {
public override void ChangeScript() public override void ChangeScript()
{ {
Console.WriteLine("영차영차 작업됨"); //저장경로 : repositoryPath
//작업할것
//다운로드된 데이터 json화
//데이터 db에 업로드
//json화된 데이터 push
ExcelManager em = new ExcelManager(_repositoryPath, "TESTexl.xlsx");
em.Play();
Console.WriteLine("집에가고싶다아");
//db에 데이터를올리는것은 이곳에 작성할 예정
} }
} }
} }

View File

@ -7,6 +7,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Aspose.Cells" Version="23.11.0" />
<PackageReference Include="LibGit2Sharp" Version="0.28.0" /> <PackageReference Include="LibGit2Sharp" Version="0.28.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NLog" Version="5.2.5" /> <PackageReference Include="NLog" Version="5.2.5" />

View File

@ -1 +1 @@
8a3f59ad2a2c5f468fbf79e1d66b8b9279df41d9 d882a30783b347e0385e4792c4e197dd727824a4

View File

@ -123,3 +123,11 @@ E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\osx-x64\native\libgit2-e632535.
E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-arm64\native\git2-e632535.dll E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-arm64\native\git2-e632535.dll
E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x64\native\git2-e632535.dll E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x64\native\git2-e632535.dll
E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x86\native\git2-e632535.dll E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x86\native\git2-e632535.dll
E:\git\CsServer\Server\bin\Debug\net6.0\Aspose.Cells.dll
E:\git\CsServer\Server\bin\Debug\net6.0\SkiaSharp.dll
E:\git\CsServer\Server\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll
E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\osx\native\libSkiaSharp.dylib
E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-arm64\native\libSkiaSharp.dll
E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x64\native\libSkiaSharp.dll
E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x86\native\libSkiaSharp.dll
E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll

Binary file not shown.

Binary file not shown.

View File

@ -44,6 +44,10 @@
"net6.0": { "net6.0": {
"targetAlias": "net6.0", "targetAlias": "net6.0",
"dependencies": { "dependencies": {
"Aspose.Cells": {
"target": "Package",
"version": "[23.11.0, )"
},
"LibGit2Sharp": { "LibGit2Sharp": {
"target": "Package", "target": "Package",
"version": "[0.28.0, )" "version": "[0.28.0, )"

View File

@ -2,6 +2,24 @@
"version": 3, "version": 3,
"targets": { "targets": {
"net6.0": { "net6.0": {
"Aspose.Cells/23.11.0": {
"type": "package",
"dependencies": {
"SkiaSharp": "2.88.6",
"System.Security.Cryptography.Pkcs": "6.0.3",
"System.Text.Encoding.CodePages": "4.7.0"
},
"compile": {
"lib/net6.0/Aspose.Cells.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net6.0/Aspose.Cells.dll": {
"related": ".xml"
}
}
},
"LibGit2Sharp/0.28.0": { "LibGit2Sharp/0.28.0": {
"type": "package", "type": "package",
"dependencies": { "dependencies": {
@ -73,6 +91,15 @@
} }
} }
}, },
"Microsoft.NETCore.Platforms/3.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Newtonsoft.Json/13.0.3": { "Newtonsoft.Json/13.0.3": {
"type": "package", "type": "package",
"compile": { "compile": {
@ -98,10 +125,158 @@
"related": ".xml" "related": ".xml"
} }
} }
},
"SkiaSharp/2.88.6": {
"type": "package",
"dependencies": {
"SkiaSharp.NativeAssets.Win32": "2.88.6",
"SkiaSharp.NativeAssets.macOS": "2.88.6"
},
"compile": {
"lib/net6.0/SkiaSharp.dll": {
"related": ".pdb;.xml"
}
},
"runtime": {
"lib/net6.0/SkiaSharp.dll": {
"related": ".pdb;.xml"
}
}
},
"SkiaSharp.NativeAssets.macOS/2.88.6": {
"type": "package",
"compile": {
"lib/net6.0/_._": {}
},
"runtime": {
"lib/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/osx/native/libSkiaSharp.dylib": {
"assetType": "native",
"rid": "osx"
}
}
},
"SkiaSharp.NativeAssets.Win32/2.88.6": {
"type": "package",
"compile": {
"lib/net6.0/_._": {}
},
"runtime": {
"lib/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/win-arm64/native/libSkiaSharp.dll": {
"assetType": "native",
"rid": "win-arm64"
},
"runtimes/win-x64/native/libSkiaSharp.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x86/native/libSkiaSharp.dll": {
"assetType": "native",
"rid": "win-x86"
}
}
},
"System.Formats.Asn1/6.0.0": {
"type": "package",
"compile": {
"lib/net6.0/System.Formats.Asn1.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net6.0/System.Formats.Asn1.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"System.Security.Cryptography.Pkcs/6.0.3": {
"type": "package",
"dependencies": {
"System.Formats.Asn1": "6.0.0"
},
"compile": {
"lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Text.Encoding.CodePages/4.7.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.0"
},
"compile": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
"related": ".xml"
}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "win"
}
}
} }
} }
}, },
"libraries": { "libraries": {
"Aspose.Cells/23.11.0": {
"sha512": "iYwyXNrsBxtKTrNUndRnOp2gnqIMLRH/EvJqWQfV94poKfXoe0hLINTeptxa88Tnv432iuQOxUJAsjh1LTs7Dw==",
"type": "package",
"path": "aspose.cells/23.11.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Help/Aspose.Cells For .NET Documentation.chm",
"Help/Aspose.Cells.GridJs for .NETSTANDARD Documentation.chm",
"License/Aspose_End-User-License-Agreement.txt",
"License/thirdpartylicenses.Aspose.Cells.for.NET.pdf",
"aspose.cells.23.11.0.nupkg.sha512",
"aspose.cells.nuspec",
"images/aspose_cells-for-net.png",
"lib/net40-client/Aspose.Cells.dll",
"lib/net40-client/Aspose.Cells.xml",
"lib/net40/Aspose.Cells.dll",
"lib/net40/Aspose.Cells.xml",
"lib/net6.0-windows7.0/Aspose.Cells.dll",
"lib/net6.0-windows7.0/Aspose.Cells.xml",
"lib/net6.0/Aspose.Cells.dll",
"lib/net6.0/Aspose.Cells.xml",
"lib/net7.0-windows7.0/Aspose.Cells.dll",
"lib/net7.0-windows7.0/Aspose.Cells.xml",
"lib/net7.0/Aspose.Cells.dll",
"lib/net7.0/Aspose.Cells.xml",
"lib/netstandard2.0/Aspose.Cells.dll",
"lib/netstandard2.0/Aspose.Cells.xml"
]
},
"LibGit2Sharp/0.28.0": { "LibGit2Sharp/0.28.0": {
"sha512": "+VGXLAQovtTc41EkUXBKSuu40XcyuWUmQrslpd0CPMGkpnLTgQwoRLSSCRxLSPjYSi9SskyRUOLa9tjg/L108A==", "sha512": "+VGXLAQovtTc41EkUXBKSuu40XcyuWUmQrslpd0CPMGkpnLTgQwoRLSSCRxLSPjYSi9SskyRUOLa9tjg/L108A==",
"type": "package", "type": "package",
@ -150,6 +325,23 @@
"runtimes/win-x86/native/git2-e632535.dll" "runtimes/win-x86/native/git2-e632535.dll"
] ]
}, },
"Microsoft.NETCore.Platforms/3.1.0": {
"sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
"type": "package",
"path": "microsoft.netcore.platforms/3.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/netstandard1.0/_._",
"microsoft.netcore.platforms.3.1.0.nupkg.sha512",
"microsoft.netcore.platforms.nuspec",
"runtime.json",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"Newtonsoft.Json/13.0.3": { "Newtonsoft.Json/13.0.3": {
"sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
"type": "package", "type": "package",
@ -203,10 +395,233 @@
"nlog.5.2.5.nupkg.sha512", "nlog.5.2.5.nupkg.sha512",
"nlog.nuspec" "nlog.nuspec"
] ]
},
"SkiaSharp/2.88.6": {
"sha512": "wdfeBAQrEQCbJIRgAiargzP1Uy+0grZiG4CSgBnhAgcJTsPzlifIaO73JRdwIlT3TyBoeU9jEqzwFUhl4hTYnQ==",
"type": "package",
"path": "skiasharp/2.88.6",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.txt",
"THIRD-PARTY-NOTICES.txt",
"interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll",
"lib/monoandroid1.0/SkiaSharp.dll",
"lib/monoandroid1.0/SkiaSharp.pdb",
"lib/monoandroid1.0/SkiaSharp.xml",
"lib/net462/SkiaSharp.dll",
"lib/net462/SkiaSharp.pdb",
"lib/net462/SkiaSharp.xml",
"lib/net6.0-android30.0/SkiaSharp.dll",
"lib/net6.0-android30.0/SkiaSharp.pdb",
"lib/net6.0-android30.0/SkiaSharp.xml",
"lib/net6.0-ios13.6/SkiaSharp.dll",
"lib/net6.0-ios13.6/SkiaSharp.pdb",
"lib/net6.0-ios13.6/SkiaSharp.xml",
"lib/net6.0-maccatalyst13.5/SkiaSharp.dll",
"lib/net6.0-maccatalyst13.5/SkiaSharp.pdb",
"lib/net6.0-maccatalyst13.5/SkiaSharp.xml",
"lib/net6.0-macos10.15/SkiaSharp.dll",
"lib/net6.0-macos10.15/SkiaSharp.pdb",
"lib/net6.0-macos10.15/SkiaSharp.xml",
"lib/net6.0-tizen7.0/SkiaSharp.dll",
"lib/net6.0-tizen7.0/SkiaSharp.pdb",
"lib/net6.0-tizen7.0/SkiaSharp.xml",
"lib/net6.0-tvos13.4/SkiaSharp.dll",
"lib/net6.0-tvos13.4/SkiaSharp.pdb",
"lib/net6.0-tvos13.4/SkiaSharp.xml",
"lib/net6.0/SkiaSharp.dll",
"lib/net6.0/SkiaSharp.pdb",
"lib/net6.0/SkiaSharp.xml",
"lib/netcoreapp3.1/SkiaSharp.dll",
"lib/netcoreapp3.1/SkiaSharp.pdb",
"lib/netcoreapp3.1/SkiaSharp.xml",
"lib/netstandard1.3/SkiaSharp.dll",
"lib/netstandard1.3/SkiaSharp.pdb",
"lib/netstandard1.3/SkiaSharp.xml",
"lib/netstandard2.0/SkiaSharp.dll",
"lib/netstandard2.0/SkiaSharp.pdb",
"lib/netstandard2.0/SkiaSharp.xml",
"lib/netstandard2.1/SkiaSharp.dll",
"lib/netstandard2.1/SkiaSharp.pdb",
"lib/netstandard2.1/SkiaSharp.xml",
"lib/tizen40/SkiaSharp.dll",
"lib/tizen40/SkiaSharp.pdb",
"lib/tizen40/SkiaSharp.xml",
"lib/uap10.0.10240/SkiaSharp.dll",
"lib/uap10.0.10240/SkiaSharp.pdb",
"lib/uap10.0.10240/SkiaSharp.xml",
"lib/uap10.0.16299/SkiaSharp.dll",
"lib/uap10.0.16299/SkiaSharp.pdb",
"lib/uap10.0.16299/SkiaSharp.xml",
"lib/xamarinios1.0/SkiaSharp.dll",
"lib/xamarinios1.0/SkiaSharp.pdb",
"lib/xamarinios1.0/SkiaSharp.xml",
"lib/xamarinmac2.0/SkiaSharp.dll",
"lib/xamarinmac2.0/SkiaSharp.pdb",
"lib/xamarinmac2.0/SkiaSharp.xml",
"lib/xamarintvos1.0/SkiaSharp.dll",
"lib/xamarintvos1.0/SkiaSharp.pdb",
"lib/xamarintvos1.0/SkiaSharp.xml",
"lib/xamarinwatchos1.0/SkiaSharp.dll",
"lib/xamarinwatchos1.0/SkiaSharp.pdb",
"lib/xamarinwatchos1.0/SkiaSharp.xml",
"skiasharp.2.88.6.nupkg.sha512",
"skiasharp.nuspec"
]
},
"SkiaSharp.NativeAssets.macOS/2.88.6": {
"sha512": "Sko9LFxRXSjb3OGh5/RxrVRXxYo48tr5NKuuSy6jB85GrYt8WRqVY1iLOLwtjPiVAt4cp+pyD4i30azanS64dw==",
"type": "package",
"path": "skiasharp.nativeassets.macos/2.88.6",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.txt",
"THIRD-PARTY-NOTICES.txt",
"build/net462/SkiaSharp.NativeAssets.macOS.targets",
"build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets",
"build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets",
"buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets",
"buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets",
"buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets",
"lib/net462/_._",
"lib/net6.0-macos10.15/_._",
"lib/net6.0/_._",
"lib/netcoreapp3.1/_._",
"lib/netstandard1.3/_._",
"lib/xamarinmac2.0/_._",
"runtimes/osx/native/libSkiaSharp.dylib",
"skiasharp.nativeassets.macos.2.88.6.nupkg.sha512",
"skiasharp.nativeassets.macos.nuspec"
]
},
"SkiaSharp.NativeAssets.Win32/2.88.6": {
"sha512": "7TzFO0u/g2MpQsTty4fyCDdMcfcWI+aLswwfnYXr3gtNS6VLKdMXPMeKpJa3pJSLnUBN6wD0JjuCe8OoLBQ6cQ==",
"type": "package",
"path": "skiasharp.nativeassets.win32/2.88.6",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.txt",
"THIRD-PARTY-NOTICES.txt",
"build/net462/SkiaSharp.NativeAssets.Win32.targets",
"buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets",
"lib/net462/_._",
"lib/net6.0/_._",
"lib/netcoreapp3.1/_._",
"lib/netstandard1.3/_._",
"runtimes/win-arm64/native/libSkiaSharp.dll",
"runtimes/win-x64/native/libSkiaSharp.dll",
"runtimes/win-x86/native/libSkiaSharp.dll",
"skiasharp.nativeassets.win32.2.88.6.nupkg.sha512",
"skiasharp.nativeassets.win32.nuspec"
]
},
"System.Formats.Asn1/6.0.0": {
"sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
"type": "package",
"path": "system.formats.asn1/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.Formats.Asn1.dll",
"lib/net461/System.Formats.Asn1.xml",
"lib/net6.0/System.Formats.Asn1.dll",
"lib/net6.0/System.Formats.Asn1.xml",
"lib/netstandard2.0/System.Formats.Asn1.dll",
"lib/netstandard2.0/System.Formats.Asn1.xml",
"system.formats.asn1.6.0.0.nupkg.sha512",
"system.formats.asn1.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Security.Cryptography.Pkcs/6.0.3": {
"sha512": "18UT1BdZ4TYFBHk/wuq7JzCdE3X75z81X+C2rXqIlmEnC21Pm60spGV/dKQSzbyomstqYE33EuN5hfnC86VFxA==",
"type": "package",
"path": "system.security.cryptography.pkcs/6.0.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.Security.Cryptography.Pkcs.dll",
"lib/net461/System.Security.Cryptography.Pkcs.xml",
"lib/net6.0/System.Security.Cryptography.Pkcs.dll",
"lib/net6.0/System.Security.Cryptography.Pkcs.xml",
"lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
"lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
"lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
"lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
"lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
"lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
"runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
"runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
"runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
"runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
"runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
"runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
"runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
"system.security.cryptography.pkcs.6.0.3.nupkg.sha512",
"system.security.cryptography.pkcs.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Text.Encoding.CodePages/4.7.0": {
"sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
"type": "package",
"path": "system.text.encoding.codepages/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Text.Encoding.CodePages.dll",
"lib/net461/System.Text.Encoding.CodePages.dll",
"lib/net461/System.Text.Encoding.CodePages.xml",
"lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
"lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
"system.text.encoding.codepages.4.7.0.nupkg.sha512",
"system.text.encoding.codepages.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
} }
}, },
"projectFileDependencyGroups": { "projectFileDependencyGroups": {
"net6.0": [ "net6.0": [
"Aspose.Cells >= 23.11.0",
"LibGit2Sharp >= 0.28.0", "LibGit2Sharp >= 0.28.0",
"NLog >= 5.2.5", "NLog >= 5.2.5",
"Newtonsoft.Json >= 13.0.3" "Newtonsoft.Json >= 13.0.3"
@ -256,6 +671,10 @@
"net6.0": { "net6.0": {
"targetAlias": "net6.0", "targetAlias": "net6.0",
"dependencies": { "dependencies": {
"Aspose.Cells": {
"target": "Package",
"version": "[23.11.0, )"
},
"LibGit2Sharp": { "LibGit2Sharp": {
"target": "Package", "target": "Package",
"version": "[0.28.0, )" "version": "[0.28.0, )"

View File

@ -1,13 +1,21 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "x1DxGFfxuYrUX7QMwLpSQJQng7Fs820NfXla2dKNtpZrhdrifLxxFuaaV+JE0Cmi0GmNNXOIu1eed4pUxBBatg==", "dgSpecHash": "99RXt0NwS8q6F1wF/mcbT3nbDzb+Y98MRQt/+irrxH7z/JXUyGO93qBq4+P2ULoeTYxJIlW/A+rxMPCl3+EIeA==",
"success": true, "success": true,
"projectFilePath": "E:\\git\\CsServer\\Server\\Server.csproj", "projectFilePath": "E:\\git\\CsServer\\Server\\Server.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [
"C:\\Users\\acst0\\.nuget\\packages\\aspose.cells\\23.11.0\\aspose.cells.23.11.0.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\libgit2sharp\\0.28.0\\libgit2sharp.0.28.0.nupkg.sha512", "C:\\Users\\acst0\\.nuget\\packages\\libgit2sharp\\0.28.0\\libgit2sharp.0.28.0.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\libgit2sharp.nativebinaries\\2.0.320\\libgit2sharp.nativebinaries.2.0.320.nupkg.sha512", "C:\\Users\\acst0\\.nuget\\packages\\libgit2sharp.nativebinaries\\2.0.320\\libgit2sharp.nativebinaries.2.0.320.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", "C:\\Users\\acst0\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\nlog\\5.2.5\\nlog.5.2.5.nupkg.sha512" "C:\\Users\\acst0\\.nuget\\packages\\nlog\\5.2.5\\nlog.5.2.5.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\skiasharp\\2.88.6\\skiasharp.2.88.6.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.6\\skiasharp.nativeassets.macos.2.88.6.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.6\\skiasharp.nativeassets.win32.2.88.6.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.3\\system.security.cryptography.pkcs.6.0.3.nupkg.sha512",
"C:\\Users\\acst0\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512"
], ],
"logs": [] "logs": []
} }