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
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<AssemblyVersion>2.3.6.1</AssemblyVersion>
|
|
<FileVersion>2.3.6.1</FileVersion>
|
|
<Copyright>Copyright © 2019-2020</Copyright>
|
|
<Description>Wabbajack Application Launcher</Description>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<AssemblyName>Wabbajack</AssemblyName>
|
|
<RootNamespace>Wabbajack</RootNamespace>
|
|
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<ApplicationIcon>Resources\Icons\wabbajack.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Wabba_Mouth_Small.png" />
|
|
<Resource Include="Wabba_Mouth_Small.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
</ItemGroup>
|
|
|
|
</Project> |