This commit is contained in:
Wojciech Figat
2022-01-29 15:26:41 +01:00
parent 4495737f94
commit 1907504ff6
2 changed files with 2 additions and 2 deletions

View File

@@ -184,7 +184,7 @@ namespace Flax.Build
/// </summary>
public static void GenerateProject(ProjectFormat projectFormat)
{
using (new ProfileEventScope("GenerateProject" + projectFormat.ToString()))
using (new ProfileEventScope("GenerateProject" + projectFormat))
{
// Setup
var rules = GenerateRulesAssembly();

View File

@@ -30,7 +30,7 @@ namespace Flax.Build
/// <summary>
/// The name for the output binary module. Can be used to merge multiple native modules into single library. If set to null or <see cref="string.Empty"/> the module won't be using scripting API features.
/// </summary>
public string BinaryModuleName = null;
public string BinaryModuleName;
/// <summary>
/// True if module has native code to build. Can be used for C#-only modules.