-
I'm in the middle of migrating some legacy projects to SDK-style. I'm getting <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- ... -->
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Resources.Extensions" Version="4.6.0" />
</ItemGroup>
<!-- ... -->
</Project> However, this results in a much, much larger output upon building. I'm talking over 100 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@just-ero can you provide a sample project to help to reproduce? It’s better to provide the build binary log (see how to Providing MSBuild Binary Logs for investigation). Be aware that the binary log may capture sensitive information. |
Beta Was this translation helpful? Give feedback.
Hello again,
I have just now realized that this is a different discussion than I anticipated. I did not check it properly beforehand.
This issue was likely the result of including a NuGet package that did not target the parent project's target framework, resulting in extra runtime assemblies being required for that specific framework version.