Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darrelmiller/3606bb3212431621516b083770726c7a to your computer and use it in GitHub Desktop.
Save darrelmiller/3606bb3212431621516b083770726c7a to your computer and use it in GitHub Desktop.
<!--
***********************************************************************************************
Microsoft.Common.CurrentVersion.targets
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
created a backup copy. Incorrect changes to this file will make it
impossible to load or build your projects from the command-line or the IDE.
This file defines the steps in the standard build process for .NET projects. It
contains all the steps that are common among the different .NET languages, such as
Visual Basic, and Visual C#.
Copyright (C) Microsoft Corporation. All rights reserved.
***********************************************************************************************
-->
<Project DefaultTargets="Build" InitialTargets="_CheckForInvalidConfigurationAndPlatform" TreatAsLocalProperty="OutDir" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="'$(MicrosoftCommonPropsHasBeenImported)' != 'true' and Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Property name="ImportByWildcardBeforeMicrosoftCommonTargets" value="true" Condition="'$(ImportByWildcardBeforeMicrosoftCommonTargets)' == ''"/>
<Property name="ImportByWildcardAfterMicrosoftCommonTargets" value="true" Condition="'$(ImportByWildcardAfterMicrosoftCommonTargets)' == ''"/>
<Property name="ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets" value="true" Condition="'$(ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets)' == ''"/>
<Property name="ImportUserLocationsByWildcardAfterMicrosoftCommonTargets" value="true" Condition="'$(ImportUserLocationsByWildcardAfterMicrosoftCommonTargets)' == ''"/>
</PropertyGroup>
<Import Project="$(MSBuildUserExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.targets\ImportBefore\*" Condition="'$(ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets)' == 'true' and exists('$(MSBuildUserExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.targets\ImportBefore')"/>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.targets\ImportBefore\*" Condition="'$(ImportByWildcardBeforeMicrosoftCommonTargets)' == 'true' and exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.targets\ImportBefore')"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment