You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
e66ac21 / Martin Ridgers / 2021-08-06 15:11:07 +0200 [CL 17214315 by Martin Ridgers in ue5-main branch]
25 lines
583 B
Plaintext
25 lines
583 B
Plaintext
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Version.h"
|
|
|
|
1 VERSIONINFO
|
|
FILEVERSION TS_VERSION_PROTOCOL, TS_VERSION_MINOR
|
|
PRODUCTVERSION 5 /* UE5 */
|
|
{
|
|
BLOCK "StringFileInfo" {
|
|
BLOCK "040904b0" {
|
|
VALUE "CompanyName", "Epic Games"
|
|
VALUE "ProductName", "Unreal Engine Trace Server"
|
|
VALUE "FileDescription","Hub for UE5 runtime traces (i.e. -tracehost=<host>) and tools like Unreal Insights"
|
|
VALUE "ProductVersion", "UE5"
|
|
}
|
|
}
|
|
BLOCK "VarFileInfo" {
|
|
VALUE "Translation", 0x0409, 1200
|
|
}
|
|
}
|
|
|
|
TS_ICON_ID ICON "Unreal.ico"
|
|
|
|
/* vim: set noexpandtab : */
|