Files
UnrealEngineUWP/Engine/Source/Programs/DotNETCommon/MetaData.cs
Ben Marsh 20bf0eb6a1 Updating copyright notices to 2017 (copying from //Tasks/UE4/Dev-Copyright-2017).
#rb none
#lockdown Nick.Penwarden

[CL 3226823 by Ben Marsh in Main branch]
2016-12-08 08:52:44 -05:00

25 lines
794 B
C#

// Copyright 1998-2017 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 1998-2017 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