Skip to content

Commit

Permalink
Auto-format source code
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Autoformatter committed Jan 31, 2024
1 parent 14184c7 commit 9c431b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions msbuild/Xamarin.MacDev.Tasks/Tasks/ScnToolTaskBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ScnTool : XamarinTask {
public string IntermediateOutputPath { get; set; } = string.Empty;

[Required]
public ITaskItem[] ColladaAssets { get; set; } = Array.Empty<ITaskItem> ();
public ITaskItem [] ColladaAssets { get; set; } = Array.Empty<ITaskItem> ();

[Required]
public string DeviceSpecificIntermediateOutputPath { get; set; } = string.Empty;
Expand All @@ -38,10 +38,10 @@ public class ScnTool : XamarinTask {

#endregion

#region Outputs
#region Outputs
[Output]
public ITaskItem[] BundleResources { get; set; } = Array.Empty<ITaskItem> ();
#endregion
public ITaskItem [] BundleResources { get; set; } = Array.Empty<ITaskItem> ();
#endregion

IList<string> GenerateCommandLineCommands (string inputScene, string outputScene)
{
Expand Down

0 comments on commit 9c431b9

Please sign in to comment.