This commit is contained in:
Halgari 2022-10-04 19:39:06 -06:00
parent 6913d70613
commit 736bae69eb
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
### Changelog
#### Version - 3.0.1.9 - 10/4/2022
* Lots of compiler improvements for faster compilation
* Limit the log view to the last 200 messages for better UI performance
* Optimize BSA Building to give better performance and UI feedback
#### Version - 3.0.1.8 - 10/1/2022
* Fix broken ZEditMerge code (this stream is not readable)
* Update out-of-date dependencies

View File

@ -64,7 +64,7 @@
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="Fizzler.Systems.HtmlAgilityPack" Version="1.2.1" />
<PackageReference Include="Fody" Version="6.6.3">
<PackageReference Include="Fody" Version="6.6.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

View File

@ -499,7 +499,7 @@ public abstract class AInstaller<T>
if (bsaPathsToNotBuild.Contains(f))
return f;
_logger.LogInformation("Deleting {RelativePath} it's not part of this ModList", relativeTo);
//_logger.LogInformation("Deleting {RelativePath} it's not part of this ModList", relativeTo);
f.Delete();
return f;
}).Sink();