Add Nexus cache ingestion support

This commit is contained in:
Timothy Baldridge 2020-04-01 22:50:23 -06:00
parent c5f174098b
commit be2d24a578
4 changed files with 6 additions and 3 deletions

View File

@ -25,7 +25,7 @@
</ItemGroup>
<ItemGroup>
<None Update="sql\uploaded_files_ingest.json">
<None Update="sql\nexus_export.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="sql\DownloadStates\097ad17ef4b9f5b7_68d29ad947f2bf80d887407b6e8794c37ac08f3728eca95c8774184c56df3800.ini">

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
using System.Linq;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
@ -8,12 +8,14 @@ using System.Threading.Tasks;
using Dapper;
using Microsoft.Extensions.Configuration;
using Microsoft.VisualBasic;
using Newtonsoft.Json;
using ReactiveUI;
using Wabbajack.BuildServer.Model.Models.Results;
using Wabbajack.BuildServer.Models;
using Wabbajack.BuildServer.Models.JobQueue;
using Wabbajack.Common;
using Wabbajack.Lib.Downloaders;
using Wabbajack.Lib.NexusApi;
using Wabbajack.VirtualFileSystem;
namespace Wabbajack.BuildServer.Model.Models