Skip to content
Merged
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,7 @@

<!-- Generate the entry point source using the user extensions informations -->
<PropertyGroup>
<_TestingPlatformEntryPointSourceNameWithoutExtension>TestPlatformEntryPoint</_TestingPlatformEntryPointSourceNameWithoutExtension>
<_TestingPlatformEntryPointSourceName Condition=" $(Language) == 'C#' " >$(_TestingPlatformEntryPointSourceNameWithoutExtension).cs</_TestingPlatformEntryPointSourceName>
<_TestingPlatformEntryPointSourceName Condition=" $(Language) == 'VB' " >$(_TestingPlatformEntryPointSourceNameWithoutExtension).vb</_TestingPlatformEntryPointSourceName>
<_TestingPlatformEntryPointSourceName Condition=" $(Language) == 'F#' " >$(_TestingPlatformEntryPointSourceNameWithoutExtension).fs</_TestingPlatformEntryPointSourceName>
<_TestingPlatformEntryPointSourceName>TestPlatformEntryPoint$(DefaultLanguageSourceExtension)</_TestingPlatformEntryPointSourceName>
<_TestingPlatformEntryPointSourcePath>$([System.IO.Path]::Combine($(IntermediateOutputPath),$(_TestingPlatformEntryPointSourceName)))</_TestingPlatformEntryPointSourcePath>
<_TestingPlatformEntryPointSourcePath>$([MSBuild]::NormalizePath($(MSBuildProjectDirectory), $(_TestingPlatformEntryPointSourcePath)))</_TestingPlatformEntryPointSourcePath>
</PropertyGroup>
Expand Down Expand Up @@ -188,10 +185,7 @@

<!-- Generate the extensions source file using the user extensions informations -->
<PropertyGroup>
<_SelfRegisteredExtensionsSourceNameWithoutExtension>SelfRegisteredExtensions</_SelfRegisteredExtensionsSourceNameWithoutExtension>
<_SelfRegisteredExtensionsSourceName Condition=" $(Language) == 'C#' " >$(_SelfRegisteredExtensionsSourceNameWithoutExtension).cs</_SelfRegisteredExtensionsSourceName>
<_SelfRegisteredExtensionsSourceName Condition=" $(Language) == 'VB' " >$(_SelfRegisteredExtensionsSourceNameWithoutExtension).vb</_SelfRegisteredExtensionsSourceName>
<_SelfRegisteredExtensionsSourceName Condition=" $(Language) == 'F#' " >$(_SelfRegisteredExtensionsSourceNameWithoutExtension).fs</_SelfRegisteredExtensionsSourceName>
<_SelfRegisteredExtensionsSourceName>SelfRegisteredExtensions$(DefaultLanguageSourceExtension)</_SelfRegisteredExtensionsSourceName>
<_SelfRegisteredExtensionsSourcePath>$([System.IO.Path]::Combine($(IntermediateOutputPath),$(_SelfRegisteredExtensionsSourceName)))</_SelfRegisteredExtensionsSourcePath>
<_SelfRegisteredExtensionsSourcePath>$([MSBuild]::NormalizePath($(MSBuildProjectDirectory), $(_SelfRegisteredExtensionsSourcePath)))</_SelfRegisteredExtensionsSourcePath>
</PropertyGroup>
Expand Down