You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-157650 #rb Martin.Ridgers #preflight skip [CL 21664702 by ionut matasaru in ue5-main branch]
25 lines
581 B
Plaintext
25 lines
581 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 "icon.ico"
|
|
|
|
/* vim: set noexpandtab : */
|