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

Commit9c91187

Browse files
committed
use the $(DelaySign) value directly so later tools can consume the value
This is necessary for AL.EXE to appropriately sign the satellite assemblies.
1 parent9f98c34 commit9c91187

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎src/FSharpSource.targets‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<!-- In the open source "Mono" build we always fully sign the binaries with the public test.snk, apart from FSharp.Core, which gets the MSFT key-->
2929
<WhenCondition="'$(MonoPackaging)' == 'true' AND '$(AssemblyName)'!='FSharp.Core'" >
3030
<PropertyGroup>
31-
<OtherFlags>$(OtherFlags) --keyfile:"$(FSharpSourcesRoot)\fsharp\test.snk"</OtherFlags>
31+
<KeyOriginatorFile>$(FSharpSourcesRoot)\fsharp\test.snk</KeyOriginatorFile>
3232
<DefineConstants>STRONG_NAME_FSHARP_COMPILER_WITH_TEST_KEY;$(DefineConstants)</DefineConstants>
3333
<StrongNames>true</StrongNames>
3434
<MicroBuildAssemblyVersionCondition="'$(MicroBuildAssemblyVersion)' == ''">$(FSCoreVersion)</MicroBuildAssemblyVersion>
@@ -39,9 +39,9 @@
3939
<!-- We have to do unit test DLLs well because they can see the internals of other strong-named DLLs-->
4040
<Otherwise>
4141
<PropertyGroup>
42-
<OtherFlagsCondition="'$(TargetDotnetProfile)' == 'coreclr' or $(BUILD_PUBLICSIGN) != '1'">$(OtherFlags) --delaysign+</OtherFlags>
43-
<OtherFlagsCondition="'$(TargetDotnetProfile)' != 'coreclr' and $(BUILD_PUBLICSIGN) == '1'">$(OtherFlags) --publicsign+</OtherFlags>
44-
<OtherFlags>$(OtherFlags) --keyfile:"$(FSharpSourcesRoot)\fsharp\msft.pubkey"</OtherFlags>
42+
<SignAssembly>true</SignAssembly>
43+
<DelaySign>true</DelaySign>
44+
<AssemblyOriginatorKeyFile>$(FSharpSourcesRoot)\fsharp\msft.pubkey</AssemblyOriginatorKeyFile>
4545
<DefineConstants>STRONG_NAME_AND_DELAY_SIGN_FSHARP_COMPILER_WITH_MSFT_KEY;$(DefineConstants)</DefineConstants>
4646
<StrongNames>true</StrongNames>
4747
<MicroBuildAssemblyVersion>$(FSCoreVersion)</MicroBuildAssemblyVersion>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp