Files
UnrealEngineUWP/Engine/Source/Programs/DotNETCommon/MetaData.cs
buildmachine 7e38813b4f Merging Engine/Source/Programs/DotNETCommon/MetaData.cs from Dev-EngineMerge to Main.
#rnx
#rb none
#jira none

[CL 10870957 by buildmachine in Main branch]
2019-12-26 23:03:39 -05:00

25 lines
774 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.Reflection;
using System.Runtime.InteropServices;
using System.Resources;
// These are the assembly properties for all tools
[assembly: AssemblyCompany( "Epic Games, Inc." )]
[assembly: AssemblyProduct( "UE4" )]
[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: NeutralResourcesLanguageAttribute( "" )]
#if !SPECIFIC_VERSION
// Automatically generate a version number based on the time of compilation
[assembly: AssemblyVersion( "4.0.0.0" )]
[assembly: AssemblyInformationalVersion("4.0.0")]
#endif