Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit50980ff

Browse files
authored
Update Props (#3027)
* Remove comment ifdefs* Add Microsoft.NET.Sdk.FSharp.props* Make TargetFrameworks work* restore {BuildSuffix}* rename sdk targets and props, refactor project logic into our repo* wrong name* Add automagic FSharp.Core reference for coreclr* Set <DefaultProjectTypeGuid to F# project system guid* Fix setup* Update sdk props
1 parent123a37f commit50980ff

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

‎src/fsharp/FSharp.Build/Microsoft.FSharp.NetSdk.props‎

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,27 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
1212

1313
<Projectxmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1414

15+
<PropertyGroup>
16+
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
17+
</PropertyGroup>
18+
19+
<PropertyGroup>
20+
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
21+
<WarningLevelCondition=" '$(WarningLevel)' == ''">3</WarningLevel>
22+
</PropertyGroup>
23+
1524
<PropertyGroup>
16-
<EnableDefaultCompileItems>false</EnableDefaultCompileItems><!--- Do not glob F# source files-->
25+
<EnableDefaultCompileItemsCondition=" '$(EnableDefaultCompileItems)' == ''">false</EnableDefaultCompileItems><!--- Do not glob F# source files-->
1726
<DefaultProjectTypeGuidCondition=" '$(DefaultProjectTypeGuid)' == ''">{F2A71F9B-5D33-465A-A702-920D77279786}</DefaultProjectTypeGuid><!-- F# project type-->
1827
</PropertyGroup>
1928

20-
<PropertyGroupCondition=" '$(MSBuildRuntimeType)' == 'core'">
21-
<FscToolPathCondition="'$(FscToolPath)' == ''">$(MSBuildThisFileDirectory)</FscToolPath>
22-
<FscToolExeCondition="'$(OS)' != 'Unix' and '$(FscToolExe)' == ''">RunFsc.cmd</FscToolExe>
23-
<FscToolExeCondition="'$(OS)' == 'Unix' and '$(FscToolExe)' == ''">RunFsc.sh</FscToolExe>
29+
<PropertyGroupCondition=" '$(OS)' != 'Unix' and Exists('$(MSBuildThisFileDirectory)\RunFsc.cmd')" >
30+
<FscToolPathCondition=" '$(FscToolPath)' == ''">$(MSBuildThisFileDirectory)</FscToolPath>
31+
<FscToolExeCondition=" '$(FscToolExe)' == ''">RunFsc.cmd</FscToolExe>
2432
</PropertyGroup>
2533

34+
<PropertyGroupCondition=" '$(OS)' == 'Unix' and Exists('$(MSBuildThisFileDirectory)\RunFsc.sh')" >
35+
<FscToolPathCondition=" '$(FscToolPath)' == ''">$(MSBuildThisFileDirectory)</FscToolPath>
36+
<FscToolExeCondition="'$(OS)' == 'Unix' and '$(FscToolExe)' == ''">RunFsc.sh</FscToolExe>
37+
</PropertyGroup>
2638
</Project>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp