Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.NET projects produce a reference assembly by default #8571

Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/Tasks/Microsoft.NET.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,22 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
impossible to load or build your projects from the command-line or the IDE.

This file contains .NET-specific properties, and items. This file is imported for .NET Core, .NET Standard, and .NET Framework projects.
these two files are used to encapsulate the multi-targeting and framework specific build process.

Copyright (C) Microsoft Corporation. All rights reserved.
***********************************************************************************************
-->
<Project>

<!--
============================================================
Reference Assemblies
Enable the production of a reference assembly by all .NET projects, by default.
============================================================
-->
<PropertyGroup>
<ProduceReferenceAssembly Condition=" '$(ProduceReferenceAssembly)' == '' ">true</ProduceReferenceAssembly>
drewnoakes marked this conversation as resolved.
Show resolved Hide resolved
</PropertyGroup>

<!--
============================================================
GetToolPaths
Expand Down