1using System.Reflection; 2using System.Runtime.CompilerServices; 3using System.Runtime.Versioning; 4 5// Information about this assembly is defined by the following attributes. 6// Change them to the values specific to your project. 7 8[assembly: AssemblyTitle("Renode")] 9#if (DEBUG) 10[assembly: AssemblyConfiguration("Debug")] 11#else 12[assembly: AssemblyConfiguration("Release")] 13#endif 14[assembly: AssemblyCompany("Antmicro")] 15[assembly: AssemblyProduct("Renode")] 16[assembly: AssemblyCopyright("(c) Antmicro")] 17[assembly: AssemblyCulture("")] 18[assembly: AssemblyMetadata("BinaryName", "renode")] 19 20#if (PLATFORM_WINDOWS && NET5_0_OR_GREATER) 21[assembly: TargetPlatform("windows10.0.17763.0")] 22[assembly: SupportedOSPlatform("windows10.0.17763.0")] 23#endif 24 25// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 26// The form "{Major}.{Minor}.*" will automatically update the build and revision, 27// and "{Major}.{Minor}.{Build}.*" will update just the revision. 28 29[assembly: AssemblyVersion("%VERSION%.*")] 30[assembly: AssemblyInformationalVersion("%INFORMATIONAL_VERSION%")] 31 32// The following attributes are used to specify the signing key for the assembly, 33// if desired. See the Mono documentation for more information about signing. 34 35//[assembly: AssemblyDelaySign(false)] 36//[assembly: AssemblyKeyFile("")] 37 38