Files
joe kirchoff 69206b50a7 Update c# metadata to include AssemblyFileVersion & bump to 5.5
#rnx

[CL 34293077 by joe kirchoff in ue5-main branch]
2024-06-11 17:58:35 -04:00

26 lines
808 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
// These are the assembly properties for all tools
[assembly: AssemblyCompany("Epic Games, Inc.")]
[assembly: AssemblyProduct("UnrealEngine")]
[assembly: AssemblyCopyright("Copyright Epic Games, Inc. All Rights Reserved.")]
[assembly: AssemblyTrademark("")]
// Use a neutral culture to avoid some localisation issues
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: NeutralResourcesLanguage("en-US")]
#if !SPECIFIC_VERSION
// Automatically generate a version number based on the time of compilation
[assembly: AssemblyVersion("5.5.0.0")]
[assembly: AssemblyFileVersion("5.5.0.0")]
[assembly: AssemblyInformationalVersion("5.5.0.0")]
#endif