Skip to content

Conversation

@drewnoakes
Copy link
Member

In general we want to produce reference assemblies whenever possible, as they improve incremental build performance.

Making them work end-to-end requires support from other components, such as the fast up-to-date check in VS. While support was originally added for SDK-style projects, it was not present for legacy .csproj files. Accordingly, ProduceReferenceAssemblies was set true only when the target framework was net5.0 or later (and net7.0 for F#).

VS 17.5 ships the new Build Acceleration feature, which works best when used in conjunction with reference assemblies. A customer reported in dotnet/project-system#8865 that builds in their .NET Standard projects were not accelerated. Investigation shows this is because reference assemblies are not produced for such projects.

This change enables the production of reference assemblies for all (non-F#) projects targeting .NET Standard.

In general we want to produce reference assemblies whenever possible, as they improve incremental build performance.

However they require support from other components, such as the fast up-to-date check in VS. While support was originally added for SDK-style projects, it was not present for legacy `.csproj` files. Accordingly, `ProduceReferenceAssemblies` was set `true` only when the target framework was `net5.0` or later (and `net7.0` for F#).

VS 17.5 ships the new Build Acceleration feature, which works best when used in conjunction with reference assemblies. A customer reported in dotnet/project-system#8865 that builds in their .NET Standard projects were not accelerated. Investigation shows this is because reference assemblies are not produced for such projects.

This change enables the production of reference assemblies for all (non-F#) projects targeting .NET Standard.
@baronfel
Copy link
Member

As of F# 7 (shipped with .NET 7) F# supports producing reference assemblies. @vzarytovskii should it also be enabled here for libraries?

@vzarytovskii
Copy link
Member

As of F# 7 (shipped with .NET 7) F# supports producing reference assemblies. @vzarytovskii should it also be enabled here for libraries?

We can enable them by default, yeah. It's targeting NET8p2, right?

@marcpopMSFT
Copy link
Member

@drewnoakes per offline discussion, was the decision to change this in msbuild instead and then update these tests when that flows?

@drewnoakes
Copy link
Member Author

@marcpopMSFT yes, the proposed MSBuild change is here: dotnet/msbuild#8571

@drewnoakes drewnoakes closed this Mar 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants