build: make release restore reproducible
This commit is contained in:
parent
b459e0cf0c
commit
c38f6b8852
129 changed files with 16810 additions and 188 deletions
|
|
@ -7,6 +7,6 @@
|
|||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" Version="2.1.7" />
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -445,7 +445,9 @@ static void DumpGfxObj(DatCollection dats, uint gfxObjId)
|
|||
$"classify: walls={walls} (outwardFacing={outwardWalls} inwardFacing={inwardWalls}) " +
|
||||
$"floors={floors} ceilings={ceilings} slopes={slopes}");
|
||||
Console.WriteLine("physics polygons:");
|
||||
foreach (var (polyId, poly) in g.PhysicsPolygons.OrderBy(p => p.Key))
|
||||
var physicsPolygons = g.PhysicsPolygons
|
||||
?? throw new InvalidDataException("GfxObj has no physics polygons collection.");
|
||||
foreach (var (polyId, poly) in physicsPolygons.OrderBy(p => p.Key))
|
||||
{
|
||||
Vector3 polyMin = new(float.MaxValue);
|
||||
Vector3 polyMax = new(float.MinValue);
|
||||
|
|
|
|||
27
tools/A8CellAudit/packages.neutral.lock.json
Normal file
27
tools/A8CellAudit/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -3,6 +3,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using AcDream.Content;
|
||||
using AcDream.Content.Vfx;
|
||||
using DatReaderWriter;
|
||||
using DatReaderWriter.DBObjs;
|
||||
|
|
@ -17,7 +18,8 @@ string datDir = SysEnv.GetEnvironmentVariable("ACDREAM_DAT_DIR")
|
|||
"Documents", "Asheron's Call");
|
||||
Console.WriteLine($"datDir = {datDir}");
|
||||
using var dats = new DatCollection(datDir, DatAccessType.Read);
|
||||
var physicsScripts = new RetailPhysicsScriptLoader(dats);
|
||||
using var datSource = new DatCollectionAdapter(dats);
|
||||
var physicsScripts = new RetailPhysicsScriptLoader(datSource);
|
||||
|
||||
uint[] roots = { 0x33000453u, 0x33000428u, 0x3300042Cu, 0x33000429u, 0x3300042Du };
|
||||
|
||||
|
|
|
|||
304
tools/PesChainAudit/packages.neutral.lock.json
Normal file
304
tools/PesChainAudit/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,304 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Autofac": {
|
||||
"type": "Transitive",
|
||||
"resolved": "8.4.0",
|
||||
"contentHash": "XMWHyO6fXTv8rwCfhm6+64mQS6CyL0rve/hWSODsUrVuEGtq1fjxSOlVTBqCRsW6L8K3OQDskJaPB1boVMI2eQ=="
|
||||
},
|
||||
"Chorizite.ACProtocol": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.0.1",
|
||||
"contentHash": "PVDw/KRu4WPxT+2MzHwOQ9UFqYlOgpIRswSnco/EgHSHnbQyxOqxwiOwSK0Il+cI6dTSXTW34QNmL7iH0lXLKw==",
|
||||
"dependencies": {
|
||||
"Chorizite.Common": "1.0.0",
|
||||
"Medo.PcapRW": "1.2.0",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
||||
"System.CodeDom": "9.0.0"
|
||||
}
|
||||
},
|
||||
"Chorizite.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.0.3",
|
||||
"contentHash": "KqI0su7UY2diiSQuq11gF/NztqR6orZLr/e5UKTQ91XM8OsZGgBGHmhf2/jopX9VhwpXOTTLIeFBYTBc30cK8w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
||||
}
|
||||
},
|
||||
"CommunityToolkit.HighPerformance": {
|
||||
"type": "Transitive",
|
||||
"resolved": "8.4.0",
|
||||
"contentHash": "flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg=="
|
||||
},
|
||||
"Cyotek.Drawing.BitmapFont": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.4",
|
||||
"contentHash": "iA6WehGVdMUuNbfsQQDq/Bt+mMd/OqHjiMUtKFLIQd/0pyYh4ehT7FEjTxN9/4OXNKQZsp9bAJgltP2nnswUJg=="
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"FontStashSharp": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.3.10",
|
||||
"contentHash": "7JTrihTt3DR8LYbb4L1eZcnbwOUOu/mvY+PJoZ3WVWiKjA6xNUk93GSW3OC/kZBD3iYzrXK8QlmKyYY5Lef/Rg==",
|
||||
"dependencies": {
|
||||
"Cyotek.Drawing.BitmapFont": "2.0.4",
|
||||
"FontStashSharp.Base": "1.1.9",
|
||||
"FontStashSharp.Rasterizers.StbTrueTypeSharp": "1.1.9",
|
||||
"StbImageSharp": "2.30.15"
|
||||
}
|
||||
},
|
||||
"FontStashSharp.Base": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.9",
|
||||
"contentHash": "/AjkOcPNijs8vyNgcCj3FfBJbVWmsSH744hqkhLfBt8qspDz/tEoD+U09my5u9eRBX6zX+RLQ/gdCvwy+ZBOtg=="
|
||||
},
|
||||
"FontStashSharp.Rasterizers.StbTrueTypeSharp": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.9",
|
||||
"contentHash": "yi5iuTERem46uyHC5p+jRi3Jh8dKWzgNWLqcvHciGlyVHD1cWFdERgnxshZU4xWB2hRGnogxaCudCirbMpg4eQ==",
|
||||
"dependencies": {
|
||||
"FontStashSharp.Base": "1.1.9",
|
||||
"StbTrueTypeSharp": "1.26.12"
|
||||
}
|
||||
},
|
||||
"Medo.PcapRW": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.2.0",
|
||||
"contentHash": "vgwcHDg60Q9LJfry7twA78pUFio1P4EypI2IIlk+7mEuySsIRInm+Gx2OINDICyocbuyQZdS/zABjbmejAObeg=="
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.0",
|
||||
"contentHash": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg=="
|
||||
},
|
||||
"Microsoft.Diagnostics.NETCore.Client": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.2.410101",
|
||||
"contentHash": "I4hMjlbPcM5R+M4ThD2Zt1z58M8uZnWkDbFLXHntOOAajajEucrw4XYNSaoi5rgoqksgxQ3g388Vof4QzUNwdQ==",
|
||||
"dependencies": {
|
||||
"Microsoft.Bcl.AsyncInterfaces": "1.1.0",
|
||||
"Microsoft.Extensions.Logging": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Diagnostics.Runtime": {
|
||||
"type": "Transitive",
|
||||
"resolved": "3.1.512801",
|
||||
"contentHash": "0lMUDr2oxNZa28D6NH5BuSQEe5T9tZziIkvkD44YkkCGQXPJqvFjLq5ZQq1hYLl3RjQJrY+hR0jFgap+EWPDTw==",
|
||||
"dependencies": {
|
||||
"Microsoft.Diagnostics.NETCore.Client": "0.2.410101"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": {
|
||||
"type": "Transitive",
|
||||
"resolved": "9.0.9",
|
||||
"contentHash": "/hymojfWbE9AlDOa0mczR44m00Jj+T3+HZO0ZnVTI032fVycI0ZbNOVFP6kqZMcXiLSYXzR2ilcwaRi6dzeGyA=="
|
||||
},
|
||||
"Microsoft.Extensions.Logging": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "hh+mkOAQDTp6XH80xJt3+wwYVzkbwYQl9XZRCz4Um0JjP/o7N9vHM3rZ6wwwtr+BBe/L6iBO2sz0px6OWBzqZQ==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Options": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "V7lXCU78lAbzaulCGFKojcCyG8RTJicEbiBkPJjFqiqXwndEBBIehdXRMWEVU3UtzQ1yDvphiWUL9th6/4gJ7w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Primitives": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg=="
|
||||
},
|
||||
"Namotion.Reflection": {
|
||||
"type": "Transitive",
|
||||
"resolved": "3.4.3",
|
||||
"contentHash": "KLk2gLR9f8scM82EiL+p9TONXXPy9+IAZVMzJOA/Wsa7soZD7UJGG6j0fq0D9ZoVnBRRnSeEC7kShhRo3Olgaw=="
|
||||
},
|
||||
"Newtonsoft.Json": {
|
||||
"type": "Transitive",
|
||||
"resolved": "13.0.3",
|
||||
"contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ=="
|
||||
},
|
||||
"NJsonSchema": {
|
||||
"type": "Transitive",
|
||||
"resolved": "11.5.1",
|
||||
"contentHash": "3a7ntoBncSKkLgpIhT3uQ8BiyDzYKOHIzpzNF4o1vtKc+Re4vWxBcDXFDarOWcr/UkxZ8nxRXbbWk05j6bXFzQ==",
|
||||
"dependencies": {
|
||||
"NJsonSchema.Annotations": "11.5.1",
|
||||
"Namotion.Reflection": "3.4.3",
|
||||
"Newtonsoft.Json": "13.0.3"
|
||||
}
|
||||
},
|
||||
"NJsonSchema.Annotations": {
|
||||
"type": "Transitive",
|
||||
"resolved": "11.5.1",
|
||||
"contentHash": "xiqZ2DBJM1HuV+EhXgueb5ZUBlWFN3kVfLTKdtpTSxvtyQCO/vit8lqZiUiejnReUMRMIUhtS9m0GbieHZlSow=="
|
||||
},
|
||||
"SixLabors.Fonts": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.3",
|
||||
"contentHash": "ORWbZ5BHrC/LZvo+Y09MnoJq5VUKD85LsYALk+YI7CHFra+m5arCkz00IntDM6SrAiB22bvSdKtKmuCyHOKlqg=="
|
||||
},
|
||||
"SixLabors.ImageSharp.Drawing": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "9KwCo9Fa350cx6ckpsy8NqXQZKwir4RQ8Kj0sdCmJA7wsK9FMyfgC527Sn4l/D6bj2ditSHlhS7dGzcgGszvSQ==",
|
||||
"dependencies": {
|
||||
"SixLabors.Fonts": "2.1.3",
|
||||
"SixLabors.ImageSharp": "3.1.11"
|
||||
}
|
||||
},
|
||||
"System.CodeDom": {
|
||||
"type": "Transitive",
|
||||
"resolved": "9.0.0",
|
||||
"contentHash": "oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
},
|
||||
"acdream.content": {
|
||||
"type": "Project",
|
||||
"dependencies": {
|
||||
"AcDream.Core": "[1.0.0, )",
|
||||
"BCnEncoder.Net.ImageSharp": "[1.1.2, )",
|
||||
"SixLabors.ImageSharp": "[3.1.12, )"
|
||||
}
|
||||
},
|
||||
"acdream.core": {
|
||||
"type": "Project",
|
||||
"dependencies": {
|
||||
"AcDream.Plugin.Abstractions": "[1.0.0, )",
|
||||
"BCnEncoder.Net": "[2.2.1, )",
|
||||
"Chorizite.Core": "[0.0.18, )",
|
||||
"Chorizite.DatReaderWriter": "[2.1.7, )",
|
||||
"Serilog": "[4.0.2, )",
|
||||
"StbImageSharp": "[2.30.16, )"
|
||||
}
|
||||
},
|
||||
"acdream.plugin.abstractions": {
|
||||
"type": "Project"
|
||||
},
|
||||
"BCnEncoder.Net": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.2.1, )",
|
||||
"resolved": "2.2.1",
|
||||
"contentHash": "tI5+/OQo0kciLqWrViRjpOH+IL3FjexYnoWZajiGV41g/EM9CGbWsxsPzBDmpoxNkrV9uox/EtIhCIi9chBSFw==",
|
||||
"dependencies": {
|
||||
"CommunityToolkit.HighPerformance": "8.4.0"
|
||||
}
|
||||
},
|
||||
"BCnEncoder.Net.ImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[1.1.2, )",
|
||||
"resolved": "1.1.2",
|
||||
"contentHash": "qUi8L+bNfHJii95BMBcV6MhBchkKU2VV6sd6D1yyzgm77YhMt+aFT0keh5uf70bvTsRrq/ZKQnE4UQScNU6XAA==",
|
||||
"dependencies": {
|
||||
"BCnEncoder.Net": "2.2.0",
|
||||
"CommunityToolkit.HighPerformance": "8.4.0",
|
||||
"SixLabors.ImageSharp": "3.1.7"
|
||||
}
|
||||
},
|
||||
"Chorizite.Core": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[0.0.18, )",
|
||||
"resolved": "0.0.18",
|
||||
"contentHash": "Pvf5idSsN0NfhZspJhrpo7QiNTmHx3mnKFkmAvHFpEFx+RnqfXh96Q+Pxam+hrqXbimmKGfk1ooIl5kpQcMo6w==",
|
||||
"dependencies": {
|
||||
"Autofac": "8.4.0",
|
||||
"Chorizite.ACProtocol": "1.0.1",
|
||||
"Chorizite.Common": "1.0.3",
|
||||
"Chorizite.DatReaderWriter": "1.0.0",
|
||||
"FontStashSharp": "1.3.10",
|
||||
"Microsoft.Diagnostics.Runtime": "3.1.512801",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.9",
|
||||
"NJsonSchema": "11.5.1",
|
||||
"SixLabors.ImageSharp": "3.1.11",
|
||||
"SixLabors.ImageSharp.Drawing": "2.1.7"
|
||||
}
|
||||
},
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[9.0.9, )",
|
||||
"resolved": "9.0.9",
|
||||
"contentHash": "FEgpSF+Z9StMvrsSViaybOBwR0f0ZZxDm8xV5cSOFiXN/t+ys+rwAlTd/6yG7Ld1gfppgvLcMasZry3GsI9lGA==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9"
|
||||
}
|
||||
},
|
||||
"Serilog": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[4.0.2, )",
|
||||
"resolved": "4.0.2",
|
||||
"contentHash": "Vehq4uNYtURe/OnHEpWGvMgrvr5Vou7oZLdn3BuEH5FSCeHXDpNJtpzWoqywXsSvCTuiv0I65mZDRnJSeUvisA=="
|
||||
},
|
||||
"SixLabors.ImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[3.1.12, )",
|
||||
"resolved": "3.1.12",
|
||||
"contentHash": "iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A=="
|
||||
},
|
||||
"StbImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.30.16, )",
|
||||
"resolved": "2.30.16",
|
||||
"contentHash": "qg1i+NHihXVKLKYacGKrauhSQIGL31eBWcTC4Vc7jnGmBFj87LkRuCdXB5aDZisWMRnB6x2mcfwYXQxMWEG/lw=="
|
||||
},
|
||||
"StbTrueTypeSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[1.26.12, )",
|
||||
"resolved": "1.26.12",
|
||||
"contentHash": "hCc6/OsfcPa5VsLECcEU2m78WOshBrKwK42nAodSm9Z5wH68f7n66SoiRLCdGCkDaqbWz2TlX4zYHIjogj1HJA=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
304
tools/ProjectileVfxAudit/packages.neutral.lock.json
Normal file
304
tools/ProjectileVfxAudit/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,304 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Autofac": {
|
||||
"type": "Transitive",
|
||||
"resolved": "8.4.0",
|
||||
"contentHash": "XMWHyO6fXTv8rwCfhm6+64mQS6CyL0rve/hWSODsUrVuEGtq1fjxSOlVTBqCRsW6L8K3OQDskJaPB1boVMI2eQ=="
|
||||
},
|
||||
"Chorizite.ACProtocol": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.0.1",
|
||||
"contentHash": "PVDw/KRu4WPxT+2MzHwOQ9UFqYlOgpIRswSnco/EgHSHnbQyxOqxwiOwSK0Il+cI6dTSXTW34QNmL7iH0lXLKw==",
|
||||
"dependencies": {
|
||||
"Chorizite.Common": "1.0.0",
|
||||
"Medo.PcapRW": "1.2.0",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
||||
"System.CodeDom": "9.0.0"
|
||||
}
|
||||
},
|
||||
"Chorizite.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.0.3",
|
||||
"contentHash": "KqI0su7UY2diiSQuq11gF/NztqR6orZLr/e5UKTQ91XM8OsZGgBGHmhf2/jopX9VhwpXOTTLIeFBYTBc30cK8w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
||||
}
|
||||
},
|
||||
"CommunityToolkit.HighPerformance": {
|
||||
"type": "Transitive",
|
||||
"resolved": "8.4.0",
|
||||
"contentHash": "flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg=="
|
||||
},
|
||||
"Cyotek.Drawing.BitmapFont": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.4",
|
||||
"contentHash": "iA6WehGVdMUuNbfsQQDq/Bt+mMd/OqHjiMUtKFLIQd/0pyYh4ehT7FEjTxN9/4OXNKQZsp9bAJgltP2nnswUJg=="
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"FontStashSharp": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.3.10",
|
||||
"contentHash": "7JTrihTt3DR8LYbb4L1eZcnbwOUOu/mvY+PJoZ3WVWiKjA6xNUk93GSW3OC/kZBD3iYzrXK8QlmKyYY5Lef/Rg==",
|
||||
"dependencies": {
|
||||
"Cyotek.Drawing.BitmapFont": "2.0.4",
|
||||
"FontStashSharp.Base": "1.1.9",
|
||||
"FontStashSharp.Rasterizers.StbTrueTypeSharp": "1.1.9",
|
||||
"StbImageSharp": "2.30.15"
|
||||
}
|
||||
},
|
||||
"FontStashSharp.Base": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.9",
|
||||
"contentHash": "/AjkOcPNijs8vyNgcCj3FfBJbVWmsSH744hqkhLfBt8qspDz/tEoD+U09my5u9eRBX6zX+RLQ/gdCvwy+ZBOtg=="
|
||||
},
|
||||
"FontStashSharp.Rasterizers.StbTrueTypeSharp": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.9",
|
||||
"contentHash": "yi5iuTERem46uyHC5p+jRi3Jh8dKWzgNWLqcvHciGlyVHD1cWFdERgnxshZU4xWB2hRGnogxaCudCirbMpg4eQ==",
|
||||
"dependencies": {
|
||||
"FontStashSharp.Base": "1.1.9",
|
||||
"StbTrueTypeSharp": "1.26.12"
|
||||
}
|
||||
},
|
||||
"Medo.PcapRW": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.2.0",
|
||||
"contentHash": "vgwcHDg60Q9LJfry7twA78pUFio1P4EypI2IIlk+7mEuySsIRInm+Gx2OINDICyocbuyQZdS/zABjbmejAObeg=="
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.0",
|
||||
"contentHash": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg=="
|
||||
},
|
||||
"Microsoft.Diagnostics.NETCore.Client": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.2.410101",
|
||||
"contentHash": "I4hMjlbPcM5R+M4ThD2Zt1z58M8uZnWkDbFLXHntOOAajajEucrw4XYNSaoi5rgoqksgxQ3g388Vof4QzUNwdQ==",
|
||||
"dependencies": {
|
||||
"Microsoft.Bcl.AsyncInterfaces": "1.1.0",
|
||||
"Microsoft.Extensions.Logging": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Diagnostics.Runtime": {
|
||||
"type": "Transitive",
|
||||
"resolved": "3.1.512801",
|
||||
"contentHash": "0lMUDr2oxNZa28D6NH5BuSQEe5T9tZziIkvkD44YkkCGQXPJqvFjLq5ZQq1hYLl3RjQJrY+hR0jFgap+EWPDTw==",
|
||||
"dependencies": {
|
||||
"Microsoft.Diagnostics.NETCore.Client": "0.2.410101"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": {
|
||||
"type": "Transitive",
|
||||
"resolved": "9.0.9",
|
||||
"contentHash": "/hymojfWbE9AlDOa0mczR44m00Jj+T3+HZO0ZnVTI032fVycI0ZbNOVFP6kqZMcXiLSYXzR2ilcwaRi6dzeGyA=="
|
||||
},
|
||||
"Microsoft.Extensions.Logging": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "hh+mkOAQDTp6XH80xJt3+wwYVzkbwYQl9XZRCz4Um0JjP/o7N9vHM3rZ6wwwtr+BBe/L6iBO2sz0px6OWBzqZQ==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Options": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "V7lXCU78lAbzaulCGFKojcCyG8RTJicEbiBkPJjFqiqXwndEBBIehdXRMWEVU3UtzQ1yDvphiWUL9th6/4gJ7w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Primitives": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg=="
|
||||
},
|
||||
"Namotion.Reflection": {
|
||||
"type": "Transitive",
|
||||
"resolved": "3.4.3",
|
||||
"contentHash": "KLk2gLR9f8scM82EiL+p9TONXXPy9+IAZVMzJOA/Wsa7soZD7UJGG6j0fq0D9ZoVnBRRnSeEC7kShhRo3Olgaw=="
|
||||
},
|
||||
"Newtonsoft.Json": {
|
||||
"type": "Transitive",
|
||||
"resolved": "13.0.3",
|
||||
"contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ=="
|
||||
},
|
||||
"NJsonSchema": {
|
||||
"type": "Transitive",
|
||||
"resolved": "11.5.1",
|
||||
"contentHash": "3a7ntoBncSKkLgpIhT3uQ8BiyDzYKOHIzpzNF4o1vtKc+Re4vWxBcDXFDarOWcr/UkxZ8nxRXbbWk05j6bXFzQ==",
|
||||
"dependencies": {
|
||||
"NJsonSchema.Annotations": "11.5.1",
|
||||
"Namotion.Reflection": "3.4.3",
|
||||
"Newtonsoft.Json": "13.0.3"
|
||||
}
|
||||
},
|
||||
"NJsonSchema.Annotations": {
|
||||
"type": "Transitive",
|
||||
"resolved": "11.5.1",
|
||||
"contentHash": "xiqZ2DBJM1HuV+EhXgueb5ZUBlWFN3kVfLTKdtpTSxvtyQCO/vit8lqZiUiejnReUMRMIUhtS9m0GbieHZlSow=="
|
||||
},
|
||||
"SixLabors.Fonts": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.3",
|
||||
"contentHash": "ORWbZ5BHrC/LZvo+Y09MnoJq5VUKD85LsYALk+YI7CHFra+m5arCkz00IntDM6SrAiB22bvSdKtKmuCyHOKlqg=="
|
||||
},
|
||||
"SixLabors.ImageSharp.Drawing": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "9KwCo9Fa350cx6ckpsy8NqXQZKwir4RQ8Kj0sdCmJA7wsK9FMyfgC527Sn4l/D6bj2ditSHlhS7dGzcgGszvSQ==",
|
||||
"dependencies": {
|
||||
"SixLabors.Fonts": "2.1.3",
|
||||
"SixLabors.ImageSharp": "3.1.11"
|
||||
}
|
||||
},
|
||||
"System.CodeDom": {
|
||||
"type": "Transitive",
|
||||
"resolved": "9.0.0",
|
||||
"contentHash": "oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
},
|
||||
"acdream.content": {
|
||||
"type": "Project",
|
||||
"dependencies": {
|
||||
"AcDream.Core": "[1.0.0, )",
|
||||
"BCnEncoder.Net.ImageSharp": "[1.1.2, )",
|
||||
"SixLabors.ImageSharp": "[3.1.12, )"
|
||||
}
|
||||
},
|
||||
"acdream.core": {
|
||||
"type": "Project",
|
||||
"dependencies": {
|
||||
"AcDream.Plugin.Abstractions": "[1.0.0, )",
|
||||
"BCnEncoder.Net": "[2.2.1, )",
|
||||
"Chorizite.Core": "[0.0.18, )",
|
||||
"Chorizite.DatReaderWriter": "[2.1.7, )",
|
||||
"Serilog": "[4.0.2, )",
|
||||
"StbImageSharp": "[2.30.16, )"
|
||||
}
|
||||
},
|
||||
"acdream.plugin.abstractions": {
|
||||
"type": "Project"
|
||||
},
|
||||
"BCnEncoder.Net": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.2.1, )",
|
||||
"resolved": "2.2.1",
|
||||
"contentHash": "tI5+/OQo0kciLqWrViRjpOH+IL3FjexYnoWZajiGV41g/EM9CGbWsxsPzBDmpoxNkrV9uox/EtIhCIi9chBSFw==",
|
||||
"dependencies": {
|
||||
"CommunityToolkit.HighPerformance": "8.4.0"
|
||||
}
|
||||
},
|
||||
"BCnEncoder.Net.ImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[1.1.2, )",
|
||||
"resolved": "1.1.2",
|
||||
"contentHash": "qUi8L+bNfHJii95BMBcV6MhBchkKU2VV6sd6D1yyzgm77YhMt+aFT0keh5uf70bvTsRrq/ZKQnE4UQScNU6XAA==",
|
||||
"dependencies": {
|
||||
"BCnEncoder.Net": "2.2.0",
|
||||
"CommunityToolkit.HighPerformance": "8.4.0",
|
||||
"SixLabors.ImageSharp": "3.1.7"
|
||||
}
|
||||
},
|
||||
"Chorizite.Core": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[0.0.18, )",
|
||||
"resolved": "0.0.18",
|
||||
"contentHash": "Pvf5idSsN0NfhZspJhrpo7QiNTmHx3mnKFkmAvHFpEFx+RnqfXh96Q+Pxam+hrqXbimmKGfk1ooIl5kpQcMo6w==",
|
||||
"dependencies": {
|
||||
"Autofac": "8.4.0",
|
||||
"Chorizite.ACProtocol": "1.0.1",
|
||||
"Chorizite.Common": "1.0.3",
|
||||
"Chorizite.DatReaderWriter": "1.0.0",
|
||||
"FontStashSharp": "1.3.10",
|
||||
"Microsoft.Diagnostics.Runtime": "3.1.512801",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.9",
|
||||
"NJsonSchema": "11.5.1",
|
||||
"SixLabors.ImageSharp": "3.1.11",
|
||||
"SixLabors.ImageSharp.Drawing": "2.1.7"
|
||||
}
|
||||
},
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[9.0.9, )",
|
||||
"resolved": "9.0.9",
|
||||
"contentHash": "FEgpSF+Z9StMvrsSViaybOBwR0f0ZZxDm8xV5cSOFiXN/t+ys+rwAlTd/6yG7Ld1gfppgvLcMasZry3GsI9lGA==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9"
|
||||
}
|
||||
},
|
||||
"Serilog": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[4.0.2, )",
|
||||
"resolved": "4.0.2",
|
||||
"contentHash": "Vehq4uNYtURe/OnHEpWGvMgrvr5Vou7oZLdn3BuEH5FSCeHXDpNJtpzWoqywXsSvCTuiv0I65mZDRnJSeUvisA=="
|
||||
},
|
||||
"SixLabors.ImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[3.1.12, )",
|
||||
"resolved": "3.1.12",
|
||||
"contentHash": "iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A=="
|
||||
},
|
||||
"StbImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.30.16, )",
|
||||
"resolved": "2.30.16",
|
||||
"contentHash": "qg1i+NHihXVKLKYacGKrauhSQIGL31eBWcTC4Vc7jnGmBFj87LkRuCdXB5aDZisWMRnB6x2mcfwYXQxMWEG/lw=="
|
||||
},
|
||||
"StbTrueTypeSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[1.26.12, )",
|
||||
"resolved": "1.26.12",
|
||||
"contentHash": "hCc6/OsfcPa5VsLECcEU2m78WOshBrKwK42nAodSm9Z5wH68f7n66SoiRLCdGCkDaqbWz2TlX4zYHIjogj1HJA=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
tools/README.md
Normal file
33
tools/README.md
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Maintained .NET tools
|
||||
|
||||
Every `.csproj` under `tools/` is part of `AcDream.slnx`. The complete Release
|
||||
gate restores and builds these tools, so a missing personal checkout or an API
|
||||
change cannot leave a tracked tool silently broken. They are diagnostic/manual
|
||||
programs: the gate builds them but does not run data-dependent investigations.
|
||||
|
||||
| Tool | Purpose | Runtime prerequisite |
|
||||
| --- | --- | --- |
|
||||
| `A8CellAudit` | Inspect landblock, EnvCell, portal, and collision topology. | Installed AC DAT files / the arguments documented by the program. |
|
||||
| `dump-keymap` | Extract the retail master input maps and decoded actions. | Installed `client_portal.dat`. |
|
||||
| `PesChainAudit` | Walk weather PES call chains and particle emitters. | Installed AC DAT files. |
|
||||
| `ProjectileVfxAudit` | Audit projectile physics-script and particle-emitter VFX mappings. | Installed AC DAT files. |
|
||||
| `RainMeshProbe` | Inspect rain surfaces, polygon sidedness, and generated mesh counts. | Installed AC DAT files. |
|
||||
| `RetailTimeProbe` | Read retail time-of-day and sky state for comparison. | Windows, a running retail client, and process-read access. |
|
||||
| `SetupInspect` | Dump Setup parts, placement poses, and animation frames. | Installed AC DAT files and a Setup ID. |
|
||||
| `ShaderCompiler` | Compile the Vulkan GLSL shader set to committed SPIR-V. | Source and output directory arguments. |
|
||||
| `SkyObjectInspect` | Inspect Dereth sky/day-group objects and texture data. | Installed AC DAT files. |
|
||||
| `StarsProbe` | Audit sky-object geometry, UV ranges, and surfaces. | Installed AC DAT files. |
|
||||
| `TextureDump` | Dump render-surface statistics and texture images. | Installed AC DAT files. |
|
||||
| `WeatherEnumerator` | Enumerate weather sky objects and their bounds. | Installed AC DAT files. |
|
||||
| `WeatherSetupProbe` | Inspect the parts and surfaces of weather Setups. | Installed AC DAT files. |
|
||||
|
||||
Build the complete maintained graph with:
|
||||
|
||||
```powershell
|
||||
dotnet restore AcDream.slnx --locked-mode --force-evaluate
|
||||
dotnet build AcDream.slnx -c Release --no-restore
|
||||
```
|
||||
|
||||
Use `pwsh ./tools/run-release-gate.ps1` for the authoritative bounded gate.
|
||||
Package versions and lock-file maintenance are documented in
|
||||
[`docs/release-gate.md`](../docs/release-gate.md).
|
||||
|
|
@ -17,6 +17,8 @@ using DatReaderWriter.DBObjs;
|
|||
using DatReaderWriter.Enums;
|
||||
using DatReaderWriter.Options;
|
||||
using DatReaderWriter.Types;
|
||||
using AcDream.Content;
|
||||
using AcDream.Core.Content;
|
||||
using AcDream.Core.Meshing;
|
||||
using SysEnv = System.Environment;
|
||||
|
||||
|
|
@ -25,9 +27,10 @@ string datDir = SysEnv.GetEnvironmentVariable("ACDREAM_DAT_DIR")
|
|||
"Documents", "Asheron's Call");
|
||||
Console.WriteLine($"datDir = {datDir}");
|
||||
using var dats = new DatCollection(datDir, DatAccessType.Read);
|
||||
using var datSource = new DatCollectionAdapter(dats);
|
||||
|
||||
uint[] gfxIds = { 0x01004C42u, 0x01004C44u };
|
||||
foreach (uint gid in gfxIds) ProbeRain(dats, gid);
|
||||
foreach (uint gid in gfxIds) ProbeRain(dats, datSource, gid);
|
||||
|
||||
// Phase 7c: also dump every sky surface we know to test the LUMINOUS flag.
|
||||
// Two existing code comments contradict each other about whether Dereth's
|
||||
|
|
@ -69,7 +72,7 @@ static void ProbeSkySurface(DatCollection dats, uint sid)
|
|||
Console.WriteLine(string.Join("|", bits.Where(b => (t & b.mask) != 0).Select(b => b.n)));
|
||||
}
|
||||
|
||||
static void ProbeRain(DatCollection dats, uint gid)
|
||||
static void ProbeRain(DatCollection dats, IDatObjectSource datSource, uint gid)
|
||||
{
|
||||
Console.WriteLine();
|
||||
Console.WriteLine($"================ GfxObj 0x{gid:X8} ================");
|
||||
|
|
@ -145,7 +148,7 @@ static void ProbeRain(DatCollection dats, uint gid)
|
|||
// ----- GfxObjMesh.Build() output -----
|
||||
Console.WriteLine();
|
||||
Console.WriteLine(" --- GfxObjMesh.Build() output ---");
|
||||
var subs = GfxObjMesh.Build(go, dats);
|
||||
var subs = GfxObjMesh.Build(go, datSource);
|
||||
Console.WriteLine($" Submesh count: {subs.Count}");
|
||||
int totalVerts = 0, totalIndices = 0;
|
||||
for (int i = 0; i < subs.Count; i++)
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\AcDream.Core\AcDream.Core.csproj" />
|
||||
<ProjectReference Include="..\..\src\AcDream.Content\AcDream.Content.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
304
tools/RainMeshProbe/packages.neutral.lock.json
Normal file
304
tools/RainMeshProbe/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,304 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Autofac": {
|
||||
"type": "Transitive",
|
||||
"resolved": "8.4.0",
|
||||
"contentHash": "XMWHyO6fXTv8rwCfhm6+64mQS6CyL0rve/hWSODsUrVuEGtq1fjxSOlVTBqCRsW6L8K3OQDskJaPB1boVMI2eQ=="
|
||||
},
|
||||
"Chorizite.ACProtocol": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.0.1",
|
||||
"contentHash": "PVDw/KRu4WPxT+2MzHwOQ9UFqYlOgpIRswSnco/EgHSHnbQyxOqxwiOwSK0Il+cI6dTSXTW34QNmL7iH0lXLKw==",
|
||||
"dependencies": {
|
||||
"Chorizite.Common": "1.0.0",
|
||||
"Medo.PcapRW": "1.2.0",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
||||
"System.CodeDom": "9.0.0"
|
||||
}
|
||||
},
|
||||
"Chorizite.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.0.3",
|
||||
"contentHash": "KqI0su7UY2diiSQuq11gF/NztqR6orZLr/e5UKTQ91XM8OsZGgBGHmhf2/jopX9VhwpXOTTLIeFBYTBc30cK8w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
||||
}
|
||||
},
|
||||
"CommunityToolkit.HighPerformance": {
|
||||
"type": "Transitive",
|
||||
"resolved": "8.4.0",
|
||||
"contentHash": "flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg=="
|
||||
},
|
||||
"Cyotek.Drawing.BitmapFont": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.4",
|
||||
"contentHash": "iA6WehGVdMUuNbfsQQDq/Bt+mMd/OqHjiMUtKFLIQd/0pyYh4ehT7FEjTxN9/4OXNKQZsp9bAJgltP2nnswUJg=="
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"FontStashSharp": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.3.10",
|
||||
"contentHash": "7JTrihTt3DR8LYbb4L1eZcnbwOUOu/mvY+PJoZ3WVWiKjA6xNUk93GSW3OC/kZBD3iYzrXK8QlmKyYY5Lef/Rg==",
|
||||
"dependencies": {
|
||||
"Cyotek.Drawing.BitmapFont": "2.0.4",
|
||||
"FontStashSharp.Base": "1.1.9",
|
||||
"FontStashSharp.Rasterizers.StbTrueTypeSharp": "1.1.9",
|
||||
"StbImageSharp": "2.30.15"
|
||||
}
|
||||
},
|
||||
"FontStashSharp.Base": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.9",
|
||||
"contentHash": "/AjkOcPNijs8vyNgcCj3FfBJbVWmsSH744hqkhLfBt8qspDz/tEoD+U09my5u9eRBX6zX+RLQ/gdCvwy+ZBOtg=="
|
||||
},
|
||||
"FontStashSharp.Rasterizers.StbTrueTypeSharp": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.9",
|
||||
"contentHash": "yi5iuTERem46uyHC5p+jRi3Jh8dKWzgNWLqcvHciGlyVHD1cWFdERgnxshZU4xWB2hRGnogxaCudCirbMpg4eQ==",
|
||||
"dependencies": {
|
||||
"FontStashSharp.Base": "1.1.9",
|
||||
"StbTrueTypeSharp": "1.26.12"
|
||||
}
|
||||
},
|
||||
"Medo.PcapRW": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.2.0",
|
||||
"contentHash": "vgwcHDg60Q9LJfry7twA78pUFio1P4EypI2IIlk+7mEuySsIRInm+Gx2OINDICyocbuyQZdS/zABjbmejAObeg=="
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.0",
|
||||
"contentHash": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg=="
|
||||
},
|
||||
"Microsoft.Diagnostics.NETCore.Client": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.2.410101",
|
||||
"contentHash": "I4hMjlbPcM5R+M4ThD2Zt1z58M8uZnWkDbFLXHntOOAajajEucrw4XYNSaoi5rgoqksgxQ3g388Vof4QzUNwdQ==",
|
||||
"dependencies": {
|
||||
"Microsoft.Bcl.AsyncInterfaces": "1.1.0",
|
||||
"Microsoft.Extensions.Logging": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Diagnostics.Runtime": {
|
||||
"type": "Transitive",
|
||||
"resolved": "3.1.512801",
|
||||
"contentHash": "0lMUDr2oxNZa28D6NH5BuSQEe5T9tZziIkvkD44YkkCGQXPJqvFjLq5ZQq1hYLl3RjQJrY+hR0jFgap+EWPDTw==",
|
||||
"dependencies": {
|
||||
"Microsoft.Diagnostics.NETCore.Client": "0.2.410101"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": {
|
||||
"type": "Transitive",
|
||||
"resolved": "9.0.9",
|
||||
"contentHash": "/hymojfWbE9AlDOa0mczR44m00Jj+T3+HZO0ZnVTI032fVycI0ZbNOVFP6kqZMcXiLSYXzR2ilcwaRi6dzeGyA=="
|
||||
},
|
||||
"Microsoft.Extensions.Logging": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "hh+mkOAQDTp6XH80xJt3+wwYVzkbwYQl9XZRCz4Um0JjP/o7N9vHM3rZ6wwwtr+BBe/L6iBO2sz0px6OWBzqZQ==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Options": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "V7lXCU78lAbzaulCGFKojcCyG8RTJicEbiBkPJjFqiqXwndEBBIehdXRMWEVU3UtzQ1yDvphiWUL9th6/4gJ7w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Primitives": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg=="
|
||||
},
|
||||
"Namotion.Reflection": {
|
||||
"type": "Transitive",
|
||||
"resolved": "3.4.3",
|
||||
"contentHash": "KLk2gLR9f8scM82EiL+p9TONXXPy9+IAZVMzJOA/Wsa7soZD7UJGG6j0fq0D9ZoVnBRRnSeEC7kShhRo3Olgaw=="
|
||||
},
|
||||
"Newtonsoft.Json": {
|
||||
"type": "Transitive",
|
||||
"resolved": "13.0.3",
|
||||
"contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ=="
|
||||
},
|
||||
"NJsonSchema": {
|
||||
"type": "Transitive",
|
||||
"resolved": "11.5.1",
|
||||
"contentHash": "3a7ntoBncSKkLgpIhT3uQ8BiyDzYKOHIzpzNF4o1vtKc+Re4vWxBcDXFDarOWcr/UkxZ8nxRXbbWk05j6bXFzQ==",
|
||||
"dependencies": {
|
||||
"NJsonSchema.Annotations": "11.5.1",
|
||||
"Namotion.Reflection": "3.4.3",
|
||||
"Newtonsoft.Json": "13.0.3"
|
||||
}
|
||||
},
|
||||
"NJsonSchema.Annotations": {
|
||||
"type": "Transitive",
|
||||
"resolved": "11.5.1",
|
||||
"contentHash": "xiqZ2DBJM1HuV+EhXgueb5ZUBlWFN3kVfLTKdtpTSxvtyQCO/vit8lqZiUiejnReUMRMIUhtS9m0GbieHZlSow=="
|
||||
},
|
||||
"SixLabors.Fonts": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.3",
|
||||
"contentHash": "ORWbZ5BHrC/LZvo+Y09MnoJq5VUKD85LsYALk+YI7CHFra+m5arCkz00IntDM6SrAiB22bvSdKtKmuCyHOKlqg=="
|
||||
},
|
||||
"SixLabors.ImageSharp.Drawing": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "9KwCo9Fa350cx6ckpsy8NqXQZKwir4RQ8Kj0sdCmJA7wsK9FMyfgC527Sn4l/D6bj2ditSHlhS7dGzcgGszvSQ==",
|
||||
"dependencies": {
|
||||
"SixLabors.Fonts": "2.1.3",
|
||||
"SixLabors.ImageSharp": "3.1.11"
|
||||
}
|
||||
},
|
||||
"System.CodeDom": {
|
||||
"type": "Transitive",
|
||||
"resolved": "9.0.0",
|
||||
"contentHash": "oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
},
|
||||
"acdream.content": {
|
||||
"type": "Project",
|
||||
"dependencies": {
|
||||
"AcDream.Core": "[1.0.0, )",
|
||||
"BCnEncoder.Net.ImageSharp": "[1.1.2, )",
|
||||
"SixLabors.ImageSharp": "[3.1.12, )"
|
||||
}
|
||||
},
|
||||
"acdream.core": {
|
||||
"type": "Project",
|
||||
"dependencies": {
|
||||
"AcDream.Plugin.Abstractions": "[1.0.0, )",
|
||||
"BCnEncoder.Net": "[2.2.1, )",
|
||||
"Chorizite.Core": "[0.0.18, )",
|
||||
"Chorizite.DatReaderWriter": "[2.1.7, )",
|
||||
"Serilog": "[4.0.2, )",
|
||||
"StbImageSharp": "[2.30.16, )"
|
||||
}
|
||||
},
|
||||
"acdream.plugin.abstractions": {
|
||||
"type": "Project"
|
||||
},
|
||||
"BCnEncoder.Net": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.2.1, )",
|
||||
"resolved": "2.2.1",
|
||||
"contentHash": "tI5+/OQo0kciLqWrViRjpOH+IL3FjexYnoWZajiGV41g/EM9CGbWsxsPzBDmpoxNkrV9uox/EtIhCIi9chBSFw==",
|
||||
"dependencies": {
|
||||
"CommunityToolkit.HighPerformance": "8.4.0"
|
||||
}
|
||||
},
|
||||
"BCnEncoder.Net.ImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[1.1.2, )",
|
||||
"resolved": "1.1.2",
|
||||
"contentHash": "qUi8L+bNfHJii95BMBcV6MhBchkKU2VV6sd6D1yyzgm77YhMt+aFT0keh5uf70bvTsRrq/ZKQnE4UQScNU6XAA==",
|
||||
"dependencies": {
|
||||
"BCnEncoder.Net": "2.2.0",
|
||||
"CommunityToolkit.HighPerformance": "8.4.0",
|
||||
"SixLabors.ImageSharp": "3.1.7"
|
||||
}
|
||||
},
|
||||
"Chorizite.Core": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[0.0.18, )",
|
||||
"resolved": "0.0.18",
|
||||
"contentHash": "Pvf5idSsN0NfhZspJhrpo7QiNTmHx3mnKFkmAvHFpEFx+RnqfXh96Q+Pxam+hrqXbimmKGfk1ooIl5kpQcMo6w==",
|
||||
"dependencies": {
|
||||
"Autofac": "8.4.0",
|
||||
"Chorizite.ACProtocol": "1.0.1",
|
||||
"Chorizite.Common": "1.0.3",
|
||||
"Chorizite.DatReaderWriter": "1.0.0",
|
||||
"FontStashSharp": "1.3.10",
|
||||
"Microsoft.Diagnostics.Runtime": "3.1.512801",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.9",
|
||||
"NJsonSchema": "11.5.1",
|
||||
"SixLabors.ImageSharp": "3.1.11",
|
||||
"SixLabors.ImageSharp.Drawing": "2.1.7"
|
||||
}
|
||||
},
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[9.0.9, )",
|
||||
"resolved": "9.0.9",
|
||||
"contentHash": "FEgpSF+Z9StMvrsSViaybOBwR0f0ZZxDm8xV5cSOFiXN/t+ys+rwAlTd/6yG7Ld1gfppgvLcMasZry3GsI9lGA==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9"
|
||||
}
|
||||
},
|
||||
"Serilog": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[4.0.2, )",
|
||||
"resolved": "4.0.2",
|
||||
"contentHash": "Vehq4uNYtURe/OnHEpWGvMgrvr5Vou7oZLdn3BuEH5FSCeHXDpNJtpzWoqywXsSvCTuiv0I65mZDRnJSeUvisA=="
|
||||
},
|
||||
"SixLabors.ImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[3.1.12, )",
|
||||
"resolved": "3.1.12",
|
||||
"contentHash": "iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A=="
|
||||
},
|
||||
"StbImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.30.16, )",
|
||||
"resolved": "2.30.16",
|
||||
"contentHash": "qg1i+NHihXVKLKYacGKrauhSQIGL31eBWcTC4Vc7jnGmBFj87LkRuCdXB5aDZisWMRnB6x2mcfwYXQxMWEG/lw=="
|
||||
},
|
||||
"StbTrueTypeSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[1.26.12, )",
|
||||
"resolved": "1.26.12",
|
||||
"contentHash": "hCc6/OsfcPa5VsLECcEU2m78WOshBrKwK42nAodSm9Z5wH68f7n66SoiRLCdGCkDaqbWz2TlX4zYHIjogj1HJA=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
6
tools/RetailTimeProbe/packages.neutral.lock.json
Normal file
6
tools/RetailTimeProbe/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {}
|
||||
}
|
||||
}
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" Version="2.1.7" />
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
27
tools/SetupInspect/packages.neutral.lock.json
Normal file
27
tools/SetupInspect/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -24,6 +24,6 @@
|
|||
<AssemblyName>AcDream.Tools.ShaderCompiler</AssemblyName>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Silk.NET.Shaderc" Version="2.23.0" />
|
||||
<PackageReference Include="Silk.NET.Shaderc" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
|
|||
41
tools/ShaderCompiler/packages.neutral.lock.json
Normal file
41
tools/ShaderCompiler/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Silk.NET.Shaderc": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.23.0, )",
|
||||
"resolved": "2.23.0",
|
||||
"contentHash": "+pXfOhmSCeeMECOo9HMi3C63LVbQ7FBxPFgxPKOT6mXD8Gg/90Wt4fLX4LqUuVbGid5LW6BXAUu1g17XQoawdA==",
|
||||
"dependencies": {
|
||||
"Silk.NET.Core": "2.23.0",
|
||||
"Silk.NET.Shaderc.Native": "2.23.0"
|
||||
}
|
||||
},
|
||||
"Microsoft.DotNet.PlatformAbstractions": {
|
||||
"type": "Transitive",
|
||||
"resolved": "3.1.6",
|
||||
"contentHash": "jek4XYaQ/PGUwDKKhwR8K47Uh1189PFzMeLqO83mXrXQVIpARZCcfuDedH50YDTepBkfijCZN5U/vZi++erxtg=="
|
||||
},
|
||||
"Microsoft.Extensions.DependencyModel": {
|
||||
"type": "Transitive",
|
||||
"resolved": "9.0.9",
|
||||
"contentHash": "fNGvKct2De8ghm0Bpfq0iWthtzIWabgOTi+gJhNOPhNJIowXNEUE2eZNW/zNCzrHVA3PXg2yZ+3cWZndC2IqYA=="
|
||||
},
|
||||
"Silk.NET.Core": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.23.0",
|
||||
"contentHash": "D7AT/nnwlB+4RZ84XY8QNGBZMJI5z9l4CSSETIJ1wCfRJzRt/341y3MRZ4HbnFz4r/IGaWOEZr86iE+0/65yyQ==",
|
||||
"dependencies": {
|
||||
"Microsoft.DotNet.PlatformAbstractions": "3.1.6",
|
||||
"Microsoft.Extensions.DependencyModel": "9.0.9"
|
||||
}
|
||||
},
|
||||
"Silk.NET.Shaderc.Native": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.23.0",
|
||||
"contentHash": "H6OMLIWdh2HITvkmj+ALs8LTIdQvQ2/JTtkDXinVbJ3xxrQIBXhVmc9jnuTQ67YDybGlENSMrgthzhLwK0rjnQ=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\references\DatReaderWriter\DatReaderWriter\DatReaderWriter.csproj" />
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
27
tools/SkyObjectInspect/packages.neutral.lock.json
Normal file
27
tools/SkyObjectInspect/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="C:\Users\erikn\source\repos\acdream\references\DatReaderWriter\DatReaderWriter\DatReaderWriter.csproj" />
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
27
tools/StarsProbe/packages.neutral.lock.json
Normal file
27
tools/StarsProbe/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" Version="2.1.7" />
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" />
|
||||
<ProjectReference Include="..\..\src\AcDream.Core\AcDream.Core.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
|
|||
285
tools/TextureDump/packages.neutral.lock.json
Normal file
285
tools/TextureDump/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,285 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"Autofac": {
|
||||
"type": "Transitive",
|
||||
"resolved": "8.4.0",
|
||||
"contentHash": "XMWHyO6fXTv8rwCfhm6+64mQS6CyL0rve/hWSODsUrVuEGtq1fjxSOlVTBqCRsW6L8K3OQDskJaPB1boVMI2eQ=="
|
||||
},
|
||||
"Chorizite.ACProtocol": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.0.1",
|
||||
"contentHash": "PVDw/KRu4WPxT+2MzHwOQ9UFqYlOgpIRswSnco/EgHSHnbQyxOqxwiOwSK0Il+cI6dTSXTW34QNmL7iH0lXLKw==",
|
||||
"dependencies": {
|
||||
"Chorizite.Common": "1.0.0",
|
||||
"Medo.PcapRW": "1.2.0",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0",
|
||||
"System.CodeDom": "9.0.0"
|
||||
}
|
||||
},
|
||||
"Chorizite.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.0.3",
|
||||
"contentHash": "KqI0su7UY2diiSQuq11gF/NztqR6orZLr/e5UKTQ91XM8OsZGgBGHmhf2/jopX9VhwpXOTTLIeFBYTBc30cK8w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.0"
|
||||
}
|
||||
},
|
||||
"CommunityToolkit.HighPerformance": {
|
||||
"type": "Transitive",
|
||||
"resolved": "8.4.0",
|
||||
"contentHash": "flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg=="
|
||||
},
|
||||
"Cyotek.Drawing.BitmapFont": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.4",
|
||||
"contentHash": "iA6WehGVdMUuNbfsQQDq/Bt+mMd/OqHjiMUtKFLIQd/0pyYh4ehT7FEjTxN9/4OXNKQZsp9bAJgltP2nnswUJg=="
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"FontStashSharp": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.3.10",
|
||||
"contentHash": "7JTrihTt3DR8LYbb4L1eZcnbwOUOu/mvY+PJoZ3WVWiKjA6xNUk93GSW3OC/kZBD3iYzrXK8QlmKyYY5Lef/Rg==",
|
||||
"dependencies": {
|
||||
"Cyotek.Drawing.BitmapFont": "2.0.4",
|
||||
"FontStashSharp.Base": "1.1.9",
|
||||
"FontStashSharp.Rasterizers.StbTrueTypeSharp": "1.1.9",
|
||||
"StbImageSharp": "2.30.15"
|
||||
}
|
||||
},
|
||||
"FontStashSharp.Base": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.9",
|
||||
"contentHash": "/AjkOcPNijs8vyNgcCj3FfBJbVWmsSH744hqkhLfBt8qspDz/tEoD+U09my5u9eRBX6zX+RLQ/gdCvwy+ZBOtg=="
|
||||
},
|
||||
"FontStashSharp.Rasterizers.StbTrueTypeSharp": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.9",
|
||||
"contentHash": "yi5iuTERem46uyHC5p+jRi3Jh8dKWzgNWLqcvHciGlyVHD1cWFdERgnxshZU4xWB2hRGnogxaCudCirbMpg4eQ==",
|
||||
"dependencies": {
|
||||
"FontStashSharp.Base": "1.1.9",
|
||||
"StbTrueTypeSharp": "1.26.12"
|
||||
}
|
||||
},
|
||||
"Medo.PcapRW": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.2.0",
|
||||
"contentHash": "vgwcHDg60Q9LJfry7twA78pUFio1P4EypI2IIlk+7mEuySsIRInm+Gx2OINDICyocbuyQZdS/zABjbmejAObeg=="
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces": {
|
||||
"type": "Transitive",
|
||||
"resolved": "1.1.0",
|
||||
"contentHash": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg=="
|
||||
},
|
||||
"Microsoft.Diagnostics.NETCore.Client": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.2.410101",
|
||||
"contentHash": "I4hMjlbPcM5R+M4ThD2Zt1z58M8uZnWkDbFLXHntOOAajajEucrw4XYNSaoi5rgoqksgxQ3g388Vof4QzUNwdQ==",
|
||||
"dependencies": {
|
||||
"Microsoft.Bcl.AsyncInterfaces": "1.1.0",
|
||||
"Microsoft.Extensions.Logging": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Diagnostics.Runtime": {
|
||||
"type": "Transitive",
|
||||
"resolved": "3.1.512801",
|
||||
"contentHash": "0lMUDr2oxNZa28D6NH5BuSQEe5T9tZziIkvkD44YkkCGQXPJqvFjLq5ZQq1hYLl3RjQJrY+hR0jFgap+EWPDTw==",
|
||||
"dependencies": {
|
||||
"Microsoft.Diagnostics.NETCore.Client": "0.2.410101"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": {
|
||||
"type": "Transitive",
|
||||
"resolved": "9.0.9",
|
||||
"contentHash": "/hymojfWbE9AlDOa0mczR44m00Jj+T3+HZO0ZnVTI032fVycI0ZbNOVFP6kqZMcXiLSYXzR2ilcwaRi6dzeGyA=="
|
||||
},
|
||||
"Microsoft.Extensions.Logging": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "hh+mkOAQDTp6XH80xJt3+wwYVzkbwYQl9XZRCz4Um0JjP/o7N9vHM3rZ6wwwtr+BBe/L6iBO2sz0px6OWBzqZQ==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Binder": "2.1.1",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Options": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "V7lXCU78lAbzaulCGFKojcCyG8RTJicEbiBkPJjFqiqXwndEBBIehdXRMWEVU3UtzQ1yDvphiWUL9th6/4gJ7w==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
|
||||
"Microsoft.Extensions.Primitives": "2.1.1"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.1",
|
||||
"contentHash": "scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg=="
|
||||
},
|
||||
"Namotion.Reflection": {
|
||||
"type": "Transitive",
|
||||
"resolved": "3.4.3",
|
||||
"contentHash": "KLk2gLR9f8scM82EiL+p9TONXXPy9+IAZVMzJOA/Wsa7soZD7UJGG6j0fq0D9ZoVnBRRnSeEC7kShhRo3Olgaw=="
|
||||
},
|
||||
"Newtonsoft.Json": {
|
||||
"type": "Transitive",
|
||||
"resolved": "13.0.3",
|
||||
"contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ=="
|
||||
},
|
||||
"NJsonSchema": {
|
||||
"type": "Transitive",
|
||||
"resolved": "11.5.1",
|
||||
"contentHash": "3a7ntoBncSKkLgpIhT3uQ8BiyDzYKOHIzpzNF4o1vtKc+Re4vWxBcDXFDarOWcr/UkxZ8nxRXbbWk05j6bXFzQ==",
|
||||
"dependencies": {
|
||||
"NJsonSchema.Annotations": "11.5.1",
|
||||
"Namotion.Reflection": "3.4.3",
|
||||
"Newtonsoft.Json": "13.0.3"
|
||||
}
|
||||
},
|
||||
"NJsonSchema.Annotations": {
|
||||
"type": "Transitive",
|
||||
"resolved": "11.5.1",
|
||||
"contentHash": "xiqZ2DBJM1HuV+EhXgueb5ZUBlWFN3kVfLTKdtpTSxvtyQCO/vit8lqZiUiejnReUMRMIUhtS9m0GbieHZlSow=="
|
||||
},
|
||||
"SixLabors.Fonts": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.3",
|
||||
"contentHash": "ORWbZ5BHrC/LZvo+Y09MnoJq5VUKD85LsYALk+YI7CHFra+m5arCkz00IntDM6SrAiB22bvSdKtKmuCyHOKlqg=="
|
||||
},
|
||||
"SixLabors.ImageSharp.Drawing": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "9KwCo9Fa350cx6ckpsy8NqXQZKwir4RQ8Kj0sdCmJA7wsK9FMyfgC527Sn4l/D6bj2ditSHlhS7dGzcgGszvSQ==",
|
||||
"dependencies": {
|
||||
"SixLabors.Fonts": "2.1.3",
|
||||
"SixLabors.ImageSharp": "3.1.11"
|
||||
}
|
||||
},
|
||||
"System.CodeDom": {
|
||||
"type": "Transitive",
|
||||
"resolved": "9.0.0",
|
||||
"contentHash": "oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
},
|
||||
"acdream.core": {
|
||||
"type": "Project",
|
||||
"dependencies": {
|
||||
"AcDream.Plugin.Abstractions": "[1.0.0, )",
|
||||
"BCnEncoder.Net": "[2.2.1, )",
|
||||
"Chorizite.Core": "[0.0.18, )",
|
||||
"Chorizite.DatReaderWriter": "[2.1.7, )",
|
||||
"Serilog": "[4.0.2, )",
|
||||
"StbImageSharp": "[2.30.16, )"
|
||||
}
|
||||
},
|
||||
"acdream.plugin.abstractions": {
|
||||
"type": "Project"
|
||||
},
|
||||
"BCnEncoder.Net": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.2.1, )",
|
||||
"resolved": "2.2.1",
|
||||
"contentHash": "tI5+/OQo0kciLqWrViRjpOH+IL3FjexYnoWZajiGV41g/EM9CGbWsxsPzBDmpoxNkrV9uox/EtIhCIi9chBSFw==",
|
||||
"dependencies": {
|
||||
"CommunityToolkit.HighPerformance": "8.4.0"
|
||||
}
|
||||
},
|
||||
"Chorizite.Core": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[0.0.18, )",
|
||||
"resolved": "0.0.18",
|
||||
"contentHash": "Pvf5idSsN0NfhZspJhrpo7QiNTmHx3mnKFkmAvHFpEFx+RnqfXh96Q+Pxam+hrqXbimmKGfk1ooIl5kpQcMo6w==",
|
||||
"dependencies": {
|
||||
"Autofac": "8.4.0",
|
||||
"Chorizite.ACProtocol": "1.0.1",
|
||||
"Chorizite.Common": "1.0.3",
|
||||
"Chorizite.DatReaderWriter": "1.0.0",
|
||||
"FontStashSharp": "1.3.10",
|
||||
"Microsoft.Diagnostics.Runtime": "3.1.512801",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "9.0.9",
|
||||
"NJsonSchema": "11.5.1",
|
||||
"SixLabors.ImageSharp": "3.1.11",
|
||||
"SixLabors.ImageSharp.Drawing": "2.1.7"
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[9.0.9, )",
|
||||
"resolved": "9.0.9",
|
||||
"contentHash": "FEgpSF+Z9StMvrsSViaybOBwR0f0ZZxDm8xV5cSOFiXN/t+ys+rwAlTd/6yG7Ld1gfppgvLcMasZry3GsI9lGA==",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.9"
|
||||
}
|
||||
},
|
||||
"Serilog": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[4.0.2, )",
|
||||
"resolved": "4.0.2",
|
||||
"contentHash": "Vehq4uNYtURe/OnHEpWGvMgrvr5Vou7oZLdn3BuEH5FSCeHXDpNJtpzWoqywXsSvCTuiv0I65mZDRnJSeUvisA=="
|
||||
},
|
||||
"SixLabors.ImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[3.1.12, )",
|
||||
"resolved": "3.1.11",
|
||||
"contentHash": "JfPLyigLthuE50yi6tMt7Amrenr/fA31t2CvJyhy/kQmfulIBAqo5T/YFUSRHtuYPXRSaUHygFeh6Qd933EoSw=="
|
||||
},
|
||||
"StbImageSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[2.30.16, )",
|
||||
"resolved": "2.30.16",
|
||||
"contentHash": "qg1i+NHihXVKLKYacGKrauhSQIGL31eBWcTC4Vc7jnGmBFj87LkRuCdXB5aDZisWMRnB6x2mcfwYXQxMWEG/lw=="
|
||||
},
|
||||
"StbTrueTypeSharp": {
|
||||
"type": "CentralTransitive",
|
||||
"requested": "[1.26.12, )",
|
||||
"resolved": "1.26.12",
|
||||
"contentHash": "hCc6/OsfcPa5VsLECcEU2m78WOshBrKwK42nAodSm9Z5wH68f7n66SoiRLCdGCkDaqbWz2TlX4zYHIjogj1HJA=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="C:\Users\erikn\source\repos\acdream\references\DatReaderWriter\DatReaderWriter\DatReaderWriter.csproj" />
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
27
tools/WeatherEnumerator/packages.neutral.lock.json
Normal file
27
tools/WeatherEnumerator/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\..\references\DatReaderWriter\DatReaderWriter\DatReaderWriter.csproj" />
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
27
tools/WeatherSetupProbe/packages.neutral.lock.json
Normal file
27
tools/WeatherSetupProbe/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -68,7 +68,7 @@ foreach (uint id in new uint[] { 0x14000000u, 0x14000002u })
|
|||
Console.WriteLine(
|
||||
$" {Dik(scan),-12}{(mods.Length > 0 ? "+" + mods : " ")} " +
|
||||
$"(scan=0x{scan:X2}, dev={dev}) " +
|
||||
$"Action=0x{m.Unknown:X8} " +
|
||||
$"Action=0x{m.Unknown:X8} ({Action(m.Unknown)}) " +
|
||||
$"Activation=0x{m.Activation:X2}");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,6 +8,6 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\references\DatReaderWriter\DatReaderWriter\DatReaderWriter.csproj" />
|
||||
<PackageReference Include="Chorizite.DatReaderWriter" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
|
|||
27
tools/dump-keymap/packages.neutral.lock.json
Normal file
27
tools/dump-keymap/packages.neutral.lock.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dependencies": {
|
||||
"net10.0": {
|
||||
"Chorizite.DatReaderWriter": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.1.7, )",
|
||||
"resolved": "2.1.7",
|
||||
"contentHash": "6CpUhfHDV/O+lNx0xUZUcXK7wGkEkHYCnGHFtD8BBeAv4i1BuaNfTID+VQoSzx2EtmOVM0A2O/9wRFibApz6rQ==",
|
||||
"dependencies": {
|
||||
"DotNet.Standard.Common": "2.0.1",
|
||||
"ZLibDotNet": "0.1.1"
|
||||
}
|
||||
},
|
||||
"DotNet.Standard.Common": {
|
||||
"type": "Transitive",
|
||||
"resolved": "2.0.1",
|
||||
"contentHash": "zW0m0ytHi43ccbEOTNDa10cDDnT7BAzY1R1Rb1dlhbdkiyglsALjrsyTPSEjbdnTmCOAvAvl4kkbvBLoYhC6dQ=="
|
||||
},
|
||||
"ZLibDotNet": {
|
||||
"type": "Transitive",
|
||||
"resolved": "0.1.1",
|
||||
"contentHash": "QEti4O7dwRcOb9zbnLuudSrt2IT61OYjq0R7lcJb+EzUm5N6djOVGU/cp+FZIZzJUnaFIntwrpwiuRvhpS7ZHg=="
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -3,12 +3,14 @@
|
|||
Runs the complete portable Release gate with bounded child processes.
|
||||
|
||||
.DESCRIPTION
|
||||
Discovers every test project under tests/ that declares itself through
|
||||
Microsoft.NET.Test.Sdk or IsTestProject, verifies that AcDream.slnx owns it,
|
||||
restores and builds the solution, and then runs each test assembly in a
|
||||
fresh process. Every process has an outer hard timeout. Test processes also
|
||||
use VSTest blame-hang collection, so a stuck test host is terminated with a
|
||||
mini dump before the outer watchdog is allowed to kill the process tree.
|
||||
Verifies that AcDream.slnx owns every project under src/, tests/, and tools/;
|
||||
performs a locked restore; builds that complete supported graph; discovers
|
||||
every test project under tests/ that declares itself through
|
||||
Microsoft.NET.Test.Sdk or IsTestProject; and then runs each test assembly in
|
||||
a fresh process. Every process has an outer hard timeout. Test processes
|
||||
also use VSTest blame-hang collection, so a stuck test host is terminated
|
||||
with a mini dump before the outer watchdog is allowed to kill the process
|
||||
tree.
|
||||
|
||||
The evidence directory contains process logs, one TRX per test assembly,
|
||||
any blame sequence/dump files, an environment report, an aggregate JSON
|
||||
|
|
@ -171,6 +173,48 @@ function Invoke-BoundedDotnet {
|
|||
return $result
|
||||
}
|
||||
|
||||
function Get-SolutionProjects {
|
||||
[xml]$solution = Get-Content -LiteralPath $solutionPath
|
||||
$projectPaths = @(
|
||||
$solution.SelectNodes('//Project') |
|
||||
ForEach-Object { [string]$_.Path } |
|
||||
Sort-Object -Unique
|
||||
)
|
||||
if ($projectPaths.Count -eq 0) {
|
||||
throw 'AcDream.slnx contains no projects.'
|
||||
}
|
||||
|
||||
$projects = @(
|
||||
foreach ($relativePath in $projectPaths) {
|
||||
$fullPath = [IO.Path]::GetFullPath((Join-Path $repoRoot $relativePath))
|
||||
if (-not (Test-Path -LiteralPath $fullPath -PathType Leaf)) {
|
||||
throw "Solution project '$relativePath' does not exist."
|
||||
}
|
||||
Get-Item -LiteralPath $fullPath
|
||||
}
|
||||
)
|
||||
|
||||
$maintainedProjects = @(
|
||||
foreach ($directoryName in @('src', 'tests', 'tools')) {
|
||||
Get-ChildItem -LiteralPath (Join-Path $repoRoot $directoryName) -Recurse -Filter '*.csproj' -File
|
||||
}
|
||||
)
|
||||
$solutionSet = [Collections.Generic.HashSet[string]]::new(
|
||||
[StringComparer]::OrdinalIgnoreCase)
|
||||
foreach ($project in $projects) {
|
||||
[void]$solutionSet.Add($project.FullName)
|
||||
}
|
||||
$missing = @($maintainedProjects | Where-Object { -not $solutionSet.Contains($_.FullName) })
|
||||
if ($missing.Count -gt 0) {
|
||||
$missingText = $missing |
|
||||
ForEach-Object { [IO.Path]::GetRelativePath($repoRoot, $_.FullName).Replace('\', '/') } |
|
||||
Sort-Object
|
||||
throw "Maintained projects missing from AcDream.slnx: $($missingText -join ', ')"
|
||||
}
|
||||
|
||||
return $projects
|
||||
}
|
||||
|
||||
function Get-TestProjects {
|
||||
$solutionText = Get-Content -LiteralPath $solutionPath -Raw
|
||||
$projects = @(
|
||||
|
|
@ -240,6 +284,7 @@ function Write-ArtifactHashes {
|
|||
Push-Location $repoRoot
|
||||
try {
|
||||
$gateStartedUtc = [DateTimeOffset]::UtcNow
|
||||
$solutionProjects = @(Get-SolutionProjects)
|
||||
$testProjects = @(Get-TestProjects)
|
||||
$processes = [Collections.Generic.List[object]]::new()
|
||||
$testReports = [Collections.Generic.List[object]]::new()
|
||||
|
|
@ -263,6 +308,29 @@ try {
|
|||
(dotnet nuget list source | Out-String)
|
||||
'--- worktree status at gate start ---'
|
||||
($worktreeStatus -join [Environment]::NewLine)
|
||||
'--- supported solution projects ---'
|
||||
($solutionProjects | ForEach-Object {
|
||||
[IO.Path]::GetRelativePath($repoRoot, $_.FullName).Replace('\', '/')
|
||||
})
|
||||
'--- package lock files ---'
|
||||
($solutionProjects | ForEach-Object {
|
||||
$relativeProject = [IO.Path]::GetRelativePath($repoRoot, $_.FullName).Replace('\', '/')
|
||||
$lockNames = [Collections.Generic.List[string]]::new()
|
||||
$lockNames.Add('packages.neutral.lock.json')
|
||||
if ($relativeProject.StartsWith('src/', [StringComparison]::OrdinalIgnoreCase)) {
|
||||
$lockNames.Add('packages.win-x64.lock.json')
|
||||
$lockNames.Add('packages.linux-x64.lock.json')
|
||||
}
|
||||
foreach ($lockName in $lockNames) {
|
||||
$lockPath = Join-Path $_.DirectoryName $lockName
|
||||
if (-not (Test-Path -LiteralPath $lockPath -PathType Leaf)) {
|
||||
throw "Supported project '$($_.FullName)' has no $lockName."
|
||||
}
|
||||
$relative = [IO.Path]::GetRelativePath($repoRoot, $lockPath).Replace('\', '/')
|
||||
$hash = (Get-FileHash -LiteralPath $lockPath -Algorithm SHA256).Hash.ToLowerInvariant()
|
||||
"$hash $relative"
|
||||
}
|
||||
})
|
||||
'--- discovered test projects ---'
|
||||
($testProjects | ForEach-Object {
|
||||
[IO.Path]::GetRelativePath($repoRoot, $_.FullName).Replace('\', '/')
|
||||
|
|
@ -272,7 +340,7 @@ try {
|
|||
|
||||
if (-not $SkipRestore) {
|
||||
$restore = Invoke-BoundedDotnet -Label 'restore' -TimeoutSeconds $RestoreTimeoutSeconds -Arguments @(
|
||||
'restore', $solutionPath, '--nologo'
|
||||
'restore', $solutionPath, '--locked-mode', '--force-evaluate', '--nologo'
|
||||
)
|
||||
$processes.Add($restore)
|
||||
if ($restore.ExitCode -ne 0) {
|
||||
|
|
|
|||
46
tools/update-package-locks.ps1
Normal file
46
tools/update-package-locks.ps1
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
<#
|
||||
.SYNOPSIS
|
||||
Regenerates every neutral and release-RID NuGet lock file.
|
||||
#>
|
||||
[CmdletBinding()]
|
||||
param()
|
||||
|
||||
Set-StrictMode -Version Latest
|
||||
$ErrorActionPreference = 'Stop'
|
||||
|
||||
$repoRoot = [IO.Path]::GetFullPath((Split-Path -Parent $PSScriptRoot))
|
||||
$solutionPath = Join-Path $repoRoot 'AcDream.slnx'
|
||||
|
||||
function Invoke-Restore {
|
||||
param([Parameter(Mandatory)] [string[]]$Arguments)
|
||||
|
||||
Write-Host "dotnet $($Arguments -join ' ')"
|
||||
& dotnet @Arguments
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
throw "dotnet restore failed with exit code $LASTEXITCODE."
|
||||
}
|
||||
}
|
||||
|
||||
Push-Location $repoRoot
|
||||
try {
|
||||
Invoke-Restore -Arguments @('restore', $solutionPath, '--force-evaluate', '--nologo')
|
||||
|
||||
$sourceProjects = @(
|
||||
Get-ChildItem -LiteralPath (Join-Path $repoRoot 'src') -Recurse -Filter '*.csproj' -File |
|
||||
Sort-Object FullName
|
||||
)
|
||||
foreach ($runtimeIdentifier in @('win-x64', 'linux-x64')) {
|
||||
foreach ($project in $sourceProjects) {
|
||||
Invoke-Restore -Arguments @(
|
||||
'restore'
|
||||
$project.FullName
|
||||
'-r'
|
||||
$runtimeIdentifier
|
||||
'--force-evaluate'
|
||||
'--nologo'
|
||||
)
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
Pop-Location
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue