Skip to content

Commit 468487f

Browse files
committed
Make TargetFramework case-insensitive when building core unit tests
1 parent bc1480c commit 468487f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fsharp/FSharp.Core.Unittests/FSharp.Core.Unittests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</PropertyGroup>
3030
<PropertyGroup>
3131
<DefineConstants Condition=" '$(TargetFramework)' == 'sl5' ">$(DefineConstants);SILVERLIGHT</DefineConstants>
32-
<DefineConstants>$(DefineConstants);EXTENSIONTYPING;$(TargetFramework)</DefineConstants>
32+
<DefineConstants>$(DefineConstants);EXTENSIONTYPING;$(TargetFramework.ToLower())</DefineConstants>
3333
</PropertyGroup>
3434
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3535
<DebugSymbols>true</DebugSymbols>

0 commit comments

Comments
 (0)