UWP Automation Scripts Missing

I download the 4.13.1 UWP version… Ran Setup.bat… GenertateProjectFiles…

Seems to run ok but there is nothing in ‘E:\Unreal\Engine\Binaries\DotNET\AutomationScripts\UWP’ folder…No UWP.Automation.dll…

What gives… Where is the UWP.Automation.dll supposed to come from… The Setup.bat GetDepencences… Right…

Below is the Error i get:

1>------ Build started: Project: UWP.Automation, Configuration: Development Any CPU ------
1>E:\Unreal\Engine\Source\Programs\AutomationTool\UWP\UWPPlatform.Automation.cs(105,32,105,47): error CS0115: ‘UWPPlatform.GetCookPlatform(bool, bool, string)’: no suitable method found to override
2>------ Build started: Project: AutomationTool, Configuration: Development Any CPU ------
2>CSC : error CS0006: Metadata file ‘E:\Unreal\Engine\Binaries\DotNET\AutomationScripts\UWP\UWP.Automation.dll’ could not be found
========== Build: 0 succeeded, 2 failed, 17 up-to-date, 0 skipped ==========

Any UWP Help would be greatly appreciated !!!

Found my own problem… The 4.13.1 UWP.Automation Project is using this:

    public override string GetCookPlatform(bool bDedicatedServer, bool bIsClientOnly, string CookFlavor)

but should now be:

public override string GetCookPlatform(bool bDedicatedServer, bool bIsClientOnly)

That little override function signature was blowing up the build for me… Wonder how come nobody else got that (or at least reported) error…

I had the same issue as well. Did the same code mod to fix it.

Thanks for the report - looks like this slipped through the cracks. I’ve pushed the fix.