Skip to content

Commit 6745c28

Browse files
committed
One UBT argument was faulty
1 parent 99ba667 commit 6745c28

File tree

4 files changed

+3
-23
lines changed

4 files changed

+3
-23
lines changed

src/Nuke.Unreal.Ini/Nuke.Unreal.Ini.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<PackageId>md.Nuke.Unreal.Ini</PackageId>
5-
<Version>2.2.18</Version>
5+
<Version>2.2.21</Version>
66
<Authors>David Mórász</Authors>
77
<Company>mcro.de</Company>
88
<Description>Ini configuration parser for Unreal Engine</Description>

src/Nuke.Unreal/Nuke.Unreal.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<LangVersion>12</LangVersion>
55
<Nullable>enable</Nullable>
66
<PackageId>md.Nuke.Unreal</PackageId>
7-
<Version>2.2.18</Version>
7+
<Version>2.2.21</Version>
88
<Authors>David Mórász</Authors>
99
<Company>mcro.de</Company>
1010
<Description>Commonly used Unreal Engine targets and tasks for the Nuke execution engine</Description>

src/Nuke.Unreal/Tools/UatConfigGenerated.cs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -22363,26 +22363,6 @@ public virtual OpenEditorConfig Project(params object[] values)
2236322363
}
2236422364
return (OpenEditorConfig) this;
2236522365
}
22366-
22367-
22368-
22369-
public virtual OpenEditorConfig (params object[] values)
22370-
{
22371-
if (true)
22372-
{
22373-
AppendArgument(new UnrealToolArgument(
22374-
"- -",
22375-
Value: values != null && values.Length > 0 ? string.Join("+", values) : null,
22376-
Setter: '=',
22377-
Meta: new(
22378-
Compatibility: UnrealCompatibility.UE_5_Latest,
22379-
AllowMultiple: true
22380-
)
22381-
));
22382-
}
22383-
return (OpenEditorConfig) this;
22384-
}
22385-
2238622366

2238722367
private ToolConfig[] _configs = null;
2238822368
protected override ToolConfig[] Configs => _configs ??= new ToolConfig[]

src/Nuke.Unreal/UnrealPlatform.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public class UnrealPlatform : Enumeration, ICloneable<UnrealPlatform>
157157

158158
/// <summary>
159159
/// Get the high-level platform from a bit-field platform flag
160-
/// </summary
160+
/// </summary>
161161
public static UnrealPlatform FromFlag(UnrealPlatformFlag flag)
162162
{
163163
return flag switch

0 commit comments

Comments
 (0)