-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to .NET 5; Change to packing with UnPak; Remove u4pak/UnrealPak support; Remove script download support; Remove old build runners and services; Remove build context and factory;
- Loading branch information
Showing
19 changed files
with
171 additions
and
423 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
{ | ||
"sdk": { "version": "3.1.403" } | ||
"sdk": { "version": "5.0.301", | ||
"rollForward": "latestMinor" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System.Threading.Tasks; | ||
using BuildEngine; | ||
using Microsoft.Extensions.Logging; | ||
using UnPak.Core; | ||
|
||
namespace PackCreator.Build | ||
{ | ||
public class BuildServiceProvider : IBuildServiceProvider | ||
{ | ||
private readonly DirectoryBuildContextFactory _buildContextFactory; | ||
private readonly ILogger<PackBuildService> _buildLogger; | ||
private readonly PakFileProvider _pakFileProvider; | ||
|
||
|
||
public BuildServiceProvider(DirectoryBuildContextFactory buildContextFactory, ILogger<PackBuildService> buildLogger, PakFileProvider pakFileProvider) { | ||
_buildContextFactory = buildContextFactory; | ||
_buildLogger = buildLogger; | ||
_pakFileProvider = pakFileProvider; | ||
} | ||
public async Task<IBuildService> GetBuild(string? buildId) { | ||
return new PackBuildService(_buildContextFactory.CreateContext(buildId), _buildLogger, _pakFileProvider); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.