diff --git a/Server/Git/AbstractGit.cs b/Server/Git/AbstractGit.cs
index 14d6a5e..f4fd135 100644
--- a/Server/Git/AbstractGit.cs
+++ b/Server/Git/AbstractGit.cs
@@ -7,6 +7,10 @@ namespace Server.Git
public abstract class AbstractGit
{
public bool isRestart;
+ string repositoryPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "excel");
+
+ public string _repositoryPath { get { return repositoryPath; } }
+
///
/// 가장먼저 시작해야 하는 스크립트
///
@@ -32,7 +36,6 @@ namespace Server.Git
private void Pull()
{
- string repositoryPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "excel");
if (!Directory.Exists(repositoryPath))
{
Directory.CreateDirectory(repositoryPath);
diff --git a/Server/Git/ExcelManager.cs b/Server/Git/ExcelManager.cs
new file mode 100644
index 0000000..0d4ba73
--- /dev/null
+++ b/Server/Git/ExcelManager.cs
@@ -0,0 +1,63 @@
+using Aspose.Cells;
+
+namespace Server.Git
+{
+ class ExcelManager
+ {
+ Dictionary>> _dicViewer;
+ string _pathFile;
+ public ExcelManager(string path, string file)
+ {
+ _pathFile = path + "\\" + file;
+ Console.WriteLine(_pathFile);
+ _dicViewer = new Dictionary>>();
+ }
+ public Dictionary>> 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;
+ }
+ }
+}
diff --git a/Server/Git/XlsxToJson.cs b/Server/Git/XlsxToJson.cs
index 5df81b3..96ccdb3 100644
--- a/Server/Git/XlsxToJson.cs
+++ b/Server/Git/XlsxToJson.cs
@@ -4,7 +4,22 @@
{
public override void ChangeScript()
{
- Console.WriteLine("영차영차 작업됨");
+ //저장경로 : repositoryPath
+ //작업할것
+ //다운로드된 데이터 json화
+ //데이터 db에 업로드
+ //json화된 데이터 push
+
+ ExcelManager em = new ExcelManager(_repositoryPath, "TESTexl.xlsx");
+ em.Play();
+
+ Console.WriteLine("집에가고싶다아");
+
+ //db에 데이터를올리는것은 이곳에 작성할 예정
+
+
+
+
}
}
}
diff --git a/Server/Server.csproj b/Server/Server.csproj
index d923044..06b4f92 100644
--- a/Server/Server.csproj
+++ b/Server/Server.csproj
@@ -7,6 +7,7 @@
+
diff --git a/Server/obj/Debug/net6.0/Server.assets.cache b/Server/obj/Debug/net6.0/Server.assets.cache
index 1a23437..c946a69 100644
Binary files a/Server/obj/Debug/net6.0/Server.assets.cache and b/Server/obj/Debug/net6.0/Server.assets.cache differ
diff --git a/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache b/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache
index de6e037..07583fc 100644
Binary files a/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache and b/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache differ
diff --git a/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache b/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache
index 808d0fe..1dfdffb 100644
--- a/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache
+++ b/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-8a3f59ad2a2c5f468fbf79e1d66b8b9279df41d9
+d882a30783b347e0385e4792c4e197dd727824a4
diff --git a/Server/obj/Debug/net6.0/Server.csproj.FileListAbsolute.txt b/Server/obj/Debug/net6.0/Server.csproj.FileListAbsolute.txt
index 877c31f..1bea4fc 100644
--- a/Server/obj/Debug/net6.0/Server.csproj.FileListAbsolute.txt
+++ b/Server/obj/Debug/net6.0/Server.csproj.FileListAbsolute.txt
@@ -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-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\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
diff --git a/Server/obj/Debug/net6.0/Server.dll b/Server/obj/Debug/net6.0/Server.dll
index 0042d50..0ede1f2 100644
Binary files a/Server/obj/Debug/net6.0/Server.dll and b/Server/obj/Debug/net6.0/Server.dll differ
diff --git a/Server/obj/Debug/net6.0/Server.pdb b/Server/obj/Debug/net6.0/Server.pdb
index 7e3f1f2..c9d8f19 100644
Binary files a/Server/obj/Debug/net6.0/Server.pdb and b/Server/obj/Debug/net6.0/Server.pdb differ
diff --git a/Server/obj/Debug/net6.0/ref/Server.dll b/Server/obj/Debug/net6.0/ref/Server.dll
index 8ebc248..38070ca 100644
Binary files a/Server/obj/Debug/net6.0/ref/Server.dll and b/Server/obj/Debug/net6.0/ref/Server.dll differ
diff --git a/Server/obj/Debug/net6.0/refint/Server.dll b/Server/obj/Debug/net6.0/refint/Server.dll
index 8ebc248..38070ca 100644
Binary files a/Server/obj/Debug/net6.0/refint/Server.dll and b/Server/obj/Debug/net6.0/refint/Server.dll differ
diff --git a/Server/obj/Server.csproj.nuget.dgspec.json b/Server/obj/Server.csproj.nuget.dgspec.json
index 11aae40..d4cbc18 100644
--- a/Server/obj/Server.csproj.nuget.dgspec.json
+++ b/Server/obj/Server.csproj.nuget.dgspec.json
@@ -44,6 +44,10 @@
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
+ "Aspose.Cells": {
+ "target": "Package",
+ "version": "[23.11.0, )"
+ },
"LibGit2Sharp": {
"target": "Package",
"version": "[0.28.0, )"
diff --git a/Server/obj/project.assets.json b/Server/obj/project.assets.json
index f70554b..7ed26d9 100644
--- a/Server/obj/project.assets.json
+++ b/Server/obj/project.assets.json
@@ -2,6 +2,24 @@
"version": 3,
"targets": {
"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": {
"type": "package",
"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": {
"type": "package",
"compile": {
@@ -98,10 +125,158 @@
"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": {
+ "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": {
"sha512": "+VGXLAQovtTc41EkUXBKSuu40XcyuWUmQrslpd0CPMGkpnLTgQwoRLSSCRxLSPjYSi9SskyRUOLa9tjg/L108A==",
"type": "package",
@@ -150,6 +325,23 @@
"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": {
"sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
"type": "package",
@@ -203,10 +395,233 @@
"nlog.5.2.5.nupkg.sha512",
"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": {
"net6.0": [
+ "Aspose.Cells >= 23.11.0",
"LibGit2Sharp >= 0.28.0",
"NLog >= 5.2.5",
"Newtonsoft.Json >= 13.0.3"
@@ -256,6 +671,10 @@
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
+ "Aspose.Cells": {
+ "target": "Package",
+ "version": "[23.11.0, )"
+ },
"LibGit2Sharp": {
"target": "Package",
"version": "[0.28.0, )"
diff --git a/Server/obj/project.nuget.cache b/Server/obj/project.nuget.cache
index ad1f756..8bde66e 100644
--- a/Server/obj/project.nuget.cache
+++ b/Server/obj/project.nuget.cache
@@ -1,13 +1,21 @@
{
"version": 2,
- "dgSpecHash": "x1DxGFfxuYrUX7QMwLpSQJQng7Fs820NfXla2dKNtpZrhdrifLxxFuaaV+JE0Cmi0GmNNXOIu1eed4pUxBBatg==",
+ "dgSpecHash": "99RXt0NwS8q6F1wF/mcbT3nbDzb+Y98MRQt/+irrxH7z/JXUyGO93qBq4+P2ULoeTYxJIlW/A+rxMPCl3+EIeA==",
"success": true,
"projectFilePath": "E:\\git\\CsServer\\Server\\Server.csproj",
"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.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\\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": []
}
\ No newline at end of file