All 5 phases of the open-source Decal rebuild: Phase 1: 14 decompiled .NET projects (Interop.*, Adapter, FileService, DecalUtil) Phase 2: 10 native DLLs rewritten as C# COM servers with matching GUIDs - DecalDat, DHS, SpellFilter, DecalInput, DecalNet, DecalFilters - Decal.Core, DecalControls, DecalRender, D3DService Phase 3: C++ shims for Inject.DLL (D3D9 hooking) and LauncherHook.DLL Phase 4: DenAgent WinForms tray application Phase 5: WiX installer and build script 25 C# projects building with 0 errors. Native C++ projects require VS 2022 + Windows SDK (x86). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
1.4 KiB
C#
24 lines
1.4 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.ConstrainedExecution;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Versioning;
|
|
using System.Security.Permissions;
|
|
|
|
[assembly: AssemblyTitle("Decal.Adapter Framework")]
|
|
[assembly: AssemblyDescription("The Core services of Decal.Adapter, to enable authoring of .NET native extensions to Decal, including both Plugins and NetFilters")]
|
|
[assembly: AssemblyConfiguration("Ship")]
|
|
[assembly: AssemblyCompany("Decal Development")]
|
|
[assembly: AssemblyProduct("Decal.Adapter")]
|
|
[assembly: AssemblyCopyright("Copyright © Decal Development 2005")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: ComVisible(false)]
|
|
[assembly: Guid("9e1dcd9e-3c90-4352-a77e-79d3564bde9d")]
|
|
[assembly: CLSCompliant(false)]
|
|
[assembly: ReliabilityContract(Consistency.MayCorruptProcess, Cer.None)]
|
|
[assembly: InternalsVisibleTo("Decal.Adapter.Tests, PublicKey=00240000048000009400000006020000002400005253413100040000010001009f838824242905ab6215c625e21a8a15b32cff744781d3cf0d66f422db07ebd2c57d01191c0a449a6922830ff63bb9a042c8ae1b89ec08fa5c8ccf80bf1f2d2655c812d67827a6dcefa24ccdff305e39df76453be52016d8b9fd8438d799846d4eb96b9ff28e411f8e243ebc009552d52784783aed7cebe169a3fdd0f8f1a3ab")]
|
|
[assembly: AssemblyFileVersion("2.9.8.3")]
|
|
[assembly: SecurityPermission(SecurityAction.RequestMinimum)]
|
|
[assembly: AssemblyVersion("2.9.8.3")]
|