System.UInt32 AppId { get; set; }

robot_2Generated
code_blocksInput

Description

The AppId property represents the Steam AppID for the target executable. This ID is used to identify the application on the Steam platform, allowing for integration with Steam services such as achievements, leaderboards, and cloud saves.

Usage

To set the AppId property, assign it a valid Steam AppID. This should be done before exporting the build to ensure that the application is correctly identified on Steam.

Example

// Example of setting the AppId property
ExportConfig exportConfig = new ExportConfig();
exportConfig.AppId = 480; // Set to a valid Steam AppID

// Use the exportConfig object to configure and export your build
// Ensure that the AppId is set correctly to enable Steam integration