Created
June 12, 2024 12:46
-
-
Save mirmostafa/0385444e3ac0f3253123619699112457 to your computer and use it in GitHub Desktop.
Build acceleration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project> | |
<!-- | |
This Directory.Build.props files sets default properties that apply to all projects found in | |
this folder or subfolders, recursively. | |
--> | |
<PropertyGroup> | |
<!-- Enable Build Acceleration in Visual Studio. --> | |
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio> | |
<!-- | |
If you target a framework earlier than .NET 5 (including .NET Framework and .NET Standard), | |
you should set ProduceReferenceAssembly to true in order to speed incremental builds. | |
If you multi-target and any target is before .NET 5, you need this. | |
Even if you target .NET 5 or later, having this property is fine. | |
--> | |
<ProduceReferenceAssembly>true</ProduceReferenceAssembly> | |
</PropertyGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment