You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ImportProject="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props') and $(FrameworkIdentifier) != 'NetCore'" />
8
+
9
+
<ImportProject="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props') and $(FrameworkIdentifier) != 'NetCore' and $(IncludeMicrosoftCommon) == 'true'" />
8
10
<!-- Import props/targets with $(RepoRoot) since msbuild takes the relative path based on settings.targets and not with respect to the project. -->
<ImportProject="$(MSBuildToolsPath)\Microsoft.CSharp.targets"Condition="($(TargetFrameworkProfile) == '' or $(TargetFrameworkProfile) != 'Profile259') and $(TargetPlatformIdentifier) != 'UAP' and $(FrameworkIdentifier) != 'NetCore'"/>
5
+
<ImportProject="$(MSBuildToolsPath)\Microsoft.CSharp.targets"Condition="($(TargetFrameworkProfile) == '' or $(TargetFrameworkProfile) != 'Profile259') and $(TargetPlatformIdentifier) != 'UAP' and $(FrameworkIdentifier) != 'NetCore' and $(IncludeMicrosoftCommon) == 'true'"/>
Copy file name to clipboardExpand all lines: src/Adapter/MSTest.CoreAdapter/Discovery/AssemblyEnumerator.cs
+4-7Lines changed: 4 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -55,10 +55,9 @@ public override object InitializeLifetimeService()
55
55
/// <summary>
56
56
/// Enumerates through all types in the assembly in search of valid test methods.
57
57
/// </summary>
58
-
/// <param name="assemblyFileName"> The assembly file name. </param>
59
-
/// <param name="warnings"> Contains warnings if any, that need to be passed back to the caller. </param>
60
-
/// <returns> A collection of Test Elements. </returns>
61
-
[SuppressMessage("Microsoft.Design","CA1031:DoNotCatchGeneralExceptionTypes",Justification="Catching a generic exception since it is a requirement to not abort discovery in case of any errors.")]
0 commit comments