Browse Source

Accelerate local builds in Visual Studio (#3026)

* Accelerate builds of SDK-style .NET projects https://github.com/dotnet/project-system/blob/main/docs/build-acceleration.md#validate-builds-are-accelerated

* Verbose logging produced "Ensure projects producing the following outputs have the 'ProduceReferenceAssembly' MSBuild property set to 'true': 'D:\GitWorkspace\ILSpy\ICSharpCode.Decompiler\bin\Debug\netstandard2.0\ICSharpCode.Decompiler.dll'" - this relates to the documented problem of netstandard2.0 projects not generating the necessary reference assemblies (direct issue link https://github.com/dotnet/project-system/issues/8865) No harm for netcore projects as these produce those ref asms by default.
pull/3042/head
Christoph Wille 2 years ago committed by GitHub
parent
commit
b482ae937f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      Directory.Build.props

6
Directory.Build.props

@ -0,0 +1,6 @@ @@ -0,0 +1,6 @@
<Project>
<PropertyGroup>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>
</Project>
Loading…
Cancel
Save