From 394a68f6abf3b2d3a2d8ea30aa5e90a7d850a487 Mon Sep 17 00:00:00 2001 From: MOARdV Date: Tue, 24 Jun 2014 10:40:30 -0500 Subject: [PATCH] Add KSPAssembly to AssemblyInfo.cs to allow cleaner dependent DLL linking. See http://forum.kerbalspaceprogram.com/threads/57603-0-23-5-RasterPropMonitor-make-your-IVA-a-glass-cockpit-%28v0-16%29-20-Apr?p=1229827&viewfull=1#post1229827 --- src/RemoteTech2/Properties/AssemblyInfo.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/RemoteTech2/Properties/AssemblyInfo.cs b/src/RemoteTech2/Properties/AssemblyInfo.cs index 6fd488eeb..50c78783d 100644 --- a/src/RemoteTech2/Properties/AssemblyInfo.cs +++ b/src/RemoteTech2/Properties/AssemblyInfo.cs @@ -34,3 +34,8 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] + +// Use KSPAssembly to allow other DLLs to make this DLL a dependency in a +// non-hacky way in KSP. Format is (AssemblyProduct, major, minor), and it +// does not appear to have a hard requirement to match the assembly version. +[assembly: KSPAssembly("RemoteTech2", 1, 4)]