Skip to content

Commit

Permalink
Load order written now includes implicit mods
Browse files Browse the repository at this point in the history
This is less confusing for end consumers, and fixes a bug on the state construction side that exists, currently
  • Loading branch information
Noggog committed Nov 23, 2020
1 parent d017e1e commit 0327eba
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Mutagen.Bethesda.Synthesis/Mutagen.Bethesda.Synthesis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Mutagen.Bethesda" Version="0.21.4" />
<PackageReference Include="Mutagen.Bethesda.Kernel" Version="0.21.4" />
<PackageReference Include="Mutagen.Bethesda" Version="0.21.5" />
<PackageReference Include="Mutagen.Bethesda.Kernel" Version="0.21.5" />
<PackageReference Include="NuGetizer" Version="0.4.11">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
5 changes: 3 additions & 2 deletions Synthesis.Bethesda.Execution/Runner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,11 @@ public static async Task<bool> Run<TKey>(
{
try
{
PluginListings.Write(
LoadOrder.Write(
loadOrderPath,
release,
loadOrderList);
loadOrderList,
removeImplicitMods: false);
}
catch (Exception ex)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<PackageReference Include="Microsoft.CodeAnalysis" Version="3.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="3.8.0" />
<PackageReference Include="Mutagen.Bethesda.Core" Version="0.21.4" />
<PackageReference Include="Mutagen.Bethesda.Core" Version="0.21.5" />
<PackageReference Include="NuGetizer" Version="0.4.11">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Mutagen.Bethesda" Version="0.21.4" />
<PackageReference Include="Mutagen.Bethesda" Version="0.21.5" />
<PackageReference Include="NuGetizer" Version="0.4.11">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion Synthesis.Bethesda/Synthesis.Bethesda.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Mutagen.Bethesda.Kernel" Version="0.21.4" />
<PackageReference Include="Mutagen.Bethesda.Kernel" Version="0.21.5" />
<PackageReference Include="NuGetizer" Version="0.4.11">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit 0327eba

Please sign in to comment.