Inventory logger

This commit is contained in:
erik 2025-05-12 20:27:00 +02:00
parent 29fba4b7cb
commit de2057789a
41 changed files with 12834 additions and 171 deletions

View file

@ -38,10 +38,8 @@
<HintPath>lib\Decal.Adapter.dll</HintPath>
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="Decal.Interop.Core, Version=2.9.8.3, Culture=neutral, PublicKeyToken=481f17d392f1fb65, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<EmbedInteropTypes>False</EmbedInteropTypes>
<HintPath>lib\Decal.Interop.Core.DLL</HintPath>
<Reference Include="Decal.FileService">
<HintPath>..\..\..\..\..\..\Program Files (x86)\Decal 3.0\Decal.FileService.dll</HintPath>
</Reference>
<Reference Include="Decal.Interop.Inject, Version=2.9.8.3, Culture=neutral, PublicKeyToken=481f17d392f1fb65, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
@ -66,6 +64,9 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>bin\Debug\utank2-i.dll</HintPath>
</Reference>
<Reference Include="VCS5">
<HintPath>..\..\..\..\..\..\Games\Decal Plugins\Virindi\VirindiChatSystem5\VCS5.dll</HintPath>
</Reference>
<Reference Include="VirindiViewService">
<HintPath>lib\VirindiViewService.dll</HintPath>
</Reference>
@ -74,7 +75,67 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Inventory.cs" />
<Compile Include="..\Shared\Constants\BoolValueKey.cs">
<Link>Shared\Constants\BoolValueKey.cs</Link>
</Compile>
<Compile Include="..\Shared\Constants\Dictionaries.cs">
<Link>Shared\Constants\Dictionaries.cs</Link>
</Compile>
<Compile Include="..\Shared\Constants\DoubleValueKey.cs">
<Link>Shared\Constants\DoubleValueKey.cs</Link>
</Compile>
<Compile Include="..\Shared\Constants\EphemeralAttribute.cs">
<Link>Shared\Constants\EphemeralAttribute.cs</Link>
</Compile>
<Compile Include="..\Shared\Constants\IntValueKey.cs">
<Link>Shared\Constants\IntValueKey.cs</Link>
</Compile>
<Compile Include="..\Shared\Constants\SendOnLoginAttribute.cs">
<Link>Shared\Constants\SendOnLoginAttribute.cs</Link>
</Compile>
<Compile Include="..\Shared\Constants\ServerOnlyAttribute.cs">
<Link>Shared\Constants\ServerOnlyAttribute.cs</Link>
</Compile>
<Compile Include="..\Shared\Constants\StringValueKey.cs">
<Link>Shared\Constants\StringValueKey.cs</Link>
</Compile>
<Compile Include="..\Shared\Debug.cs">
<Link>Shared\Debug.cs</Link>
</Compile>
<Compile Include="..\Shared\DecalProxy.cs">
<Link>Shared\DecalProxy.cs</Link>
</Compile>
<Compile Include="..\Shared\MyWorldObject.cs">
<Link>Shared\MyWorldObject.cs</Link>
</Compile>
<Compile Include="..\Shared\MyWorldObjectCreator.cs">
<Link>Shared\MyWorldObjectCreator.cs</Link>
</Compile>
<Compile Include="..\Shared\PostMessageTools.cs">
<Link>Shared\PostMessageTools.cs</Link>
</Compile>
<Compile Include="..\Shared\RateLimiter.cs">
<Link>Shared\RateLimiter.cs</Link>
</Compile>
<Compile Include="..\Shared\SerializableDictionary.cs">
<Link>Shared\SerializableDictionary.cs</Link>
</Compile>
<Compile Include="..\Shared\Settings\Setting.cs">
<Link>Shared\Settings\Setting.cs</Link>
</Compile>
<Compile Include="..\Shared\Settings\SettingsFile.cs">
<Link>Shared\Settings\SettingsFile.cs</Link>
</Compile>
<Compile Include="..\Shared\User32.cs">
<Link>Shared\User32.cs</Link>
</Compile>
<Compile Include="..\Shared\Util.cs">
<Link>Shared\Util.cs</Link>
</Compile>
<Compile Include="..\Shared\VCS_Connector.cs">
<Link>Shared\VCS_Connector.cs</Link>
</Compile>
<Compile Include="MossyInventory.cs" />
<Compile Include="vTank.cs" />
<Compile Include="VtankControl.cs" />
<Compile Include="Telemetry.cs" />
@ -112,5 +173,25 @@
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<COMReference Include="Decal">
<Guid>{FF7F5F6D-34E0-4B6F-B3BB-8141DE2EF732}</Guid>
<VersionMajor>2</VersionMajor>
<VersionMinor>0</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>primary</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
<COMReference Include="DecalNet">
<Guid>{572B87C4-93BD-46B3-A291-CD58181D25DC}</Guid>
<VersionMajor>2</VersionMajor>
<VersionMinor>0</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>primary</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>