This file contains hidden or 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> | |
<ItemGroup> | |
<Projects Include="$(MSBuildStartupDirectory)\**\*.*proj" /> | |
</ItemGroup> | |
<Target Name="VSTest"> | |
<Message Importance="High" Text="Found project: %(Projects.Identity)" /> | |
<MSBuild Projects="@(Projects)" Targets="VSTest" BuildInParallel="true" SkipNonexistentTargets="true" /> | |
</Target> | |
<Target Name="Restore"> | |
<Message Importance="High" Text="Found project: %(Projects.Identity)" /> |
This file contains hidden or 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> | |
<!-- | |
neeeds to be in Directory.Build.targets to be included | |
after SDK's TargetFrameworkIdentifier/-Version inference | |
--> | |
<PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NetCoreApp' | |
and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '5.0'))"> | |
<DefineConstants>$(DefineConstants);AT_LEAST_NET5_0</DefineConstants> | |
</PropertyGroup> | |
</Project> |
This file contains hidden or 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> | |
<ItemGroup> | |
<FeatureFlag Include="SUPPORTS_ECDSA" MinimumTargetFrameworks="netstandard1.6;net47" /> | |
<FeatureFlag Include="SUPPORTS_GENERIC_HOST" MinimumTargetFrameworks="netcoreapp2.2;netstandard2.1" /> | |
<FeatureFlag Include="SUPPORTS_SERVICE_PROVIDER_IN_HTTP_MESSAGE_HANDLER_BUILDER" MinimumTargetFrameworks="netcoreapp2.2;netstandard2.1" /> | |
<FeatureFlag Include="SUPPORTS_CERTIFICATE_HASHING_WITH_SPECIFIED_ALGORITHM" MinimumTargetFrameworks="netcoreapp2.1;netstandard2.1;net48" /> | |
</ItemGroup> | |
<!-- |
OlderNewer