Files
UnrealEngineUWP/Engine/Source/Programs/UnrealVS/Properties/AssemblyInfo.cs
Chris Wood 366df6c726 UnrealVS v1.30: various minor stability fixes
#ttp 331470 - UnrealVS: toolbar combos disabled

#branch UE4
#proj UnrealVS
#summary

#change Minor refactor of BatchBuilder class to avoid issues when starting UnrealVS and loading options before the batch builder window opens.
#change Improved tick thread startup and shutdown. It only runs when a solution is open. This allows it to shutdown cleaner when VS closes.
#change Allowed the batch builder busy state to block solution closing. This should be prevented by VS anyway as a build would be running.
#change Minor refactor of the way CommandLineEditor and the StartupProjectSelector enable/disable and update their combo controls.
#change Version to 1.30

[CL 2055350 by Chris Wood in Main branch]
2014-04-24 08:29:14 -04:00

39 lines
1.2 KiB
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using System;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("UnrealVS")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Epic Games, Inc.")]
[assembly: AssemblyProduct("UnrealVS")]
[assembly: AssemblyCopyright("Copyright 2014 Epic Games, Inc.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: NeutralResourcesLanguage("en-US")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.30.0.0")]
[assembly: AssemblyFileVersion("1.30.0.0")]