Initial commit: add all skills files
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\MiniMaxAIDocx.Core\MiniMaxAIDocx.Core.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.CommandLine" Version="2.0.5" />
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<NeutralLanguage>en</NeutralLanguage>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
18
minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/Program.cs
Normal file
18
minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/Program.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.CommandLine;
|
||||
using MiniMaxAIDocx.Core.Commands;
|
||||
|
||||
var rootCommand = new RootCommand("minimax-docx: OpenXML document generation and manipulation CLI");
|
||||
|
||||
// Scenario commands
|
||||
rootCommand.Add(CreateCommand.Create());
|
||||
rootCommand.Add(EditContentCommand.Create());
|
||||
rootCommand.Add(ApplyTemplateCommand.Create());
|
||||
|
||||
// Tool commands
|
||||
rootCommand.Add(ValidateCommand.Create());
|
||||
rootCommand.Add(MergeRunsCommand.Create());
|
||||
rootCommand.Add(FixOrderCommand.Create());
|
||||
rootCommand.Add(AnalyzeCommand.Create());
|
||||
rootCommand.Add(DiffCommand.Create());
|
||||
|
||||
return rootCommand.Parse(args).Invoke();
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,151 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"MiniMaxAIDocx.Cli/1.0.0": {
|
||||
"dependencies": {
|
||||
"MiniMaxAIDocx.Core": "1.0.0",
|
||||
"System.CommandLine": "2.0.5"
|
||||
},
|
||||
"runtime": {
|
||||
"MiniMaxAIDocx.Cli.dll": {}
|
||||
}
|
||||
},
|
||||
"DocumentFormat.OpenXml/3.5.1": {
|
||||
"dependencies": {
|
||||
"DocumentFormat.OpenXml.Framework": "3.5.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/DocumentFormat.OpenXml.dll": {
|
||||
"assemblyVersion": "3.5.1.0",
|
||||
"fileVersion": "3.5.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DocumentFormat.OpenXml.Framework/3.5.1": {
|
||||
"dependencies": {
|
||||
"System.IO.Packaging": "8.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/DocumentFormat.OpenXml.Framework.dll": {
|
||||
"assemblyVersion": "3.5.1.0",
|
||||
"fileVersion": "3.5.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.CommandLine/2.0.5": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.CommandLine.dll": {
|
||||
"assemblyVersion": "2.0.5.0",
|
||||
"fileVersion": "2.0.526.15411"
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"lib/net8.0/cs/System.CommandLine.resources.dll": {
|
||||
"locale": "cs"
|
||||
},
|
||||
"lib/net8.0/de/System.CommandLine.resources.dll": {
|
||||
"locale": "de"
|
||||
},
|
||||
"lib/net8.0/es/System.CommandLine.resources.dll": {
|
||||
"locale": "es"
|
||||
},
|
||||
"lib/net8.0/fr/System.CommandLine.resources.dll": {
|
||||
"locale": "fr"
|
||||
},
|
||||
"lib/net8.0/it/System.CommandLine.resources.dll": {
|
||||
"locale": "it"
|
||||
},
|
||||
"lib/net8.0/ja/System.CommandLine.resources.dll": {
|
||||
"locale": "ja"
|
||||
},
|
||||
"lib/net8.0/ko/System.CommandLine.resources.dll": {
|
||||
"locale": "ko"
|
||||
},
|
||||
"lib/net8.0/pl/System.CommandLine.resources.dll": {
|
||||
"locale": "pl"
|
||||
},
|
||||
"lib/net8.0/pt-BR/System.CommandLine.resources.dll": {
|
||||
"locale": "pt-BR"
|
||||
},
|
||||
"lib/net8.0/ru/System.CommandLine.resources.dll": {
|
||||
"locale": "ru"
|
||||
},
|
||||
"lib/net8.0/tr/System.CommandLine.resources.dll": {
|
||||
"locale": "tr"
|
||||
},
|
||||
"lib/net8.0/zh-Hans/System.CommandLine.resources.dll": {
|
||||
"locale": "zh-Hans"
|
||||
},
|
||||
"lib/net8.0/zh-Hant/System.CommandLine.resources.dll": {
|
||||
"locale": "zh-Hant"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.IO.Packaging/8.0.1": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.IO.Packaging.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.1024.46610"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MiniMaxAIDocx.Core/1.0.0": {
|
||||
"dependencies": {
|
||||
"DocumentFormat.OpenXml": "3.5.1",
|
||||
"System.CommandLine": "2.0.5"
|
||||
},
|
||||
"runtime": {
|
||||
"MiniMaxAIDocx.Core.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"MiniMaxAIDocx.Cli/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"DocumentFormat.OpenXml/3.5.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-zxdOf5VVCe/uNklbRhj8dVBzQGj3DoqkUuqOp9cAZVuN8mNYDjof1lvSQA2OQNr8Ptc9d7pbA7Azq/ReaI3FpA==",
|
||||
"path": "documentformat.openxml/3.5.1",
|
||||
"hashPath": "documentformat.openxml.3.5.1.nupkg.sha512"
|
||||
},
|
||||
"DocumentFormat.OpenXml.Framework/3.5.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-U5txtc3ORno73xQx9Lf2gWzfaSZnZwKHfLkTAslhlew9lxe5XbUiCt0dY1fHeAf8yRqszUAe5i/+xLC9R/Xfsw==",
|
||||
"path": "documentformat.openxml.framework/3.5.1",
|
||||
"hashPath": "documentformat.openxml.framework.3.5.1.nupkg.sha512"
|
||||
},
|
||||
"System.CommandLine/2.0.5": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-2XtWAPk1G6arpe3OCFNrYYuf6iIboznxs2elJSGgd8e0euou7LfGYFon6hBEfDWNtOLr0M3+oUVgy1a5EGa41A==",
|
||||
"path": "system.commandline/2.0.5",
|
||||
"hashPath": "system.commandline.2.0.5.nupkg.sha512"
|
||||
},
|
||||
"System.IO.Packaging/8.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==",
|
||||
"path": "system.io.packaging/8.0.1",
|
||||
"hashPath": "system.io.packaging.8.0.1.nupkg.sha512"
|
||||
},
|
||||
"MiniMaxAIDocx.Core/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("MiniMaxAIDocx.Cli")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e3ce8892f0b979e6cb59331f8fb7ae47bb64cb4f")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("MiniMaxAIDocx.Cli")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("MiniMaxAIDocx.Cli")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Resources.NeutralResourcesLanguageAttribute("en")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
e56aa33652107fd02ce9b20ef9cc8604bbd8376ad519a91571001d9836e4f073
|
||||
@@ -0,0 +1,17 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = MiniMaxAIDocx.Cli
|
||||
build_property.ProjectDir = /Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
@@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
fc989195ef015cac70b62f9ab35f0935138882819f5434f1b8896ac43d1f3dbf
|
||||
@@ -0,0 +1,36 @@
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/MiniMaxAIDocx.Cli
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/MiniMaxAIDocx.Cli.deps.json
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/MiniMaxAIDocx.Cli.runtimeconfig.json
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/MiniMaxAIDocx.Cli.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/MiniMaxAIDocx.Cli.pdb
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/DocumentFormat.OpenXml.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/DocumentFormat.OpenXml.Framework.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/System.CommandLine.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/System.IO.Packaging.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/cs/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/de/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/es/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/fr/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/it/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/ja/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/ko/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/pl/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/pt-BR/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/ru/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/tr/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/zh-Hans/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/zh-Hant/System.CommandLine.resources.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/MiniMaxAIDocx.Core.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/bin/Debug/net8.0/MiniMaxAIDocx.Core.pdb
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxAIDocx.Cli.csproj.AssemblyReference.cache
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxAIDocx.Cli.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxAIDocx.Cli.AssemblyInfoInputs.cache
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxAIDocx.Cli.AssemblyInfo.cs
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxAIDocx.Cli.csproj.CoreCompileInputs.cache
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxAIDocx.Cli.sourcelink.json
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxA.5028F715.Up2Date
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxAIDocx.Cli.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/refint/MiniMaxAIDocx.Cli.dll
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxAIDocx.Cli.pdb
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/MiniMaxAIDocx.Cli.genruntimeconfig.cache
|
||||
/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/Debug/net8.0/ref/MiniMaxAIDocx.Cli.dll
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
e0702230bb138c003114429fb635d284a0ba3bf94bb8f9a33fcfaa458c1c06ab
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"documents":{"/Users/minimax/mmo/skills/*":"https://raw.githubusercontent.com/MiniMax-AI/skills/e3ce8892f0b979e6cb59331f8fb7ae47bb64cb4f/*"}}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,172 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj",
|
||||
"projectName": "MiniMaxAIDocx.Cli",
|
||||
"projectPath": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj",
|
||||
"packagesPath": "/Users/minimax/.nuget/packages/",
|
||||
"outputPath": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/Users/minimax/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"/opt/homebrew/Cellar/dotnet/10.0.102/libexec/library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj": {
|
||||
"projectPath": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"System.CommandLine": {
|
||||
"target": "Package",
|
||||
"version": "[2.0.5, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[8.0.23, 8.0.23]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Host.osx-arm64",
|
||||
"version": "[8.0.23, 8.0.23]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[8.0.23, 8.0.23]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/opt/homebrew/Cellar/dotnet/10.0.102/libexec/sdk/10.0.102/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj",
|
||||
"projectName": "MiniMaxAIDocx.Core",
|
||||
"projectPath": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj",
|
||||
"packagesPath": "/Users/minimax/.nuget/packages/",
|
||||
"outputPath": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/Users/minimax/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"/opt/homebrew/Cellar/dotnet/10.0.102/libexec/library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"DocumentFormat.OpenXml": {
|
||||
"target": "Package",
|
||||
"version": "[3.5.1, )"
|
||||
},
|
||||
"System.CommandLine": {
|
||||
"target": "Package",
|
||||
"version": "[2.0.5, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[8.0.23, 8.0.23]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[8.0.23, 8.0.23]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/opt/homebrew/Cellar/dotnet/10.0.102/libexec/sdk/10.0.102/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/minimax/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/minimax/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/Users/minimax/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
@@ -0,0 +1,349 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net8.0": {
|
||||
"DocumentFormat.OpenXml/3.5.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"DocumentFormat.OpenXml.Framework": "3.5.1"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/DocumentFormat.OpenXml.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/DocumentFormat.OpenXml.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DocumentFormat.OpenXml.Framework/3.5.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"System.IO.Packaging": "8.0.1"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/DocumentFormat.OpenXml.Framework.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/DocumentFormat.OpenXml.Framework.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.CommandLine/2.0.5": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/System.CommandLine.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.CommandLine.dll": {
|
||||
"related": ".pdb;.xml"
|
||||
}
|
||||
},
|
||||
"resource": {
|
||||
"lib/net8.0/cs/System.CommandLine.resources.dll": {
|
||||
"locale": "cs"
|
||||
},
|
||||
"lib/net8.0/de/System.CommandLine.resources.dll": {
|
||||
"locale": "de"
|
||||
},
|
||||
"lib/net8.0/es/System.CommandLine.resources.dll": {
|
||||
"locale": "es"
|
||||
},
|
||||
"lib/net8.0/fr/System.CommandLine.resources.dll": {
|
||||
"locale": "fr"
|
||||
},
|
||||
"lib/net8.0/it/System.CommandLine.resources.dll": {
|
||||
"locale": "it"
|
||||
},
|
||||
"lib/net8.0/ja/System.CommandLine.resources.dll": {
|
||||
"locale": "ja"
|
||||
},
|
||||
"lib/net8.0/ko/System.CommandLine.resources.dll": {
|
||||
"locale": "ko"
|
||||
},
|
||||
"lib/net8.0/pl/System.CommandLine.resources.dll": {
|
||||
"locale": "pl"
|
||||
},
|
||||
"lib/net8.0/pt-BR/System.CommandLine.resources.dll": {
|
||||
"locale": "pt-BR"
|
||||
},
|
||||
"lib/net8.0/ru/System.CommandLine.resources.dll": {
|
||||
"locale": "ru"
|
||||
},
|
||||
"lib/net8.0/tr/System.CommandLine.resources.dll": {
|
||||
"locale": "tr"
|
||||
},
|
||||
"lib/net8.0/zh-Hans/System.CommandLine.resources.dll": {
|
||||
"locale": "zh-Hans"
|
||||
},
|
||||
"lib/net8.0/zh-Hant/System.CommandLine.resources.dll": {
|
||||
"locale": "zh-Hant"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.IO.Packaging/8.0.1": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/System.IO.Packaging.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.IO.Packaging.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net6.0/_._": {}
|
||||
}
|
||||
},
|
||||
"MiniMaxAIDocx.Core/1.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v8.0",
|
||||
"dependencies": {
|
||||
"DocumentFormat.OpenXml": "3.5.1",
|
||||
"System.CommandLine": "2.0.5"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/MiniMaxAIDocx.Core.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/MiniMaxAIDocx.Core.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"DocumentFormat.OpenXml/3.5.1": {
|
||||
"sha512": "zxdOf5VVCe/uNklbRhj8dVBzQGj3DoqkUuqOp9cAZVuN8mNYDjof1lvSQA2OQNr8Ptc9d7pbA7Azq/ReaI3FpA==",
|
||||
"type": "package",
|
||||
"path": "documentformat.openxml/3.5.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"README.md",
|
||||
"documentformat.openxml.3.5.1.nupkg.sha512",
|
||||
"documentformat.openxml.nuspec",
|
||||
"icon.png",
|
||||
"lib/net10.0/DocumentFormat.OpenXml.dll",
|
||||
"lib/net10.0/DocumentFormat.OpenXml.xml",
|
||||
"lib/net35/DocumentFormat.OpenXml.dll",
|
||||
"lib/net35/DocumentFormat.OpenXml.xml",
|
||||
"lib/net40/DocumentFormat.OpenXml.dll",
|
||||
"lib/net40/DocumentFormat.OpenXml.xml",
|
||||
"lib/net46/DocumentFormat.OpenXml.dll",
|
||||
"lib/net46/DocumentFormat.OpenXml.xml",
|
||||
"lib/net8.0/DocumentFormat.OpenXml.dll",
|
||||
"lib/net8.0/DocumentFormat.OpenXml.xml",
|
||||
"lib/netstandard2.0/DocumentFormat.OpenXml.dll",
|
||||
"lib/netstandard2.0/DocumentFormat.OpenXml.xml"
|
||||
]
|
||||
},
|
||||
"DocumentFormat.OpenXml.Framework/3.5.1": {
|
||||
"sha512": "U5txtc3ORno73xQx9Lf2gWzfaSZnZwKHfLkTAslhlew9lxe5XbUiCt0dY1fHeAf8yRqszUAe5i/+xLC9R/Xfsw==",
|
||||
"type": "package",
|
||||
"path": "documentformat.openxml.framework/3.5.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"README.md",
|
||||
"documentformat.openxml.framework.3.5.1.nupkg.sha512",
|
||||
"documentformat.openxml.framework.nuspec",
|
||||
"icon.png",
|
||||
"lib/net10.0/DocumentFormat.OpenXml.Framework.dll",
|
||||
"lib/net10.0/DocumentFormat.OpenXml.Framework.xml",
|
||||
"lib/net35/DocumentFormat.OpenXml.Framework.dll",
|
||||
"lib/net35/DocumentFormat.OpenXml.Framework.xml",
|
||||
"lib/net40/DocumentFormat.OpenXml.Framework.dll",
|
||||
"lib/net40/DocumentFormat.OpenXml.Framework.xml",
|
||||
"lib/net46/DocumentFormat.OpenXml.Framework.dll",
|
||||
"lib/net46/DocumentFormat.OpenXml.Framework.xml",
|
||||
"lib/net6.0/DocumentFormat.OpenXml.Framework.dll",
|
||||
"lib/net6.0/DocumentFormat.OpenXml.Framework.xml",
|
||||
"lib/net8.0/DocumentFormat.OpenXml.Framework.dll",
|
||||
"lib/net8.0/DocumentFormat.OpenXml.Framework.xml",
|
||||
"lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll",
|
||||
"lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml"
|
||||
]
|
||||
},
|
||||
"System.CommandLine/2.0.5": {
|
||||
"sha512": "2XtWAPk1G6arpe3OCFNrYYuf6iIboznxs2elJSGgd8e0euou7LfGYFon6hBEfDWNtOLr0M3+oUVgy1a5EGa41A==",
|
||||
"type": "package",
|
||||
"path": "system.commandline/2.0.5",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"README.md",
|
||||
"lib/net8.0/System.CommandLine.dll",
|
||||
"lib/net8.0/System.CommandLine.pdb",
|
||||
"lib/net8.0/System.CommandLine.xml",
|
||||
"lib/net8.0/cs/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/de/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/es/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/fr/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/it/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/ja/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/ko/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/pl/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/pt-BR/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/ru/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/tr/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/zh-Hans/System.CommandLine.resources.dll",
|
||||
"lib/net8.0/zh-Hant/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/System.CommandLine.dll",
|
||||
"lib/netstandard2.0/System.CommandLine.pdb",
|
||||
"lib/netstandard2.0/System.CommandLine.xml",
|
||||
"lib/netstandard2.0/cs/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/de/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/es/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/fr/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/it/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/ja/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/ko/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/pl/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/pt-BR/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/ru/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/tr/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/zh-Hans/System.CommandLine.resources.dll",
|
||||
"lib/netstandard2.0/zh-Hant/System.CommandLine.resources.dll",
|
||||
"system.commandline.2.0.5.nupkg.sha512",
|
||||
"system.commandline.nuspec"
|
||||
]
|
||||
},
|
||||
"System.IO.Packaging/8.0.1": {
|
||||
"sha512": "KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==",
|
||||
"type": "package",
|
||||
"path": "system.io.packaging/8.0.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net461/System.IO.Packaging.targets",
|
||||
"buildTransitive/net462/_._",
|
||||
"buildTransitive/net6.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/System.IO.Packaging.targets",
|
||||
"lib/net462/System.IO.Packaging.dll",
|
||||
"lib/net462/System.IO.Packaging.xml",
|
||||
"lib/net6.0/System.IO.Packaging.dll",
|
||||
"lib/net6.0/System.IO.Packaging.xml",
|
||||
"lib/net7.0/System.IO.Packaging.dll",
|
||||
"lib/net7.0/System.IO.Packaging.xml",
|
||||
"lib/net8.0/System.IO.Packaging.dll",
|
||||
"lib/net8.0/System.IO.Packaging.xml",
|
||||
"lib/netstandard2.0/System.IO.Packaging.dll",
|
||||
"lib/netstandard2.0/System.IO.Packaging.xml",
|
||||
"system.io.packaging.8.0.1.nupkg.sha512",
|
||||
"system.io.packaging.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"MiniMaxAIDocx.Core/1.0.0": {
|
||||
"type": "project",
|
||||
"path": "../MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj",
|
||||
"msbuildProject": "../MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj"
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net8.0": [
|
||||
"MiniMaxAIDocx.Core >= 1.0.0",
|
||||
"System.CommandLine >= 2.0.5"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"/Users/minimax/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj",
|
||||
"projectName": "MiniMaxAIDocx.Cli",
|
||||
"projectPath": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj",
|
||||
"packagesPath": "/Users/minimax/.nuget/packages/",
|
||||
"outputPath": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/Users/minimax/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"/opt/homebrew/Cellar/dotnet/10.0.102/libexec/library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj": {
|
||||
"projectPath": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.100"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"System.CommandLine": {
|
||||
"target": "Package",
|
||||
"version": "[2.0.5, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[8.0.23, 8.0.23]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Host.osx-arm64",
|
||||
"version": "[8.0.23, 8.0.23]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Ref",
|
||||
"version": "[8.0.23, 8.0.23]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/opt/homebrew/Cellar/dotnet/10.0.102/libexec/sdk/10.0.102/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "QtMS9y8qVZI=",
|
||||
"success": true,
|
||||
"projectFilePath": "/Users/minimax/mmo/skills/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/Users/minimax/.nuget/packages/documentformat.openxml/3.5.1/documentformat.openxml.3.5.1.nupkg.sha512",
|
||||
"/Users/minimax/.nuget/packages/documentformat.openxml.framework/3.5.1/documentformat.openxml.framework.3.5.1.nupkg.sha512",
|
||||
"/Users/minimax/.nuget/packages/system.commandline/2.0.5/system.commandline.2.0.5.nupkg.sha512",
|
||||
"/Users/minimax/.nuget/packages/system.io.packaging/8.0.1/system.io.packaging.8.0.1.nupkg.sha512",
|
||||
"/Users/minimax/.nuget/packages/microsoft.netcore.app.ref/8.0.23/microsoft.netcore.app.ref.8.0.23.nupkg.sha512",
|
||||
"/Users/minimax/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.23/microsoft.aspnetcore.app.ref.8.0.23.nupkg.sha512",
|
||||
"/Users/minimax/.nuget/packages/microsoft.netcore.app.host.osx-arm64/8.0.23/microsoft.netcore.app.host.osx-arm64.8.0.23.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user