Skip to content

Commit

Permalink
UNTESTED: Update VMFII and add --instancedir to fix pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
Python1320 committed Dec 7, 2024
1 parent 708c967 commit 4c92d73
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LAUNCH compile.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ set TESTBUILD=1

@echo %NL% # VMF Merging 

extras\vmfii "%targetvmf%" "%targetvmf%" --fgd "%FGDS%" >> %mapfolder%\%mapname%.log
extras\vmfii "%targetvmf%" "%targetvmf%" --instancedir "%mapfolder%" --fgd "%FGDS%" >> %mapfolder%\%mapname%.log
@if ERRORLEVEL 1 goto failed


Expand Down
70 changes: 70 additions & 0 deletions extras/vmfii.deps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"vmfii/1.0.0": {
"dependencies": {
"Sledge.Formats.GameData": "1.1.3"
},
"runtime": {
"vmfii.dll": {}
}
},
"Sledge.Formats/1.1.0": {
"dependencies": {
"System.Numerics.Vectors": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Sledge.Formats.dll": {
"assemblyVersion": "1.1.0.0",
"fileVersion": "1.1.0.0"
}
}
},
"Sledge.Formats.GameData/1.1.3": {
"dependencies": {
"Sledge.Formats": "1.1.0"
},
"runtime": {
"lib/netstandard2.0/Sledge.Formats.GameData.dll": {
"assemblyVersion": "1.1.3.0",
"fileVersion": "1.1.3.0"
}
}
},
"System.Numerics.Vectors/4.5.0": {}
}
},
"libraries": {
"vmfii/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Sledge.Formats/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kf+U49o8m1UBayCUtJs3NPcOOIUdh6qoNbXmTWaN7puyq2oe0i2DEqb3TzXyI7m0kpdFHUhUu8Dnw+5qMmPytA==",
"path": "sledge.formats/1.1.0",
"hashPath": "sledge.formats.1.1.0.nupkg.sha512"
},
"Sledge.Formats.GameData/1.1.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qjAFs19K6E7oo8UmHNElFHcGF6Q34sRmDuVDJDRHBZ0y7Oc84Sx88UymtFajBzwB9vCwhB6/aeBrzn6EtS2HeQ==",
"path": "sledge.formats.gamedata/1.1.3",
"hashPath": "sledge.formats.gamedata.1.1.3.nupkg.sha512"
},
"System.Numerics.Vectors/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
"path": "system.numerics.vectors/4.5.0",
"hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
}
}
}
Binary file added extras/vmfii.dll
Binary file not shown.
Binary file modified extras/vmfii.exe
Binary file not shown.
13 changes: 13 additions & 0 deletions extras/vmfii.runtimeconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

0 comments on commit 4c92d73

Please sign in to comment.