feat: 添加热键自定义修改支持
This commit is contained in:
13
.idea/.idea.DuckovMods/.idea/.gitignore
generated
vendored
Normal file
13
.idea/.idea.DuckovMods/.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# 默认忽略的文件
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Rider 忽略的文件
|
||||||
|
/contentModel.xml
|
||||||
|
/.idea.DuckovMods.iml
|
||||||
|
/projectSettingsUpdater.xml
|
||||||
|
/modules.xml
|
||||||
|
# 基于编辑器的 HTTP 客户端请求
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
8
.idea/.idea.DuckovMods/.idea/indexLayout.xml
generated
Normal file
8
.idea/.idea.DuckovMods/.idea/indexLayout.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="UserContentModel">
|
||||||
|
<attachedFolders />
|
||||||
|
<explicitIncludes />
|
||||||
|
<explicitExcludes />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
6
.idea/.idea.DuckovMods/.idea/vcs.xml
generated
Normal file
6
.idea/.idea.DuckovMods/.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
@@ -5,14 +5,20 @@
|
|||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<Authors>折纸的小箱子</Authors>
|
<Authors>折纸的小箱子</Authors>
|
||||||
<AssemblyVersion>1.0.0</AssemblyVersion>
|
<AssemblyVersion>1.0.1</AssemblyVersion>
|
||||||
<DuckovPath>D:\steam\steamapps\common\Escape from Duckov</DuckovPath>
|
<DuckovPath>D:\steam\steamapps\common\Escape from Duckov</DuckovPath>
|
||||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
<ImplicitUsings>disable</ImplicitUsings>
|
<ImplicitUsings>disable</ImplicitUsings>
|
||||||
|
<Version>1.0.1</Version>
|
||||||
|
<Title>隐藏角色</Title>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||||
<OutputPath>D:\steam\steamapps\common\Escape from Duckov\Duckov_Data\Mods\HideCharacter</OutputPath>
|
<OutputPath>D:\steam\steamapps\common\Escape from Duckov\Duckov_Data\Mods\HideCharacter</OutputPath>
|
||||||
|
<!-- 禁用生成 deps.json 文件 -->
|
||||||
|
<GenerateDependencyFile>false</GenerateDependencyFile>
|
||||||
|
<!-- 禁用生成 .pdb 调试符号文件 -->
|
||||||
|
<DebugType>none</DebugType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ namespace HideCharacter
|
|||||||
|
|
||||||
private void Update()
|
private void Update()
|
||||||
{
|
{
|
||||||
if (Input.GetKeyDown(KeyCode.F5))
|
if (Input.GetKeyDown(hideList?.hotkey ?? KeyCode.F5))
|
||||||
{
|
{
|
||||||
hide = !hide;
|
hide = !hide;
|
||||||
SetCharacterHide(hide);
|
SetCharacterHide(hide);
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
|
using UnityEngine;
|
||||||
|
|
||||||
namespace HideCharacter
|
namespace HideCharacter
|
||||||
{
|
{
|
||||||
|
|
||||||
public class HideList
|
public class HideList
|
||||||
{
|
{
|
||||||
|
public KeyCode hotkey = KeyCode.F5;
|
||||||
|
|
||||||
public bool hideTail = true;
|
public bool hideTail = true;
|
||||||
public bool hideEyes = true;
|
public bool hideEyes = true;
|
||||||
public bool hideEyebrow = true;
|
public bool hideEyebrow = true;
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
{
|
{
|
||||||
"runtimeTarget": {
|
"runtimeTarget": {
|
||||||
"name": ".NETCoreApp,Version=v9.0",
|
"name": ".NETStandard,Version=v2.1/",
|
||||||
"signature": ""
|
"signature": ""
|
||||||
},
|
},
|
||||||
"compilationOptions": {},
|
"compilationOptions": {},
|
||||||
"targets": {
|
"targets": {
|
||||||
".NETCoreApp,Version=v9.0": {
|
".NETStandard,Version=v2.1": {},
|
||||||
|
".NETStandard,Version=v2.1/": {
|
||||||
"HideCharacter/1.0.0": {
|
"HideCharacter/1.0.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Lib.Harmony": "2.4.1",
|
"Lib.Harmony": "2.4.1",
|
||||||
@@ -17,24 +18,23 @@
|
|||||||
},
|
},
|
||||||
"Lib.Harmony/2.4.1": {
|
"Lib.Harmony/2.4.1": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"System.Text.Json": "9.0.1"
|
"Lib.Harmony.Ref": "2.4.1"
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net9.0/0Harmony.dll": {
|
|
||||||
"assemblyVersion": "2.4.1.0",
|
|
||||||
"fileVersion": "2.4.1.0"
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"Lib.Harmony.Ref/2.4.1": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Reflection.Emit": "4.7.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Newtonsoft.Json/13.0.4": {
|
"Newtonsoft.Json/13.0.4": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
||||||
"assemblyVersion": "13.0.0.0",
|
"assemblyVersion": "13.0.0.0",
|
||||||
"fileVersion": "13.0.4.30916"
|
"fileVersion": "13.0.4.30916"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Text.Json/9.0.1": {}
|
"System.Reflection.Emit/4.7.0": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libraries": {
|
"libraries": {
|
||||||
@@ -50,6 +50,13 @@
|
|||||||
"path": "lib.harmony/2.4.1",
|
"path": "lib.harmony/2.4.1",
|
||||||
"hashPath": "lib.harmony.2.4.1.nupkg.sha512"
|
"hashPath": "lib.harmony.2.4.1.nupkg.sha512"
|
||||||
},
|
},
|
||||||
|
"Lib.Harmony.Ref/2.4.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-+u1y2Qd6OlSUQ8JtrsrSo3adnAsrXMJ2YPYtbW+FAmdPI5yw34M9VX4bKl8ZwRuUzaGzZIz+oGMbn/yS4fWtZw==",
|
||||||
|
"path": "lib.harmony.ref/2.4.1",
|
||||||
|
"hashPath": "lib.harmony.ref.2.4.1.nupkg.sha512"
|
||||||
|
},
|
||||||
"Newtonsoft.Json/13.0.4": {
|
"Newtonsoft.Json/13.0.4": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -57,12 +64,12 @@
|
|||||||
"path": "newtonsoft.json/13.0.4",
|
"path": "newtonsoft.json/13.0.4",
|
||||||
"hashPath": "newtonsoft.json.13.0.4.nupkg.sha512"
|
"hashPath": "newtonsoft.json.13.0.4.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Text.Json/9.0.1": {
|
"System.Reflection.Emit/4.7.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
"sha512": "sha512-eqWHDZqYPv1PvuvoIIx5pF74plL3iEOZOl/0kQP+Y0TEbtgNnM2W6k8h8EPYs+LTJZsXuWa92n5W5sHTWvE3VA==",
|
"sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
|
||||||
"path": "system.text.json/9.0.1",
|
"path": "system.reflection.emit/4.7.0",
|
||||||
"hashPath": "system.text.json.9.0.1.nupkg.sha512"
|
"hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Binary file not shown.
Binary file not shown.
@@ -12,11 +12,11 @@ using System.Reflection;
|
|||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+67c886a904a55669c91d6b4d101ba669f1a59c5d")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+4f144bef9a53a82ec1d3853545c53fd70357c810")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("HideCharacter")]
|
[assembly: System.Reflection.AssemblyProductAttribute("HideCharacter")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("HideCharacter")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("HideCharacter")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.1")]
|
||||||
|
|
||||||
// 由 MSBuild WriteCodeFragment 类生成。
|
// 由 MSBuild WriteCodeFragment 类生成。
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
423a7b55d07af8fb848effe82fa4e72899cf064d03a0fb4c9600918ccf2d9009
|
fd76b68be9378d1c667546778ac0bd4b23218f667f0c3786b8ff56c86739a156
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
25b4fbc72e02fa26f694d23ed2f2e54f063851d37f15458c1d186fb4218ff1a3
|
550877d5c7f8c3d392c8fe9197974700440e729c966f37ad9d800284f2a8a83b
|
||||||
|
|||||||
@@ -10,3 +10,14 @@ D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Debug\HideCharacter.dll
|
|||||||
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Debug\refint\HideCharacter.dll
|
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Debug\refint\HideCharacter.dll
|
||||||
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Debug\HideCharacter.pdb
|
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Debug\HideCharacter.pdb
|
||||||
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Debug\ref\HideCharacter.dll
|
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Debug\ref\HideCharacter.dll
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\bin\Debug\HideCharacter.deps.json
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\bin\Debug\HideCharacter.dll
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\bin\Debug\HideCharacter.pdb
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Debug\HideCharacter.csproj.AssemblyReference.cache
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Debug\HideCharacter.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Debug\HideCharacter.AssemblyInfoInputs.cache
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Debug\HideCharacter.AssemblyInfo.cs
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Debug\HideCharacter.csproj.CoreCompileInputs.cache
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Debug\HideCharacter.sourcelink.json
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Debug\HideCharacter.dll
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Debug\HideCharacter.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
1
HideCharacter/obj/Debug/HideCharacter.sourcelink.json
Normal file
1
HideCharacter/obj/Debug/HideCharacter.sourcelink.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\vs_project\\DuckovMods\\*":"https://raw.githubusercontent.com/thisMiniBox/DuckovMods/4f144bef9a53a82ec1d3853545c53fd70357c810/*"}}
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Lenovo\.nuget\packages\;D:\vsShare\NuGetPackages</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Lenovo\.nuget\packages\;D:\vsShare\NuGetPackages</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.1</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="C:\Users\Lenovo\.nuget\packages\" />
|
<SourceRoot Include="C:\Users\Lenovo\.nuget\packages\" />
|
||||||
|
|||||||
@@ -12,11 +12,11 @@ using System.Reflection;
|
|||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+4f144bef9a53a82ec1d3853545c53fd70357c810")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("HideCharacter")]
|
[assembly: System.Reflection.AssemblyProductAttribute("HideCharacter")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("HideCharacter")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("HideCharacter")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.1")]
|
||||||
|
|
||||||
// 由 MSBuild WriteCodeFragment 类生成。
|
// 由 MSBuild WriteCodeFragment 类生成。
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
437a77986ec6f3a8f9a36a1880ef78a303cf6060d04e3fed2480735ab9210d4a
|
14e029994881d041e839335ca4e71b2faa426461f1264f07e559e0a157e7cb69
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
is_global = true
|
is_global = true
|
||||||
build_property.RootNamespace = HideCharacter
|
build_property.RootNamespace = HideCharacter
|
||||||
build_property.ProjectDir = D:\vs_project\ThirdPersonCamera\HideCharacter\
|
build_property.ProjectDir = D:\vs_project\DuckovMods\HideCharacter\
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
|||||||
Binary file not shown.
@@ -1,4 +1,3 @@
|
|||||||
D:\steam\steamapps\common\Escape from Duckov\Duckov_Data\Mods\HideCharacter\HideCharacter.deps.json
|
|
||||||
D:\steam\steamapps\common\Escape from Duckov\Duckov_Data\Mods\HideCharacter\HideCharacter.dll
|
D:\steam\steamapps\common\Escape from Duckov\Duckov_Data\Mods\HideCharacter\HideCharacter.dll
|
||||||
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.csproj.AssemblyReference.cache
|
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.csproj.AssemblyReference.cache
|
||||||
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.GeneratedMSBuildEditorConfig.editorconfig
|
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
@@ -6,5 +5,10 @@ D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.Assembly
|
|||||||
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.AssemblyInfo.cs
|
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.AssemblyInfo.cs
|
||||||
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.csproj.CoreCompileInputs.cache
|
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.csproj.CoreCompileInputs.cache
|
||||||
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.dll
|
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.dll
|
||||||
D:\steam\steamapps\common\Escape from Duckov\Duckov_Data\Mods\HideCharacter\HideCharacter.pdb
|
|
||||||
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.pdb
|
D:\vs_project\ThirdPersonCamera\HideCharacter\obj\Release\HideCharacter.pdb
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Release\HideCharacter.csproj.AssemblyReference.cache
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Release\HideCharacter.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Release\HideCharacter.AssemblyInfoInputs.cache
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Release\HideCharacter.AssemblyInfo.cs
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Release\HideCharacter.csproj.CoreCompileInputs.cache
|
||||||
|
D:\vs_project\DuckovMods\HideCharacter\obj\Release\HideCharacter.dll
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
"restore":{"projectUniqueName":"D:\\vs_project\\ThirdPersonCamera\\HideCharacter\\HideCharacter.csproj","projectName":"HideCharacter","projectPath":"D:\\vs_project\\ThirdPersonCamera\\HideCharacter\\HideCharacter.csproj","outputPath":"D:\\vs_project\\ThirdPersonCamera\\HideCharacter\\obj\\","projectStyle":"PackageReference","fallbackFolders":["D:\\vsShare\\NuGetPackages"],"originalTargetFrameworks":["netstandard2.1"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"Lib.Harmony":{"target":"Package","version":"[2.4.1, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.4, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.306\\RuntimeIdentifierGraph.json"}}
|
"restore":{"projectUniqueName":"D:\\vs_project\\DuckovMods\\HideCharacter\\HideCharacter.csproj","projectName":"HideCharacter","projectPath":"D:\\vs_project\\DuckovMods\\HideCharacter\\HideCharacter.csproj","outputPath":"D:\\vs_project\\DuckovMods\\HideCharacter\\obj\\","projectStyle":"PackageReference","fallbackFolders":["D:\\vsShare\\NuGetPackages"],"originalTargetFrameworks":["netstandard2.1"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"Lib.Harmony":{"target":"Package","version":"[2.4.1, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.4, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.306\\RuntimeIdentifierGraph.json"}}
|
||||||
@@ -1 +1 @@
|
|||||||
17619695316822345
|
17619862901687226
|
||||||
@@ -1 +1 @@
|
|||||||
17619695316822345
|
17619862901687226
|
||||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+67c886a904a55669c91d6b4d101ba669f1a59c5d")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+4f144bef9a53a82ec1d3853545c53fd70357c810")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("SceneSnapshot")]
|
[assembly: System.Reflection.AssemblyProductAttribute("SceneSnapshot")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("SceneSnapshot")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("SceneSnapshot")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
c40649a2db1e99856594eda4b1fa3d71f4abfa511ffb3c2e60408c3d3561c7e2
|
98f9f8b340ed0af9da5b4f94f49c93d88f476a71155382c59e1be1615e7d7260
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+4f144bef9a53a82ec1d3853545c53fd70357c810")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("SceneSnapshot")]
|
[assembly: System.Reflection.AssemblyProductAttribute("SceneSnapshot")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("SceneSnapshot")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("SceneSnapshot")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
41d9ea7fe27904c4107fb3269468e52ccc60f1ef9ff90e8ba447e9f3ce56b11c
|
dbfb96cc253ba4264bbcb48c78254549b1e1967f34e2335bb57e0728cfef0e5d
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
is_global = true
|
is_global = true
|
||||||
build_property.RootNamespace = SceneSnapshot
|
build_property.RootNamespace = SceneSnapshot
|
||||||
build_property.ProjectDir = D:\vs_project\ThirdPersonCamera\SceneSnapshot\
|
build_property.ProjectDir = D:\vs_project\DuckovMods\SceneSnapshot\
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
|||||||
Binary file not shown.
@@ -7,7 +7,7 @@
|
|||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Lenovo\.nuget\packages\;D:\vsShare\NuGetPackages</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Lenovo\.nuget\packages\;D:\vsShare\NuGetPackages</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.1</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="C:\Users\Lenovo\.nuget\packages\" />
|
<SourceRoot Include="C:\Users\Lenovo\.nuget\packages\" />
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
"restore":{"projectUniqueName":"D:\\vs_project\\ThirdPersonCamera\\SceneSnapshot\\SceneSnapshot.csproj","projectName":"SceneSnapshot","projectPath":"D:\\vs_project\\ThirdPersonCamera\\SceneSnapshot\\SceneSnapshot.csproj","outputPath":"D:\\vs_project\\ThirdPersonCamera\\SceneSnapshot\\obj\\","projectStyle":"PackageReference","fallbackFolders":["D:\\vsShare\\NuGetPackages"],"originalTargetFrameworks":["netstandard2.1"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"Lib.Harmony":{"suppressParent":"None","target":"Package","version":"[2.4.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.306\\RuntimeIdentifierGraph.json"}}
|
"restore":{"projectUniqueName":"D:\\vs_project\\DuckovMods\\SceneSnapshot\\SceneSnapshot.csproj","projectName":"SceneSnapshot","projectPath":"D:\\vs_project\\DuckovMods\\SceneSnapshot\\SceneSnapshot.csproj","outputPath":"D:\\vs_project\\DuckovMods\\SceneSnapshot\\obj\\","projectStyle":"PackageReference","fallbackFolders":["D:\\vsShare\\NuGetPackages"],"originalTargetFrameworks":["netstandard2.1"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"Lib.Harmony":{"suppressParent":"None","target":"Package","version":"[2.4.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.306\\RuntimeIdentifierGraph.json"}}
|
||||||
@@ -1 +1 @@
|
|||||||
17619682240672860
|
17619862901687226
|
||||||
@@ -1 +1 @@
|
|||||||
17619682240672860
|
17619862901687226
|
||||||
Reference in New Issue
Block a user