Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
d73405c0
Commit
d73405c0
authored
Jan 12, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增引用
parent
0017b5e7
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
837 additions
and
532 deletions
+837
-532
Config.cs
Edu.Common/Config.cs
+1
-4
XlsQuestionHelper.cs
Edu.Common/Data/XlsQuestionHelper.cs
+12
-0
Edu.Common.csproj
Edu.Common/Edu.Common.csproj
+1
-21
AsposeWordHelper.cs
Edu.Common/Plugin/AsposeWordHelper.cs
+39
-0
Edu.Common.deps.json
Edu.Common/bin/Debug/netcoreapp3.0/Edu.Common.deps.json
+310
-250
Edu.Common.deps.json
Edu.Common/bin/Release/netcoreapp3.0/Edu.Common.deps.json
+310
-250
Edu.Model.deps.json
Edu.Model/bin/Release/netcoreapp3.0/Edu.Model.deps.json
+67
-0
Edu.Repository.deps.json
...sitory/bin/Release/netcoreapp3.0/Edu.Repository.deps.json
+67
-0
QuestionController.cs
Edu.WebApi/Controllers/Course/QuestionController.cs
+14
-0
UploadController.cs
Edu.WebApi/Controllers/Upload/UploadController.cs
+15
-7
Edu.WebApi.csproj
Edu.WebApi/Edu.WebApi.csproj
+1
-0
No files found.
Edu.Common/Config.cs
View file @
d73405c0
using
Aspose.Words.Lists
;
using
Microsoft.Extensions.Configuration
;
using
Microsoft.Extensions.Configuration
;
using
Microsoft.Extensions.Configuration.Json
;
using
NPOI.OpenXmlFormats
;
using
System
;
using
System.Collections.Generic
;
using
System.IO
;
using
System.Text.RegularExpressions
;
...
...
Edu.Common/Data/XlsQuestionHelper.cs
View file @
d73405c0
...
...
@@ -103,6 +103,18 @@ namespace Edu.Common.Data
}
return
model
;
}
/// <summary>
/// 获取Word数据
/// </summary>
/// <param name="filePath"></param>
/// <returns></returns>
public
static
object
GetWordQuestionData
(
string
filePath
)
{
var
questionList
=
Common
.
Plugin
.
AsposeWordHelper
.
GetWordData
(
filePath
);
return
questionList
;
}
}
/// <summary>
...
...
Edu.Common/Edu.Common.csproj
View file @
d73405c0
...
...
@@ -5,6 +5,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspose.Words" Version="21.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Formatters.Json" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.8" />
...
...
@@ -13,25 +14,4 @@
<PackageReference Include="NPOI" Version="2.5.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="Aspose.Pdf">
<HintPath>..\lib\Aspose.Pdf.dll</HintPath>
</Reference>
<Reference Include="Aspose.Words">
<HintPath>..\lib\Aspose.Words.dll</HintPath>
</Reference>
<Reference Include="Spire.License">
<HintPath>..\lib\Spire.License.dll</HintPath>
</Reference>
<Reference Include="Spire.Pdf">
<HintPath>..\lib\Spire.Pdf.dll</HintPath>
</Reference>
<Reference Include="Spire.Presentation">
<HintPath>..\lib\Spire.Presentation.dll</HintPath>
</Reference>
<Reference Include="Spire.XLS">
<HintPath>..\lib\Spire.XLS.dll</HintPath>
</Reference>
</ItemGroup>
</Project>
Edu.Common/Plugin/AsposeWordHelper.cs
0 → 100644
View file @
d73405c0
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
System.Text.RegularExpressions
;
namespace
Edu.Common.Plugin
{
/// <summary>
/// AsposeWord帮助类
/// </summary>
public
class
AsposeWordHelper
{
/// <summary>
/// 获取Word内容
/// </summary>
/// <param name="fileName"></param>
/// <returns></returns>
public
static
List
<
string
>
GetWordData
(
string
fileName
)
{
Aspose
.
Words
.
Document
doc
=
new
Aspose
.
Words
.
Document
(
fileName
);
List
<
string
>
list
=
new
List
<
string
>();
if
(
doc
.
FirstSection
.
Body
.
Paragraphs
.
Count
>
0
)
{
//word中的所有段落
foreach
(
var
item
in
doc
.
FirstSection
.
Body
.
Paragraphs
)
{
string
text
=
Regex
.
Replace
(
item
.
GetText
(),
"\r"
,
""
);
text
=
text
.
Replace
(
"\f"
,
""
);
text
=
text
.
Replace
(
"Evaluation Only. Created with Aspose.Words. Copyright 2003-2021 Aspose Pty Ltd."
,
""
);
if
(!
string
.
IsNullOrEmpty
(
text
))
{
list
.
Add
(
text
);
}
}
}
return
list
;
}
}
}
Edu.Common/bin/Debug/netcoreapp3.0/Edu.Common.deps.json
View file @
d73405c0
...
...
@@ -8,23 +8,37 @@
".NETCoreApp,Version=v3.0"
:
{
"Edu.Common/1.0.0"
:
{
"dependencies"
:
{
"Aspose.Words"
:
"21.1.0"
,
"Microsoft.AspNetCore.Http"
:
"2.2.2"
,
"Microsoft.AspNetCore.Mvc.Formatters.Json"
:
"2.2.0"
,
"Microsoft.Extensions.Configuration"
:
"3.1.8"
,
"Microsoft.Extensions.Configuration.Json"
:
"3.1.8"
,
"NPOI"
:
"2.5.1"
,
"Newtonsoft.Json"
:
"12.0.3"
,
"Aspose.Pdf"
:
"8.6.0.0"
,
"Aspose.Words"
:
"17.7.0.0"
,
"Spire.License"
:
"1.3.6.40"
,
"Spire.Pdf"
:
"3.9.130.14040"
,
"Spire.Presentation"
:
"2.8.13.14040"
,
"Spire.XLS"
:
"7.12.23.14040"
"Newtonsoft.Json"
:
"12.0.3"
},
"runtime"
:
{
"Edu.Common.dll"
:
{}
}
},
"Aspose.Words/21.1.0"
:
{
"dependencies"
:
{
"Microsoft.Win32.Registry"
:
"4.7.0"
,
"SkiaSharp"
:
"2.80.1"
,
"System.Reflection.Emit"
:
"4.3.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.3.0"
,
"System.Text.Encoding.CodePages"
:
"4.5.0"
},
"runtime"
:
{
"lib/netstandard2.0/Aspose.Words.Pdf2Word.dll"
:
{
"assemblyVersion"
:
"21.1.0.0"
,
"fileVersion"
:
"21.1.0.0"
},
"lib/netstandard2.0/Aspose.Words.dll"
:
{
"assemblyVersion"
:
"21.1.0.0"
,
"fileVersion"
:
"21.1.0.0"
}
}
},
"Microsoft.AspNetCore.Authentication.Abstractions/2.2.0"
:
{
"dependencies"
:
{
"Microsoft.AspNetCore.Http.Abstractions"
:
"2.2.0"
,
...
...
@@ -267,7 +281,7 @@
"dependencies"
:
{
"System.AppContext"
:
"4.1.0"
,
"System.Collections"
:
"4.0.11"
,
"System.IO"
:
"4.
1
.0"
,
"System.IO"
:
"4.
3
.0"
,
"System.IO.FileSystem"
:
"4.0.1"
,
"System.Reflection.TypeExtensions"
:
"4.1.0"
,
"System.Runtime.Extensions"
:
"4.1.0"
,
...
...
@@ -439,7 +453,7 @@
},
"Microsoft.Extensions.Primitives/3.1.8"
:
{
"dependencies"
:
{
"System.Memory"
:
"4.5.
2
"
,
"System.Memory"
:
"4.5.
3
"
,
"System.Runtime.CompilerServices.Unsafe"
:
"4.7.1"
},
"runtime"
:
{
...
...
@@ -461,11 +475,37 @@
}
}
},
"Microsoft.NETCore.Platforms/2.0.0"
:
{},
"Microsoft.NETCore.Targets/1.0.1"
:
{},
"Microsoft.NETCore.Platforms/3.1.0"
:
{},
"Microsoft.NETCore.Targets/1.1.0"
:
{},
"Microsoft.Win32.Registry/4.7.0"
:
{
"dependencies"
:
{
"System.Security.AccessControl"
:
"4.7.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
},
"runtime"
:
{
"lib/netstandard2.0/Microsoft.Win32.Registry.dll"
:
{
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
},
"runtimeTargets"
:
{
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll"
:
{
"rid"
:
"unix"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
},
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll"
:
{
"rid"
:
"win"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
}
},
"Microsoft.Win32.SystemEvents/4.5.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
},
"runtime"
:
{
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll"
:
{
...
...
@@ -526,8 +566,8 @@
},
"runtime.native.System/4.0.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
}
},
"SharpZipLib/1.2.0"
:
{
...
...
@@ -538,17 +578,50 @@
}
}
},
"SkiaSharp/2.80.1"
:
{
"dependencies"
:
{
"System.Memory"
:
"4.5.3"
},
"runtime"
:
{
"lib/netstandard2.0/SkiaSharp.dll"
:
{
"assemblyVersion"
:
"2.80.0.0"
,
"fileVersion"
:
"2.80.1.0"
}
},
"runtimeTargets"
:
{
"runtimes/osx/native/libSkiaSharp.dylib"
:
{
"rid"
:
"osx"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-arm64/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-arm64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-x64/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-x64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-x86/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-x86"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
}
}
},
"System.AppContext/4.1.0"
:
{
"dependencies"
:
{
"System.Runtime"
:
"4.
1
.0"
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Buffers/4.5.0"
:
{},
"System.Collections/4.0.11"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.ComponentModel.Annotations/4.5.0"
:
{},
...
...
@@ -566,15 +639,15 @@
},
"System.Diagnostics.Debug/4.0.11"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Diagnostics.DiagnosticSource/4.5.0"
:
{},
"System.Drawing.Common/4.5.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.Win32.SystemEvents"
:
"4.5.0"
},
"runtime"
:
{
...
...
@@ -606,48 +679,48 @@
"System.Linq"
:
"4.1.0"
,
"System.Linq.Expressions"
:
"4.1.0"
,
"System.ObjectModel"
:
"4.0.12"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Emit"
:
"4.
0.1
"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
0.1
"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Emit"
:
"4.
3.0
"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
3.0
"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Reflection.TypeExtensions"
:
"4.1.0"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Extensions"
:
"4.1.0"
,
"System.Threading"
:
"4.0.11"
}
},
"System.Globalization/4.0.11"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.IO/4.
1
.0"
:
{
"System.IO/4.
3
.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Text.Encoding"
:
"4.
0.11
"
,
"System.Threading.Tasks"
:
"4.
0.11
"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Text.Encoding"
:
"4.
3.0
"
,
"System.Threading.Tasks"
:
"4.
3.0
"
}
},
"System.IO.FileSystem/4.0.1"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.IO"
:
"4.
1
.0"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.IO"
:
"4.
3
.0"
,
"System.IO.FileSystem.Primitives"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Handles"
:
"4.0.1"
,
"System.Text.Encoding"
:
"4.
0.11
"
,
"System.Threading.Tasks"
:
"4.
0.11
"
"System.Text.Encoding"
:
"4.
3.0
"
,
"System.Threading.Tasks"
:
"4.
3.0
"
}
},
"System.IO.FileSystem.Primitives/4.0.1"
:
{
"dependencies"
:
{
"System.Runtime"
:
"4.
1
.0"
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Linq/4.1.0"
:
{
...
...
@@ -655,7 +728,7 @@
"System.Collections"
:
"4.0.11"
,
"System.Diagnostics.Debug"
:
"4.0.11"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Extensions"
:
"4.1.0"
}
},
...
...
@@ -664,99 +737,99 @@
"System.Collections"
:
"4.0.11"
,
"System.Diagnostics.Debug"
:
"4.0.11"
,
"System.Globalization"
:
"4.0.11"
,
"System.IO"
:
"4.
1
.0"
,
"System.IO"
:
"4.
3
.0"
,
"System.Linq"
:
"4.1.0"
,
"System.ObjectModel"
:
"4.0.12"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Emit"
:
"4.
0.1
"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
0.1
"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Emit"
:
"4.
3.0
"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
3.0
"
,
"System.Reflection.Emit.Lightweight"
:
"4.0.1"
,
"System.Reflection.Extensions"
:
"4.0.1"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Reflection.TypeExtensions"
:
"4.1.0"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Extensions"
:
"4.1.0"
,
"System.Threading"
:
"4.0.11"
}
},
"System.Memory/4.5.
2
"
:
{},
"System.Memory/4.5.
3
"
:
{},
"System.ObjectModel/4.0.12"
:
{
"dependencies"
:
{
"System.Collections"
:
"4.0.11"
,
"System.Diagnostics.Debug"
:
"4.0.11"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Threading"
:
"4.0.11"
}
},
"System.Reflection/4.
1
.0"
:
{
"System.Reflection/4.
3
.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.IO"
:
"4.
1
.0"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.IO"
:
"4.
3
.0"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Emit/4.
0.1
"
:
{
"System.Reflection.Emit/4.
3.0
"
:
{
"dependencies"
:
{
"System.IO"
:
"4.
1
.0"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
0.1
"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"System.IO"
:
"4.
3
.0"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
3.0
"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Emit.ILGeneration/4.
0.1
"
:
{
"System.Reflection.Emit.ILGeneration/4.
3.0
"
:
{
"dependencies"
:
{
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Emit.Lightweight/4.0.1"
:
{
"dependencies"
:
{
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
0.1
"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
3.0
"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Extensions/4.0.1"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Primitives/4.
0.1
"
:
{
"System.Reflection.Primitives/4.
3.0
"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.TypeExtensions/4.1.0"
:
{
"dependencies"
:
{
"System.Reflection"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
1
.0"
"System.Reflection"
:
"4.
3
.0"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Resources.ResourceManager/4.0.1"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Globalization"
:
"4.0.11"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
1
.0"
"System.Reflection"
:
"4.
3
.0"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Runtime/4.
1
.0"
:
{
"System.Runtime/4.
3
.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
}
},
"System.Runtime.CompilerServices.Unsafe/4.7.1"
:
{
...
...
@@ -769,43 +842,57 @@
},
"System.Runtime.Extensions/4.1.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Runtime.Handles/4.0.1"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Runtime.InteropServices/4.1.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Handles"
:
"4.0.1"
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"System.Reflection"
:
"4.
1
.0"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.InteropServices"
:
"4.1.0"
,
"System.Threading"
:
"4.0.11"
,
"runtime.native.System"
:
"4.0.0"
}
},
"System.Security.AccessControl/4.
5
.0"
:
{
"System.Security.AccessControl/4.
7
.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"2.0.0"
,
"System.Security.Principal.Windows"
:
"4.5.0"
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
},
"runtime"
:
{
"lib/netstandard2.0/System.Security.AccessControl.dll"
:
{
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
},
"runtimeTargets"
:
{
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll"
:
{
"rid"
:
"win"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
}
},
"System.Security.Cryptography.ProtectedData/4.5.0"
:
{
...
...
@@ -826,7 +913,7 @@
},
"System.Security.Permissions/4.5.0"
:
{
"dependencies"
:
{
"System.Security.AccessControl"
:
"4.
5
.0"
"System.Security.AccessControl"
:
"4.
7
.0"
},
"runtime"
:
{
"lib/netstandard2.0/System.Security.Permissions.dll"
:
{
...
...
@@ -835,16 +922,39 @@
}
}
},
"System.Security.Principal.Windows/4.5.0"
:
{
"System.Security.Principal.Windows/4.7.0"
:
{
"runtime"
:
{
"lib/netstandard2.0/System.Security.Principal.Windows.dll"
:
{
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
},
"runtimeTargets"
:
{
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll"
:
{
"rid"
:
"unix"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
},
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll"
:
{
"rid"
:
"win"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
}
},
"System.Text.Encoding/4.3.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"2.0.0"
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"Microsoft.NETCore.Targets"
:
"1.1.0"
,
"System.Runtime"
:
"4.3.0"
}
},
"System.Text.Encoding
/4.0.11
"
:
{
"System.Text.Encoding
.CodePages/4.5.0
"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"2.0.0"
,
"Microsoft.NETCore.Targets"
:
"1.0.1"
,
"System.Runtime"
:
"4.1.0"
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"System.Runtime.CompilerServices.Unsafe"
:
"4.7.1"
}
},
"System.Text.Encodings.Web/4.7.1"
:
{
...
...
@@ -869,66 +979,18 @@
},
"System.Threading/4.0.11"
:
{
"dependencies"
:
{
"System.Runtime"
:
"4.
1
.0"
,
"System.Threading.Tasks"
:
"4.
0.11
"
"System.Runtime"
:
"4.
3
.0"
,
"System.Threading.Tasks"
:
"4.
3.0
"
}
},
"System.Threading.Tasks/4.
0.11
"
:
{
"System.Threading.Tasks/4.
3.0
"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"2.0.0"
,
"Microsoft.NETCore.Targets"
:
"1.0.1"
,
"System.Runtime"
:
"4.1.0"
}
},
"System.Threading.Tasks.Extensions/4.5.4"
:
{},
"Aspose.Pdf/8.6.0.0"
:
{
"runtime"
:
{
"Aspose.Pdf.dll"
:
{
"assemblyVersion"
:
"8.6.0.0"
,
"fileVersion"
:
"8.6.0.0"
}
}
},
"Aspose.Words/17.7.0.0"
:
{
"runtime"
:
{
"Aspose.Words.dll"
:
{
"assemblyVersion"
:
"17.7.0.0"
,
"fileVersion"
:
"17.7.0.0"
}
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"Microsoft.NETCore.Targets"
:
"1.1.0"
,
"System.Runtime"
:
"4.3.0"
}
},
"Spire.License/1.3.6.40"
:
{
"runtime"
:
{
"Spire.License.dll"
:
{
"assemblyVersion"
:
"1.3.6.40"
,
"fileVersion"
:
"1.3.6.40"
}
}
},
"Spire.Pdf/3.9.130.14040"
:
{
"runtime"
:
{
"Spire.Pdf.dll"
:
{
"assemblyVersion"
:
"3.9.130.14040"
,
"fileVersion"
:
"3.9.130.14040"
}
}
},
"Spire.Presentation/2.8.13.14040"
:
{
"runtime"
:
{
"Spire.Presentation.dll"
:
{
"assemblyVersion"
:
"2.8.13.14040"
,
"fileVersion"
:
"2.8.13.14040"
}
}
},
"Spire.XLS/7.12.23.14040"
:
{
"runtime"
:
{
"Spire.XLS.dll"
:
{
"assemblyVersion"
:
"7.12.23.14040"
,
"fileVersion"
:
"7.12.23.14040"
}
}
}
"System.Threading.Tasks.Extensions/4.5.4"
:
{}
}
},
"libraries"
:
{
...
...
@@ -937,6 +999,13 @@
"serviceable"
:
false
,
"sha512"
:
""
},
"Aspose.Words/21.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-BM2BJz3b8uvN6KzVNSwwrtt0SXQcmzRZ0Cbq6lLOgzCS1fCpS3ieQt2TfeEw3OtvZpNVEWLuJGo1YqQJpMh9Dw=="
,
"path"
:
"aspose.words/21.1.0"
,
"hashPath"
:
"aspose.words.21.1.0.nupkg.sha512"
},
"Microsoft.AspNetCore.Authentication.Abstractions/2.2.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
...
...
@@ -1189,19 +1258,26 @@
"path"
:
"microsoft.net.http.headers/2.2.0"
,
"hashPath"
:
"microsoft.net.http.headers.2.2.0.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/
2.0
.0"
:
{
"Microsoft.NETCore.Platforms/
3.1
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ
=="
,
"path"
:
"microsoft.netcore.platforms/
2.0
.0"
,
"hashPath"
:
"microsoft.netcore.platforms.
2.0
.0.nupkg.sha512"
"sha512"
:
"sha512-
z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w
=="
,
"path"
:
"microsoft.netcore.platforms/
3.1
.0"
,
"hashPath"
:
"microsoft.netcore.platforms.
3.1
.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.
0.1
"
:
{
"Microsoft.NETCore.Targets/1.
1.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw=="
,
"path"
:
"microsoft.netcore.targets/1.0.1"
,
"hashPath"
:
"microsoft.netcore.targets.1.0.1.nupkg.sha512"
"sha512"
:
"sha512-jtuKp4+ddUpehBOlmQJNWek/tXwXLeDAGtkkrHS1Qi6nOPmaLCuvDKFaqBu2c4DGKci+JMDUk4R+6jQ8P8l1aw=="
,
"path"
:
"microsoft.netcore.targets/1.1.0"
,
"hashPath"
:
"microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA=="
,
"path"
:
"microsoft.win32.registry/4.7.0"
,
"hashPath"
:
"microsoft.win32.registry.4.7.0.nupkg.sha512"
},
"Microsoft.Win32.SystemEvents/4.5.0"
:
{
"type"
:
"package"
,
...
...
@@ -1245,6 +1321,13 @@
"path"
:
"sharpziplib/1.2.0"
,
"hashPath"
:
"sharpziplib.1.2.0.nupkg.sha512"
},
"SkiaSharp/2.80.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-CiQwnDzG+1JNGzjAN9G/9n/lJgUVA/NPOFgSlEtu6c7qQ0O7P1tMjrXp/+PtWfX0xyyY9ABsFAZK2kW34U7r/A=="
,
"path"
:
"skiasharp/2.80.1"
,
"hashPath"
:
"skiasharp.2.80.1.nupkg.sha512"
},
"System.AppContext/4.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
...
...
@@ -1315,12 +1398,12 @@
"path"
:
"system.globalization/4.0.11"
,
"hashPath"
:
"system.globalization.4.0.11.nupkg.sha512"
},
"System.IO/4.
1
.0"
:
{
"System.IO/4.
3
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+m
Q=="
,
"path"
:
"system.io/4.
1
.0"
,
"hashPath"
:
"system.io.4.
1
.0.nupkg.sha512"
"sha512"
:
"sha512-
lHnCA1CwGlY3hbvMSgRrjGLpj6XJKvvrZ4I/0IFV+CrjPXorggUMrdjFWzWMngdWbYQMYIE3sCatHKInWtMBT
Q=="
,
"path"
:
"system.io/4.
3
.0"
,
"hashPath"
:
"system.io.4.
3
.0.nupkg.sha512"
},
"System.IO.FileSystem/4.0.1"
:
{
"type"
:
"package"
,
...
...
@@ -1350,12 +1433,12 @@
"path"
:
"system.linq.expressions/4.1.0"
,
"hashPath"
:
"system.linq.expressions.4.1.0.nupkg.sha512"
},
"System.Memory/4.5.
2
"
:
{
"System.Memory/4.5.
3
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
fvq1GNmUFwbKv+aLVYYdgu/+gc8Nu9oFujOxIjPrsf+meis9JBzTPDL6aP/eeGOz9yPj6rRLUbOjKMpsMEWpNg
=="
,
"path"
:
"system.memory/4.5.
2
"
,
"hashPath"
:
"system.memory.4.5.
2
.nupkg.sha512"
"sha512"
:
"sha512-
3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA
=="
,
"path"
:
"system.memory/4.5.
3
"
,
"hashPath"
:
"system.memory.4.5.
3
.nupkg.sha512"
},
"System.ObjectModel/4.0.12"
:
{
"type"
:
"package"
,
...
...
@@ -1364,26 +1447,26 @@
"path"
:
"system.objectmodel/4.0.12"
,
"hashPath"
:
"system.objectmodel.4.0.12.nupkg.sha512"
},
"System.Reflection/4.
1
.0"
:
{
"System.Reflection/4.
3
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng
=="
,
"path"
:
"system.reflection/4.
1
.0"
,
"hashPath"
:
"system.reflection.4.
1
.0.nupkg.sha512"
"sha512"
:
"sha512-
/U196t6BR0QGPIodNy1kESvR1co1pW6fhtNZXyOIrers7dpk4+sHvuQjOfZq++KhcpTVZYAttknYEpLBrqn1Bw
=="
,
"path"
:
"system.reflection/4.
3
.0"
,
"hashPath"
:
"system.reflection.4.
3
.0.nupkg.sha512"
},
"System.Reflection.Emit/4.
0.1
"
:
{
"System.Reflection.Emit/4.
3.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g
=="
,
"path"
:
"system.reflection.emit/4.
0.1
"
,
"hashPath"
:
"system.reflection.emit.4.
0.1
.nupkg.sha512"
"sha512"
:
"sha512-
GCAFZkuA/6JuYqVQIpDh1+DNdPZ9cfUY7NvAnQ0DBs3avOZVNVTRIhqZE1eIMu+Qj7sF4U+eRxW0gSfV6hQAgQ
=="
,
"path"
:
"system.reflection.emit/4.
3.0
"
,
"hashPath"
:
"system.reflection.emit.4.
3.0
.nupkg.sha512"
},
"System.Reflection.Emit.ILGeneration/4.
0.1
"
:
{
"System.Reflection.Emit.ILGeneration/4.
3.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA
=="
,
"path"
:
"system.reflection.emit.ilgeneration/4.
0.1
"
,
"hashPath"
:
"system.reflection.emit.ilgeneration.4.
0.1
.nupkg.sha512"
"sha512"
:
"sha512-
/fyzpXnU506v9HfSpaTSGSPnJWFg4b8t0nbKHNwJ5LFquvJAtND6td2Cpp+Ek1OLRuR0WxJ+YCB6ZW2GyvpBZQ
=="
,
"path"
:
"system.reflection.emit.ilgeneration/4.
3.0
"
,
"hashPath"
:
"system.reflection.emit.ilgeneration.4.
3.0
.nupkg.sha512"
},
"System.Reflection.Emit.Lightweight/4.0.1"
:
{
"type"
:
"package"
,
...
...
@@ -1399,12 +1482,12 @@
"path"
:
"system.reflection.extensions/4.0.1"
,
"hashPath"
:
"system.reflection.extensions.4.0.1.nupkg.sha512"
},
"System.Reflection.Primitives/4.
0.1
"
:
{
"System.Reflection.Primitives/4.
3.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ
=="
,
"path"
:
"system.reflection.primitives/4.
0.1
"
,
"hashPath"
:
"system.reflection.primitives.4.
0.1
.nupkg.sha512"
"sha512"
:
"sha512-
uln4id8a086oqZBDylX/0jTZQ8qkoAdTjI1ZkUieD+nJkH9qQfRxCWSNCe2W0qVyRiQZe+iKerY5T5dtOyYcXA
=="
,
"path"
:
"system.reflection.primitives/4.
3.0
"
,
"hashPath"
:
"system.reflection.primitives.4.
3.0
.nupkg.sha512"
},
"System.Reflection.TypeExtensions/4.1.0"
:
{
"type"
:
"package"
,
...
...
@@ -1420,12 +1503,12 @@
"path"
:
"system.resources.resourcemanager/4.0.1"
,
"hashPath"
:
"system.resources.resourcemanager.4.0.1.nupkg.sha512"
},
"System.Runtime/4.
1
.0"
:
{
"System.Runtime/4.
3
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g
=="
,
"path"
:
"system.runtime/4.
1
.0"
,
"hashPath"
:
"system.runtime.4.
1
.0.nupkg.sha512"
"sha512"
:
"sha512-
R7ADy3PoW/NP1vgBNBlitlNxZm9OjzlHnPAyY0xvrcJjyh3PqrcDbRErvZwR5TRZxgMnaBT0hZRpHS4EHXzKLw
=="
,
"path"
:
"system.runtime/4.
3
.0"
,
"hashPath"
:
"system.runtime.4.
3
.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.7.1"
:
{
"type"
:
"package"
,
...
...
@@ -1462,12 +1545,12 @@
"path"
:
"system.runtime.interopservices.runtimeinformation/4.0.0"
,
"hashPath"
:
"system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
},
"System.Security.AccessControl/4.
5
.0"
:
{
"System.Security.AccessControl/4.
7
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A
=="
,
"path"
:
"system.security.accesscontrol/4.
5
.0"
,
"hashPath"
:
"system.security.accesscontrol.4.
5
.0.nupkg.sha512"
"sha512"
:
"sha512-
JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg
=="
,
"path"
:
"system.security.accesscontrol/4.
7
.0"
,
"hashPath"
:
"system.security.accesscontrol.4.
7
.0.nupkg.sha512"
},
"System.Security.Cryptography.ProtectedData/4.5.0"
:
{
"type"
:
"package"
,
...
...
@@ -1483,19 +1566,26 @@
"path"
:
"system.security.permissions/4.5.0"
,
"hashPath"
:
"system.security.permissions.4.5.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.5.0"
:
{
"System.Security.Principal.Windows/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ=="
,
"path"
:
"system.security.principal.windows/4.7.0"
,
"hashPath"
:
"system.security.principal.windows.4.7.0.nupkg.sha512"
},
"System.Text.Encoding/4.3.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ
=="
,
"path"
:
"system.
security.principal.windows/4.5
.0"
,
"hashPath"
:
"system.
security.principal.windows.4.5
.0.nupkg.sha512"
"sha512"
:
"sha512-
9+kKiGF7iM11HWsWhHv0bJaY3DdabXRK3A0LAu4RES+F0qf/G9OK2xrzaLVOFXjykQw0V9+y5XBbsTrBgU1C5w
=="
,
"path"
:
"system.
text.encoding/4.3
.0"
,
"hashPath"
:
"system.
text.encoding.4.3
.0.nupkg.sha512"
},
"System.Text.Encoding
/4.0.11
"
:
{
"System.Text.Encoding
.CodePages/4.5.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA
=="
,
"path"
:
"system.text.encoding
/4.0.11
"
,
"hashPath"
:
"system.text.encoding.
4.0.11
.nupkg.sha512"
"sha512"
:
"sha512-
S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng
=="
,
"path"
:
"system.text.encoding
.codepages/4.5.0
"
,
"hashPath"
:
"system.text.encoding.
codepages.4.5.0
.nupkg.sha512"
},
"System.Text.Encodings.Web/4.7.1"
:
{
"type"
:
"package"
,
...
...
@@ -1518,12 +1608,12 @@
"path"
:
"system.threading/4.0.11"
,
"hashPath"
:
"system.threading.4.0.11.nupkg.sha512"
},
"System.Threading.Tasks/4.
0.11
"
:
{
"System.Threading.Tasks/4.
3.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ
=="
,
"path"
:
"system.threading.tasks/4.
0.11
"
,
"hashPath"
:
"system.threading.tasks.4.
0.11
.nupkg.sha512"
"sha512"
:
"sha512-
KlMDBDsVbQ/dfjAKi23D1QMSDRE4SmlEXatGsgBmDXZ1dqpnLdJOe/NVyc9Dt2T6Adgo6pBJSucmn/QTj6JWdA
=="
,
"path"
:
"system.threading.tasks/4.
3.0
"
,
"hashPath"
:
"system.threading.tasks.4.
3.0
.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.5.4"
:
{
"type"
:
"package"
,
...
...
@@ -1531,36 +1621,6 @@
"sha512"
:
"sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg=="
,
"path"
:
"system.threading.tasks.extensions/4.5.4"
,
"hashPath"
:
"system.threading.tasks.extensions.4.5.4.nupkg.sha512"
},
"Aspose.Pdf/8.6.0.0"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Aspose.Words/17.7.0.0"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Spire.License/1.3.6.40"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Spire.Pdf/3.9.130.14040"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Spire.Presentation/2.8.13.14040"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Spire.XLS/7.12.23.14040"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
}
}
}
\ No newline at end of file
Edu.Common/bin/Release/netcoreapp3.0/Edu.Common.deps.json
View file @
d73405c0
...
...
@@ -8,23 +8,37 @@
".NETCoreApp,Version=v3.0"
:
{
"Edu.Common/1.0.0"
:
{
"dependencies"
:
{
"Aspose.Words"
:
"21.1.0"
,
"Microsoft.AspNetCore.Http"
:
"2.2.2"
,
"Microsoft.AspNetCore.Mvc.Formatters.Json"
:
"2.2.0"
,
"Microsoft.Extensions.Configuration"
:
"3.1.8"
,
"Microsoft.Extensions.Configuration.Json"
:
"3.1.8"
,
"NPOI"
:
"2.5.1"
,
"Newtonsoft.Json"
:
"12.0.3"
,
"Aspose.Pdf"
:
"8.6.0.0"
,
"Aspose.Words"
:
"17.7.0.0"
,
"Spire.License"
:
"1.3.6.40"
,
"Spire.Pdf"
:
"3.9.130.14040"
,
"Spire.Presentation"
:
"2.8.13.14040"
,
"Spire.XLS"
:
"7.12.23.14040"
"Newtonsoft.Json"
:
"12.0.3"
},
"runtime"
:
{
"Edu.Common.dll"
:
{}
}
},
"Aspose.Words/21.1.0"
:
{
"dependencies"
:
{
"Microsoft.Win32.Registry"
:
"4.7.0"
,
"SkiaSharp"
:
"2.80.1"
,
"System.Reflection.Emit"
:
"4.3.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.3.0"
,
"System.Text.Encoding.CodePages"
:
"4.5.0"
},
"runtime"
:
{
"lib/netstandard2.0/Aspose.Words.Pdf2Word.dll"
:
{
"assemblyVersion"
:
"21.1.0.0"
,
"fileVersion"
:
"21.1.0.0"
},
"lib/netstandard2.0/Aspose.Words.dll"
:
{
"assemblyVersion"
:
"21.1.0.0"
,
"fileVersion"
:
"21.1.0.0"
}
}
},
"Microsoft.AspNetCore.Authentication.Abstractions/2.2.0"
:
{
"dependencies"
:
{
"Microsoft.AspNetCore.Http.Abstractions"
:
"2.2.0"
,
...
...
@@ -267,7 +281,7 @@
"dependencies"
:
{
"System.AppContext"
:
"4.1.0"
,
"System.Collections"
:
"4.0.11"
,
"System.IO"
:
"4.
1
.0"
,
"System.IO"
:
"4.
3
.0"
,
"System.IO.FileSystem"
:
"4.0.1"
,
"System.Reflection.TypeExtensions"
:
"4.1.0"
,
"System.Runtime.Extensions"
:
"4.1.0"
,
...
...
@@ -439,7 +453,7 @@
},
"Microsoft.Extensions.Primitives/3.1.8"
:
{
"dependencies"
:
{
"System.Memory"
:
"4.5.
2
"
,
"System.Memory"
:
"4.5.
3
"
,
"System.Runtime.CompilerServices.Unsafe"
:
"4.7.1"
},
"runtime"
:
{
...
...
@@ -461,11 +475,37 @@
}
}
},
"Microsoft.NETCore.Platforms/2.0.0"
:
{},
"Microsoft.NETCore.Targets/1.0.1"
:
{},
"Microsoft.NETCore.Platforms/3.1.0"
:
{},
"Microsoft.NETCore.Targets/1.1.0"
:
{},
"Microsoft.Win32.Registry/4.7.0"
:
{
"dependencies"
:
{
"System.Security.AccessControl"
:
"4.7.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
},
"runtime"
:
{
"lib/netstandard2.0/Microsoft.Win32.Registry.dll"
:
{
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
},
"runtimeTargets"
:
{
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll"
:
{
"rid"
:
"unix"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
},
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll"
:
{
"rid"
:
"win"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
}
},
"Microsoft.Win32.SystemEvents/4.5.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
},
"runtime"
:
{
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll"
:
{
...
...
@@ -526,8 +566,8 @@
},
"runtime.native.System/4.0.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
}
},
"SharpZipLib/1.2.0"
:
{
...
...
@@ -538,17 +578,50 @@
}
}
},
"SkiaSharp/2.80.1"
:
{
"dependencies"
:
{
"System.Memory"
:
"4.5.3"
},
"runtime"
:
{
"lib/netstandard2.0/SkiaSharp.dll"
:
{
"assemblyVersion"
:
"2.80.0.0"
,
"fileVersion"
:
"2.80.1.0"
}
},
"runtimeTargets"
:
{
"runtimes/osx/native/libSkiaSharp.dylib"
:
{
"rid"
:
"osx"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-arm64/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-arm64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-x64/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-x64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-x86/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-x86"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
}
}
},
"System.AppContext/4.1.0"
:
{
"dependencies"
:
{
"System.Runtime"
:
"4.
1
.0"
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Buffers/4.5.0"
:
{},
"System.Collections/4.0.11"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.ComponentModel.Annotations/4.5.0"
:
{},
...
...
@@ -566,15 +639,15 @@
},
"System.Diagnostics.Debug/4.0.11"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Diagnostics.DiagnosticSource/4.5.0"
:
{},
"System.Drawing.Common/4.5.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.Win32.SystemEvents"
:
"4.5.0"
},
"runtime"
:
{
...
...
@@ -606,48 +679,48 @@
"System.Linq"
:
"4.1.0"
,
"System.Linq.Expressions"
:
"4.1.0"
,
"System.ObjectModel"
:
"4.0.12"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Emit"
:
"4.
0.1
"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
0.1
"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Emit"
:
"4.
3.0
"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
3.0
"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Reflection.TypeExtensions"
:
"4.1.0"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Extensions"
:
"4.1.0"
,
"System.Threading"
:
"4.0.11"
}
},
"System.Globalization/4.0.11"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.IO/4.
1
.0"
:
{
"System.IO/4.
3
.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Text.Encoding"
:
"4.
0.11
"
,
"System.Threading.Tasks"
:
"4.
0.11
"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Text.Encoding"
:
"4.
3.0
"
,
"System.Threading.Tasks"
:
"4.
3.0
"
}
},
"System.IO.FileSystem/4.0.1"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.IO"
:
"4.
1
.0"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.IO"
:
"4.
3
.0"
,
"System.IO.FileSystem.Primitives"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Handles"
:
"4.0.1"
,
"System.Text.Encoding"
:
"4.
0.11
"
,
"System.Threading.Tasks"
:
"4.
0.11
"
"System.Text.Encoding"
:
"4.
3.0
"
,
"System.Threading.Tasks"
:
"4.
3.0
"
}
},
"System.IO.FileSystem.Primitives/4.0.1"
:
{
"dependencies"
:
{
"System.Runtime"
:
"4.
1
.0"
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Linq/4.1.0"
:
{
...
...
@@ -655,7 +728,7 @@
"System.Collections"
:
"4.0.11"
,
"System.Diagnostics.Debug"
:
"4.0.11"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Extensions"
:
"4.1.0"
}
},
...
...
@@ -664,99 +737,99 @@
"System.Collections"
:
"4.0.11"
,
"System.Diagnostics.Debug"
:
"4.0.11"
,
"System.Globalization"
:
"4.0.11"
,
"System.IO"
:
"4.
1
.0"
,
"System.IO"
:
"4.
3
.0"
,
"System.Linq"
:
"4.1.0"
,
"System.ObjectModel"
:
"4.0.12"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Emit"
:
"4.
0.1
"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
0.1
"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Emit"
:
"4.
3.0
"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
3.0
"
,
"System.Reflection.Emit.Lightweight"
:
"4.0.1"
,
"System.Reflection.Extensions"
:
"4.0.1"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Reflection.TypeExtensions"
:
"4.1.0"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Extensions"
:
"4.1.0"
,
"System.Threading"
:
"4.0.11"
}
},
"System.Memory/4.5.
2
"
:
{},
"System.Memory/4.5.
3
"
:
{},
"System.ObjectModel/4.0.12"
:
{
"dependencies"
:
{
"System.Collections"
:
"4.0.11"
,
"System.Diagnostics.Debug"
:
"4.0.11"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Threading"
:
"4.0.11"
}
},
"System.Reflection/4.
1
.0"
:
{
"System.Reflection/4.
3
.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.IO"
:
"4.
1
.0"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.IO"
:
"4.
3
.0"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Emit/4.
0.1
"
:
{
"System.Reflection.Emit/4.
3.0
"
:
{
"dependencies"
:
{
"System.IO"
:
"4.
1
.0"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
0.1
"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"System.IO"
:
"4.
3
.0"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
3.0
"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Emit.ILGeneration/4.
0.1
"
:
{
"System.Reflection.Emit.ILGeneration/4.
3.0
"
:
{
"dependencies"
:
{
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Emit.Lightweight/4.0.1"
:
{
"dependencies"
:
{
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
0.1
"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.
3.0
"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Extensions/4.0.1"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.Primitives/4.
0.1
"
:
{
"System.Reflection.Primitives/4.
3.0
"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Reflection.TypeExtensions/4.1.0"
:
{
"dependencies"
:
{
"System.Reflection"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
1
.0"
"System.Reflection"
:
"4.
3
.0"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Resources.ResourceManager/4.0.1"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Globalization"
:
"4.0.11"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
1
.0"
"System.Reflection"
:
"4.
3
.0"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Runtime/4.
1
.0"
:
{
"System.Runtime/4.
3
.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
}
},
"System.Runtime.CompilerServices.Unsafe/4.7.1"
:
{
...
...
@@ -769,43 +842,57 @@
},
"System.Runtime.Extensions/4.1.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Runtime.Handles/4.0.1"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Runtime"
:
"4.
3
.0"
}
},
"System.Runtime.InteropServices/4.1.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
0.1
"
,
"System.Reflection"
:
"4.
1
.0"
,
"System.Reflection.Primitives"
:
"4.
0.1
"
,
"System.Runtime"
:
"4.
1
.0"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"Microsoft.NETCore.Targets"
:
"1.
1.0
"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Reflection.Primitives"
:
"4.
3.0
"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.Handles"
:
"4.0.1"
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"
2.0
.0"
,
"System.Reflection"
:
"4.
1
.0"
,
"Microsoft.NETCore.Platforms"
:
"
3.1
.0"
,
"System.Reflection"
:
"4.
3
.0"
,
"System.Resources.ResourceManager"
:
"4.0.1"
,
"System.Runtime"
:
"4.
1
.0"
,
"System.Runtime"
:
"4.
3
.0"
,
"System.Runtime.InteropServices"
:
"4.1.0"
,
"System.Threading"
:
"4.0.11"
,
"runtime.native.System"
:
"4.0.0"
}
},
"System.Security.AccessControl/4.
5
.0"
:
{
"System.Security.AccessControl/4.
7
.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"2.0.0"
,
"System.Security.Principal.Windows"
:
"4.5.0"
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"System.Security.Principal.Windows"
:
"4.7.0"
},
"runtime"
:
{
"lib/netstandard2.0/System.Security.AccessControl.dll"
:
{
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
},
"runtimeTargets"
:
{
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll"
:
{
"rid"
:
"win"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
}
},
"System.Security.Cryptography.ProtectedData/4.5.0"
:
{
...
...
@@ -826,7 +913,7 @@
},
"System.Security.Permissions/4.5.0"
:
{
"dependencies"
:
{
"System.Security.AccessControl"
:
"4.
5
.0"
"System.Security.AccessControl"
:
"4.
7
.0"
},
"runtime"
:
{
"lib/netstandard2.0/System.Security.Permissions.dll"
:
{
...
...
@@ -835,16 +922,39 @@
}
}
},
"System.Security.Principal.Windows/4.5.0"
:
{
"System.Security.Principal.Windows/4.7.0"
:
{
"runtime"
:
{
"lib/netstandard2.0/System.Security.Principal.Windows.dll"
:
{
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
},
"runtimeTargets"
:
{
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll"
:
{
"rid"
:
"unix"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
},
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll"
:
{
"rid"
:
"win"
,
"assetType"
:
"runtime"
,
"assemblyVersion"
:
"4.1.3.0"
,
"fileVersion"
:
"4.700.19.56404"
}
}
},
"System.Text.Encoding/4.3.0"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"2.0.0"
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"Microsoft.NETCore.Targets"
:
"1.1.0"
,
"System.Runtime"
:
"4.3.0"
}
},
"System.Text.Encoding
/4.0.11
"
:
{
"System.Text.Encoding
.CodePages/4.5.0
"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"2.0.0"
,
"Microsoft.NETCore.Targets"
:
"1.0.1"
,
"System.Runtime"
:
"4.1.0"
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"System.Runtime.CompilerServices.Unsafe"
:
"4.7.1"
}
},
"System.Text.Encodings.Web/4.7.1"
:
{
...
...
@@ -869,66 +979,18 @@
},
"System.Threading/4.0.11"
:
{
"dependencies"
:
{
"System.Runtime"
:
"4.
1
.0"
,
"System.Threading.Tasks"
:
"4.
0.11
"
"System.Runtime"
:
"4.
3
.0"
,
"System.Threading.Tasks"
:
"4.
3.0
"
}
},
"System.Threading.Tasks/4.
0.11
"
:
{
"System.Threading.Tasks/4.
3.0
"
:
{
"dependencies"
:
{
"Microsoft.NETCore.Platforms"
:
"2.0.0"
,
"Microsoft.NETCore.Targets"
:
"1.0.1"
,
"System.Runtime"
:
"4.1.0"
}
},
"System.Threading.Tasks.Extensions/4.5.4"
:
{},
"Aspose.Pdf/8.6.0.0"
:
{
"runtime"
:
{
"Aspose.Pdf.dll"
:
{
"assemblyVersion"
:
"8.6.0.0"
,
"fileVersion"
:
"8.6.0.0"
}
}
},
"Aspose.Words/17.7.0.0"
:
{
"runtime"
:
{
"Aspose.Words.dll"
:
{
"assemblyVersion"
:
"17.7.0.0"
,
"fileVersion"
:
"17.7.0.0"
}
"Microsoft.NETCore.Platforms"
:
"3.1.0"
,
"Microsoft.NETCore.Targets"
:
"1.1.0"
,
"System.Runtime"
:
"4.3.0"
}
},
"Spire.License/1.3.6.40"
:
{
"runtime"
:
{
"Spire.License.dll"
:
{
"assemblyVersion"
:
"1.3.6.40"
,
"fileVersion"
:
"1.3.6.40"
}
}
},
"Spire.Pdf/3.9.130.14040"
:
{
"runtime"
:
{
"Spire.Pdf.dll"
:
{
"assemblyVersion"
:
"3.9.130.14040"
,
"fileVersion"
:
"3.9.130.14040"
}
}
},
"Spire.Presentation/2.8.13.14040"
:
{
"runtime"
:
{
"Spire.Presentation.dll"
:
{
"assemblyVersion"
:
"2.8.13.14040"
,
"fileVersion"
:
"2.8.13.14040"
}
}
},
"Spire.XLS/7.12.23.14040"
:
{
"runtime"
:
{
"Spire.XLS.dll"
:
{
"assemblyVersion"
:
"7.12.23.14040"
,
"fileVersion"
:
"7.12.23.14040"
}
}
}
"System.Threading.Tasks.Extensions/4.5.4"
:
{}
}
},
"libraries"
:
{
...
...
@@ -937,6 +999,13 @@
"serviceable"
:
false
,
"sha512"
:
""
},
"Aspose.Words/21.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-BM2BJz3b8uvN6KzVNSwwrtt0SXQcmzRZ0Cbq6lLOgzCS1fCpS3ieQt2TfeEw3OtvZpNVEWLuJGo1YqQJpMh9Dw=="
,
"path"
:
"aspose.words/21.1.0"
,
"hashPath"
:
"aspose.words.21.1.0.nupkg.sha512"
},
"Microsoft.AspNetCore.Authentication.Abstractions/2.2.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
...
...
@@ -1189,19 +1258,26 @@
"path"
:
"microsoft.net.http.headers/2.2.0"
,
"hashPath"
:
"microsoft.net.http.headers.2.2.0.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/
2.0
.0"
:
{
"Microsoft.NETCore.Platforms/
3.1
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ
=="
,
"path"
:
"microsoft.netcore.platforms/
2.0
.0"
,
"hashPath"
:
"microsoft.netcore.platforms.
2.0
.0.nupkg.sha512"
"sha512"
:
"sha512-
z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w
=="
,
"path"
:
"microsoft.netcore.platforms/
3.1
.0"
,
"hashPath"
:
"microsoft.netcore.platforms.
3.1
.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.
0.1
"
:
{
"Microsoft.NETCore.Targets/1.
1.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw=="
,
"path"
:
"microsoft.netcore.targets/1.0.1"
,
"hashPath"
:
"microsoft.netcore.targets.1.0.1.nupkg.sha512"
"sha512"
:
"sha512-jtuKp4+ddUpehBOlmQJNWek/tXwXLeDAGtkkrHS1Qi6nOPmaLCuvDKFaqBu2c4DGKci+JMDUk4R+6jQ8P8l1aw=="
,
"path"
:
"microsoft.netcore.targets/1.1.0"
,
"hashPath"
:
"microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA=="
,
"path"
:
"microsoft.win32.registry/4.7.0"
,
"hashPath"
:
"microsoft.win32.registry.4.7.0.nupkg.sha512"
},
"Microsoft.Win32.SystemEvents/4.5.0"
:
{
"type"
:
"package"
,
...
...
@@ -1245,6 +1321,13 @@
"path"
:
"sharpziplib/1.2.0"
,
"hashPath"
:
"sharpziplib.1.2.0.nupkg.sha512"
},
"SkiaSharp/2.80.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-CiQwnDzG+1JNGzjAN9G/9n/lJgUVA/NPOFgSlEtu6c7qQ0O7P1tMjrXp/+PtWfX0xyyY9ABsFAZK2kW34U7r/A=="
,
"path"
:
"skiasharp/2.80.1"
,
"hashPath"
:
"skiasharp.2.80.1.nupkg.sha512"
},
"System.AppContext/4.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
...
...
@@ -1315,12 +1398,12 @@
"path"
:
"system.globalization/4.0.11"
,
"hashPath"
:
"system.globalization.4.0.11.nupkg.sha512"
},
"System.IO/4.
1
.0"
:
{
"System.IO/4.
3
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+m
Q=="
,
"path"
:
"system.io/4.
1
.0"
,
"hashPath"
:
"system.io.4.
1
.0.nupkg.sha512"
"sha512"
:
"sha512-
lHnCA1CwGlY3hbvMSgRrjGLpj6XJKvvrZ4I/0IFV+CrjPXorggUMrdjFWzWMngdWbYQMYIE3sCatHKInWtMBT
Q=="
,
"path"
:
"system.io/4.
3
.0"
,
"hashPath"
:
"system.io.4.
3
.0.nupkg.sha512"
},
"System.IO.FileSystem/4.0.1"
:
{
"type"
:
"package"
,
...
...
@@ -1350,12 +1433,12 @@
"path"
:
"system.linq.expressions/4.1.0"
,
"hashPath"
:
"system.linq.expressions.4.1.0.nupkg.sha512"
},
"System.Memory/4.5.
2
"
:
{
"System.Memory/4.5.
3
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
fvq1GNmUFwbKv+aLVYYdgu/+gc8Nu9oFujOxIjPrsf+meis9JBzTPDL6aP/eeGOz9yPj6rRLUbOjKMpsMEWpNg
=="
,
"path"
:
"system.memory/4.5.
2
"
,
"hashPath"
:
"system.memory.4.5.
2
.nupkg.sha512"
"sha512"
:
"sha512-
3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA
=="
,
"path"
:
"system.memory/4.5.
3
"
,
"hashPath"
:
"system.memory.4.5.
3
.nupkg.sha512"
},
"System.ObjectModel/4.0.12"
:
{
"type"
:
"package"
,
...
...
@@ -1364,26 +1447,26 @@
"path"
:
"system.objectmodel/4.0.12"
,
"hashPath"
:
"system.objectmodel.4.0.12.nupkg.sha512"
},
"System.Reflection/4.
1
.0"
:
{
"System.Reflection/4.
3
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng
=="
,
"path"
:
"system.reflection/4.
1
.0"
,
"hashPath"
:
"system.reflection.4.
1
.0.nupkg.sha512"
"sha512"
:
"sha512-
/U196t6BR0QGPIodNy1kESvR1co1pW6fhtNZXyOIrers7dpk4+sHvuQjOfZq++KhcpTVZYAttknYEpLBrqn1Bw
=="
,
"path"
:
"system.reflection/4.
3
.0"
,
"hashPath"
:
"system.reflection.4.
3
.0.nupkg.sha512"
},
"System.Reflection.Emit/4.
0.1
"
:
{
"System.Reflection.Emit/4.
3.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g
=="
,
"path"
:
"system.reflection.emit/4.
0.1
"
,
"hashPath"
:
"system.reflection.emit.4.
0.1
.nupkg.sha512"
"sha512"
:
"sha512-
GCAFZkuA/6JuYqVQIpDh1+DNdPZ9cfUY7NvAnQ0DBs3avOZVNVTRIhqZE1eIMu+Qj7sF4U+eRxW0gSfV6hQAgQ
=="
,
"path"
:
"system.reflection.emit/4.
3.0
"
,
"hashPath"
:
"system.reflection.emit.4.
3.0
.nupkg.sha512"
},
"System.Reflection.Emit.ILGeneration/4.
0.1
"
:
{
"System.Reflection.Emit.ILGeneration/4.
3.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA
=="
,
"path"
:
"system.reflection.emit.ilgeneration/4.
0.1
"
,
"hashPath"
:
"system.reflection.emit.ilgeneration.4.
0.1
.nupkg.sha512"
"sha512"
:
"sha512-
/fyzpXnU506v9HfSpaTSGSPnJWFg4b8t0nbKHNwJ5LFquvJAtND6td2Cpp+Ek1OLRuR0WxJ+YCB6ZW2GyvpBZQ
=="
,
"path"
:
"system.reflection.emit.ilgeneration/4.
3.0
"
,
"hashPath"
:
"system.reflection.emit.ilgeneration.4.
3.0
.nupkg.sha512"
},
"System.Reflection.Emit.Lightweight/4.0.1"
:
{
"type"
:
"package"
,
...
...
@@ -1399,12 +1482,12 @@
"path"
:
"system.reflection.extensions/4.0.1"
,
"hashPath"
:
"system.reflection.extensions.4.0.1.nupkg.sha512"
},
"System.Reflection.Primitives/4.
0.1
"
:
{
"System.Reflection.Primitives/4.
3.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ
=="
,
"path"
:
"system.reflection.primitives/4.
0.1
"
,
"hashPath"
:
"system.reflection.primitives.4.
0.1
.nupkg.sha512"
"sha512"
:
"sha512-
uln4id8a086oqZBDylX/0jTZQ8qkoAdTjI1ZkUieD+nJkH9qQfRxCWSNCe2W0qVyRiQZe+iKerY5T5dtOyYcXA
=="
,
"path"
:
"system.reflection.primitives/4.
3.0
"
,
"hashPath"
:
"system.reflection.primitives.4.
3.0
.nupkg.sha512"
},
"System.Reflection.TypeExtensions/4.1.0"
:
{
"type"
:
"package"
,
...
...
@@ -1420,12 +1503,12 @@
"path"
:
"system.resources.resourcemanager/4.0.1"
,
"hashPath"
:
"system.resources.resourcemanager.4.0.1.nupkg.sha512"
},
"System.Runtime/4.
1
.0"
:
{
"System.Runtime/4.
3
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g
=="
,
"path"
:
"system.runtime/4.
1
.0"
,
"hashPath"
:
"system.runtime.4.
1
.0.nupkg.sha512"
"sha512"
:
"sha512-
R7ADy3PoW/NP1vgBNBlitlNxZm9OjzlHnPAyY0xvrcJjyh3PqrcDbRErvZwR5TRZxgMnaBT0hZRpHS4EHXzKLw
=="
,
"path"
:
"system.runtime/4.
3
.0"
,
"hashPath"
:
"system.runtime.4.
3
.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.7.1"
:
{
"type"
:
"package"
,
...
...
@@ -1462,12 +1545,12 @@
"path"
:
"system.runtime.interopservices.runtimeinformation/4.0.0"
,
"hashPath"
:
"system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
},
"System.Security.AccessControl/4.
5
.0"
:
{
"System.Security.AccessControl/4.
7
.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A
=="
,
"path"
:
"system.security.accesscontrol/4.
5
.0"
,
"hashPath"
:
"system.security.accesscontrol.4.
5
.0.nupkg.sha512"
"sha512"
:
"sha512-
JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg
=="
,
"path"
:
"system.security.accesscontrol/4.
7
.0"
,
"hashPath"
:
"system.security.accesscontrol.4.
7
.0.nupkg.sha512"
},
"System.Security.Cryptography.ProtectedData/4.5.0"
:
{
"type"
:
"package"
,
...
...
@@ -1483,19 +1566,26 @@
"path"
:
"system.security.permissions/4.5.0"
,
"hashPath"
:
"system.security.permissions.4.5.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.5.0"
:
{
"System.Security.Principal.Windows/4.7.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ=="
,
"path"
:
"system.security.principal.windows/4.7.0"
,
"hashPath"
:
"system.security.principal.windows.4.7.0.nupkg.sha512"
},
"System.Text.Encoding/4.3.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ
=="
,
"path"
:
"system.
security.principal.windows/4.5
.0"
,
"hashPath"
:
"system.
security.principal.windows.4.5
.0.nupkg.sha512"
"sha512"
:
"sha512-
9+kKiGF7iM11HWsWhHv0bJaY3DdabXRK3A0LAu4RES+F0qf/G9OK2xrzaLVOFXjykQw0V9+y5XBbsTrBgU1C5w
=="
,
"path"
:
"system.
text.encoding/4.3
.0"
,
"hashPath"
:
"system.
text.encoding.4.3
.0.nupkg.sha512"
},
"System.Text.Encoding
/4.0.11
"
:
{
"System.Text.Encoding
.CodePages/4.5.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA
=="
,
"path"
:
"system.text.encoding
/4.0.11
"
,
"hashPath"
:
"system.text.encoding.
4.0.11
.nupkg.sha512"
"sha512"
:
"sha512-
S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng
=="
,
"path"
:
"system.text.encoding
.codepages/4.5.0
"
,
"hashPath"
:
"system.text.encoding.
codepages.4.5.0
.nupkg.sha512"
},
"System.Text.Encodings.Web/4.7.1"
:
{
"type"
:
"package"
,
...
...
@@ -1518,12 +1608,12 @@
"path"
:
"system.threading/4.0.11"
,
"hashPath"
:
"system.threading.4.0.11.nupkg.sha512"
},
"System.Threading.Tasks/4.
0.11
"
:
{
"System.Threading.Tasks/4.
3.0
"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-
k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ
=="
,
"path"
:
"system.threading.tasks/4.
0.11
"
,
"hashPath"
:
"system.threading.tasks.4.
0.11
.nupkg.sha512"
"sha512"
:
"sha512-
KlMDBDsVbQ/dfjAKi23D1QMSDRE4SmlEXatGsgBmDXZ1dqpnLdJOe/NVyc9Dt2T6Adgo6pBJSucmn/QTj6JWdA
=="
,
"path"
:
"system.threading.tasks/4.
3.0
"
,
"hashPath"
:
"system.threading.tasks.4.
3.0
.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.5.4"
:
{
"type"
:
"package"
,
...
...
@@ -1531,36 +1621,6 @@
"sha512"
:
"sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg=="
,
"path"
:
"system.threading.tasks.extensions/4.5.4"
,
"hashPath"
:
"system.threading.tasks.extensions.4.5.4.nupkg.sha512"
},
"Aspose.Pdf/8.6.0.0"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Aspose.Words/17.7.0.0"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Spire.License/1.3.6.40"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Spire.Pdf/3.9.130.14040"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Spire.Presentation/2.8.13.14040"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
},
"Spire.XLS/7.12.23.14040"
:
{
"type"
:
"reference"
,
"serviceable"
:
false
,
"sha512"
:
""
}
}
}
\ No newline at end of file
Edu.Model/bin/Release/netcoreapp3.0/Edu.Model.deps.json
View file @
d73405c0
...
...
@@ -15,6 +15,25 @@
"Edu.Model.dll"
:
{}
}
},
"Aspose.Words/21.1.0"
:
{
"dependencies"
:
{
"Microsoft.Win32.Registry"
:
"4.7.0"
,
"SkiaSharp"
:
"2.80.1"
,
"System.Reflection.Emit"
:
"4.3.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.3.0"
,
"System.Text.Encoding.CodePages"
:
"4.7.0"
},
"runtime"
:
{
"lib/netstandard2.0/Aspose.Words.Pdf2Word.dll"
:
{
"assemblyVersion"
:
"21.1.0.0"
,
"fileVersion"
:
"21.1.0.0"
},
"lib/netstandard2.0/Aspose.Words.dll"
:
{
"assemblyVersion"
:
"21.1.0.0"
,
"fileVersion"
:
"21.1.0.0"
}
}
},
"BouncyCastle.NetCore/1.8.3"
:
{
"dependencies"
:
{
"NETStandard.Library"
:
"1.6.1"
,
...
...
@@ -890,6 +909,39 @@
}
}
},
"SkiaSharp/2.80.1"
:
{
"dependencies"
:
{
"System.Memory"
:
"4.5.3"
},
"runtime"
:
{
"lib/netstandard2.0/SkiaSharp.dll"
:
{
"assemblyVersion"
:
"2.80.0.0"
,
"fileVersion"
:
"2.80.1.0"
}
},
"runtimeTargets"
:
{
"runtimes/osx/native/libSkiaSharp.dylib"
:
{
"rid"
:
"osx"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-arm64/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-arm64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-x64/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-x64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-x86/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-x86"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
}
}
},
"SSH.NET/2016.1.0"
:
{
"dependencies"
:
{
"Microsoft.CSharp"
:
"4.5.0"
,
...
...
@@ -1917,6 +1969,7 @@
},
"Edu.Common/1.0.0"
:
{
"dependencies"
:
{
"Aspose.Words"
:
"21.1.0"
,
"Microsoft.AspNetCore.Http"
:
"2.2.2"
,
"Microsoft.AspNetCore.Mvc.Formatters.Json"
:
"2.2.0"
,
"Microsoft.Extensions.Configuration"
:
"3.1.8"
,
...
...
@@ -1936,6 +1989,13 @@
"serviceable"
:
false
,
"sha512"
:
""
},
"Aspose.Words/21.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-BM2BJz3b8uvN6KzVNSwwrtt0SXQcmzRZ0Cbq6lLOgzCS1fCpS3ieQt2TfeEw3OtvZpNVEWLuJGo1YqQJpMh9Dw=="
,
"path"
:
"aspose.words/21.1.0"
,
"hashPath"
:
"aspose.words.21.1.0.nupkg.sha512"
},
"BouncyCastle.NetCore/1.8.3"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
...
...
@@ -2503,6 +2563,13 @@
"path"
:
"sharpziplib/1.2.0"
,
"hashPath"
:
"sharpziplib.1.2.0.nupkg.sha512"
},
"SkiaSharp/2.80.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-CiQwnDzG+1JNGzjAN9G/9n/lJgUVA/NPOFgSlEtu6c7qQ0O7P1tMjrXp/+PtWfX0xyyY9ABsFAZK2kW34U7r/A=="
,
"path"
:
"skiasharp/2.80.1"
,
"hashPath"
:
"skiasharp.2.80.1.nupkg.sha512"
},
"SSH.NET/2016.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
...
...
Edu.Repository/bin/Release/netcoreapp3.0/Edu.Repository.deps.json
View file @
d73405c0
...
...
@@ -16,6 +16,25 @@
"Edu.Repository.dll"
:
{}
}
},
"Aspose.Words/21.1.0"
:
{
"dependencies"
:
{
"Microsoft.Win32.Registry"
:
"4.7.0"
,
"SkiaSharp"
:
"2.80.1"
,
"System.Reflection.Emit"
:
"4.3.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.3.0"
,
"System.Text.Encoding.CodePages"
:
"4.7.0"
},
"runtime"
:
{
"lib/netstandard2.0/Aspose.Words.Pdf2Word.dll"
:
{
"assemblyVersion"
:
"21.1.0.0"
,
"fileVersion"
:
"21.1.0.0"
},
"lib/netstandard2.0/Aspose.Words.dll"
:
{
"assemblyVersion"
:
"21.1.0.0"
,
"fileVersion"
:
"21.1.0.0"
}
}
},
"BouncyCastle.NetCore/1.8.3"
:
{
"dependencies"
:
{
"NETStandard.Library"
:
"1.6.1"
,
...
...
@@ -891,6 +910,39 @@
}
}
},
"SkiaSharp/2.80.1"
:
{
"dependencies"
:
{
"System.Memory"
:
"4.5.3"
},
"runtime"
:
{
"lib/netstandard2.0/SkiaSharp.dll"
:
{
"assemblyVersion"
:
"2.80.0.0"
,
"fileVersion"
:
"2.80.1.0"
}
},
"runtimeTargets"
:
{
"runtimes/osx/native/libSkiaSharp.dylib"
:
{
"rid"
:
"osx"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-arm64/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-arm64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-x64/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-x64"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
},
"runtimes/win-x86/native/libSkiaSharp.dll"
:
{
"rid"
:
"win-x86"
,
"assetType"
:
"native"
,
"fileVersion"
:
"0.0.0.0"
}
}
},
"SSH.NET/2016.1.0"
:
{
"dependencies"
:
{
"Microsoft.CSharp"
:
"4.5.0"
,
...
...
@@ -1918,6 +1970,7 @@
},
"Edu.Common/1.0.0"
:
{
"dependencies"
:
{
"Aspose.Words"
:
"21.1.0"
,
"Microsoft.AspNetCore.Http"
:
"2.2.2"
,
"Microsoft.AspNetCore.Mvc.Formatters.Json"
:
"2.2.0"
,
"Microsoft.Extensions.Configuration"
:
"3.1.8"
,
...
...
@@ -1946,6 +1999,13 @@
"serviceable"
:
false
,
"sha512"
:
""
},
"Aspose.Words/21.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-BM2BJz3b8uvN6KzVNSwwrtt0SXQcmzRZ0Cbq6lLOgzCS1fCpS3ieQt2TfeEw3OtvZpNVEWLuJGo1YqQJpMh9Dw=="
,
"path"
:
"aspose.words/21.1.0"
,
"hashPath"
:
"aspose.words.21.1.0.nupkg.sha512"
},
"BouncyCastle.NetCore/1.8.3"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
...
...
@@ -2513,6 +2573,13 @@
"path"
:
"sharpziplib/1.2.0"
,
"hashPath"
:
"sharpziplib.1.2.0.nupkg.sha512"
},
"SkiaSharp/2.80.1"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"sha512-CiQwnDzG+1JNGzjAN9G/9n/lJgUVA/NPOFgSlEtu6c7qQ0O7P1tMjrXp/+PtWfX0xyyY9ABsFAZK2kW34U7r/A=="
,
"path"
:
"skiasharp/2.80.1"
,
"hashPath"
:
"skiasharp.2.80.1.nupkg.sha512"
},
"SSH.NET/2016.1.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
...
...
Edu.WebApi/Controllers/Course/QuestionController.cs
View file @
d73405c0
...
...
@@ -824,5 +824,19 @@ namespace Edu.WebApi.Controllers.Course
return
model
;
}
/// <summary>
/// 解析Word
/// </summary>
/// <param name="filePath"></param>
/// <param name="CourseId"></param>
/// <param name="Uid"></param>
/// <returns></returns>
public
ApiResult
ImportWordQuestion
(
string
filePath
,
int
CourseId
,
int
Uid
)
{
var
userInfo
=
base
.
GetUserInfo
(
Uid
);
var
data
=
Common
.
Data
.
QuestionHelper
.
GetWordQuestionData
(
filePath
);
return
ApiResult
.
Success
();
}
}
}
\ No newline at end of file
Edu.WebApi/Controllers/Upload/UploadController.cs
View file @
d73405c0
...
...
@@ -38,10 +38,12 @@ namespace Edu.WebApi.Controllers.Upload
return
new
ApiResult
{
Code
=
(
int
)
ResultCode
.
Fail
,
Message
=
"未选择文件"
,
Data
=
""
};
}
var
json
=
!
string
.
IsNullOrEmpty
(
Request
.
Form
[
"params"
])
?
JObject
.
Parse
(
Request
.
Form
[
"params"
].
ToString
())
:
null
;
Int32
.
TryParse
(
json
[
"Analysis"
].
ToString
(),
out
int
Analysis
);
Int32
.
TryParse
(
json
[
"Excel"
].
ToString
(),
out
int
Excel
);
Int32
.
TryParse
(
json
[
"CourseId"
].
ToString
(),
out
int
CourseId
);
Int32
.
TryParse
(
json
[
"Uid"
].
ToString
(),
out
int
Uid
);
Int32
.
TryParse
((
json
[
"Analysis"
]!=
null
?
json
[
"Analysis"
].
ToString
():
"0"
),
out
int
Analysis
);
Int32
.
TryParse
((
json
[
"Excel"
]
!=
null
?
json
[
"Excel"
].
ToString
()
:
"0"
),
out
int
Excel
);
Int32
.
TryParse
((
json
[
"Word"
]
!=
null
?
json
[
"Word"
].
ToString
()
:
"0"
),
out
int
Word
);
Int32
.
TryParse
((
json
[
"CourseId"
]
!=
null
?
json
[
"CourseId"
].
ToString
()
:
"0"
),
out
int
CourseId
);
Int32
.
TryParse
((
json
[
"Uid"
]
!=
null
?
json
[
"Uid"
].
ToString
()
:
"0"
),
out
int
Uid
);
string
filename
=
files
[
0
].
FileName
;
string
fileExtention
=
System
.
IO
.
Path
.
GetExtension
(
files
[
0
].
FileName
);
...
...
@@ -58,10 +60,11 @@ namespace Edu.WebApi.Controllers.Upload
}
string
path
=
Guid
.
NewGuid
().
ToString
()
+
fileExtention
;
string
basepath
=
AppContext
.
BaseDirectory
;
string
path_server
=
basepath
+
"\\upfile\\temporary\\"
+
path
;
if
(!
Directory
.
Exists
(
basepath
+
"\\upfile\\temporary"
))
string
tempPath
=
basepath
+
"\\upfile\\temporary\\"
+
DateTime
.
Now
.
ToString
(
"yyyyMMdd"
)+
"\\"
;
string
path_server
=
tempPath
+
path
;
if
(!
Directory
.
Exists
(
tempPath
))
{
Directory
.
CreateDirectory
(
basepath
+
"\\upfile\\temporary"
);
Directory
.
CreateDirectory
(
tempPath
);
}
using
(
FileStream
fstream
=
new
FileStream
(
path_server
,
FileMode
.
OpenOrCreate
,
FileAccess
.
ReadWrite
))
{
...
...
@@ -73,6 +76,11 @@ namespace Edu.WebApi.Controllers.Upload
{
return
new
QuestionController
().
ImportExcelQuestion
(
path_server
,
CourseId
,
Uid
);
}
//导入Word文件
if
(
Analysis
==
1
&&
Word
==
1
&&
CourseId
>
0
)
{
return
new
QuestionController
().
ImportWordQuestion
(
path_server
,
CourseId
,
Uid
);
}
return
ApiResult
.
Success
(
""
,
new
{
Name
=
filename
,
Path
=
path_server
});
}
catch
(
Exception
ex
)
...
...
Edu.WebApi/Edu.WebApi.csproj
View file @
d73405c0
...
...
@@ -18,6 +18,7 @@
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Aspose.Words" Version="21.1.0" />
<PackageReference Include="JWT" Version="5.3.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment