mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
db3b441d19
* When IPS4 (e.g. LL) sites based on CEF fail to validate, they no longer hang the app * If a IPS4 CEF site throws a 503, or 400 error, retry * Clean out the cookies during IPS4 CEF downloads so that they don't cause 400 errors * Limit the number of connections to IPS4 sites to 20 per minute (one per 6 seconds) * If a site *does* timeout, throw a log of the CEF state into `CEFStates` for easier debugging by the WJ team * Wrote a new CLI utility to stress test the Verification routines. * Ignore files that have `\Edit Scripts\Export\` in their path
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AssemblyName>wabbajack-cli</AssemblyName>
|
|
<Company>Wabbajack</Company>
|
|
<Platforms>x64</Platforms>
|
|
<AssemblyVersion>2.3.6.1</AssemblyVersion>
|
|
<FileVersion>2.3.6.1</FileVersion>
|
|
<Copyright>Copyright © 2019-2020</Copyright>
|
|
<Description>An automated ModList installer</Description>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
|
<LangVersion>8.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.9.0-preview1" />
|
|
<PackageReference Include="F23.StringSimilarity" Version="3.1.0" />
|
|
<PackageReference Include="Markdig" Version="0.22.1" />
|
|
<PackageReference Include="System.Reactive" Version="5.0.0" />
|
|
<PackageReference Include="System.Reactive.Linq" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
<ProjectReference Include="..\Wabbajack.Lib\Wabbajack.Lib.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|