Skip to content

Commit 8259063

Browse files
dbrattliclaude
andauthored
chore: Bump Fable.Core from 5.0.0-beta.4 to 5.0.0-beta.5 (#210)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 442f239 commit 8259063

File tree

3 files changed

+26
-17
lines changed

3 files changed

+26
-17
lines changed

.paket/Paket.Restore.targets

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,9 @@
241241
<OmitContent Condition="%(PaketReferencesFileLinesInfo.Splits) &gt;= 7">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[6])</OmitContent>
242242
<ImportTargets Condition="%(PaketReferencesFileLinesInfo.Splits) &gt;= 8">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[7])</ImportTargets>
243243
<Aliases Condition="%(PaketReferencesFileLinesInfo.Splits) &gt;= 9">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[8])</Aliases>
244+
<ReferenceCondition Condition="%(PaketReferencesFileLinesInfo.Splits) &gt;= 10">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[9])</ReferenceCondition>
244245
</PaketReferencesFileLinesInfo>
245-
<PackageReference Condition=" '$(ManagePackageVersionsCentrally)' != 'true' Or '%(PaketReferencesFileLinesInfo.Reference)' == 'Direct' " Include="%(PaketReferencesFileLinesInfo.PackageName)">
246+
<PackageReference Condition=" ('$(ManagePackageVersionsCentrally)' != 'true' Or '%(PaketReferencesFileLinesInfo.Reference)' == 'Direct') AND ('%(PaketReferencesFileLinesInfo.ReferenceCondition)' == 'true' Or $(%(PaketReferencesFileLinesInfo.ReferenceCondition)) == 'true')" Include="%(PaketReferencesFileLinesInfo.PackageName)">
246247
<Version Condition=" '$(ManagePackageVersionsCentrally)' != 'true' ">%(PaketReferencesFileLinesInfo.PackageVersion)</Version>
247248
<PrivateAssets Condition=" ('%(PaketReferencesFileLinesInfo.AllPrivateAssets)' == 'true') Or ('$(PackAsTool)' == 'true') ">All</PrivateAssets>
248249
<ExcludeAssets Condition=" %(PaketReferencesFileLinesInfo.CopyLocal) == 'false' or %(PaketReferencesFileLinesInfo.AllPrivateAssets) == 'exclude'">runtime</ExcludeAssets>
@@ -251,10 +252,8 @@
251252
<Aliases Condition=" %(PaketReferencesFileLinesInfo.Aliases) != ''">%(PaketReferencesFileLinesInfo.Aliases)</Aliases>
252253
<Publish Condition=" '$(PackAsTool)' == 'true' ">true</Publish>
253254
<AllowExplicitVersion>true</AllowExplicitVersion>
254-
255255
</PackageReference>
256-
257-
<PackageVersion Include="%(PaketReferencesFileLinesInfo.PackageName)">
256+
<PackageVersion Condition="('$(ManagePackageVersionsCentrally)' != 'true' Or '%(PaketReferencesFileLinesInfo.Reference)' == 'Direct') AND ('%(PaketReferencesFileLinesInfo.ReferenceCondition)' == 'true' Or $(%(PaketReferencesFileLinesInfo.ReferenceCondition)) == 'true')" Include="%(PaketReferencesFileLinesInfo.PackageName)">
258257
<Version>%(PaketReferencesFileLinesInfo.PackageVersion)</Version>
259258
</PackageVersion>
260259
</ItemGroup>
@@ -319,7 +318,17 @@
319318
</ItemGroup>
320319

321320
<Error Text="Error Because of PAKET_ERROR_ON_MSBUILD_EXEC (not calling fix-nuspecs)" Condition=" '$(PAKET_ERROR_ON_MSBUILD_EXEC)' == 'true' " />
322-
<Exec Condition="@(_NuspecFiles) != ''" Command='$(PaketCommand) fix-nuspecs files "@(_NuspecFiles)" project-file "$(PaketProjectFile)" ' />
321+
<Exec Condition="@(_NuspecFiles) != ''" Command='$(PaketCommand) show-conditions -s' ConsoleToMSBuild="true" StandardOutputImportance="low">
322+
<Output TaskParameter="ConsoleOutput" ItemName="_ConditionProperties"/>
323+
</Exec>
324+
<ItemGroup>
325+
<_DefinedConditionProperties Include="@(_ConditionProperties)" Condition="$(%(Identity)) == 'true'"/>
326+
</ItemGroup>
327+
<PropertyGroup>
328+
<_ConditionsParameter></_ConditionsParameter>
329+
<_ConditionsParameter Condition="@(_DefinedConditionProperties) != ''">--conditions @(_DefinedConditionProperties)</_ConditionsParameter>
330+
</PropertyGroup>
331+
<Exec Condition="@(_NuspecFiles) != ''" Command='$(PaketCommand) fix-nuspecs files "@(_NuspecFiles)" project-file "$(PaketProjectFile)" $(_ConditionsParameter)' />
323332
<Error Condition="@(_NuspecFiles) == ''" Text='Could not find nuspec files in "$(AdjustedNuspecOutputPath)" (Version: "$(PackageVersion)"), therefore we cannot call "paket fix-nuspecs" and have to error out!' />
324333

325334
<ConvertToAbsolutePath Condition="@(_NuspecFiles) != ''" Paths="@(_NuspecFiles)">

paket.dependencies

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ storage: none
55
framework: netstandard2.0, netstandard2.1, net6.0, net8.0, net9.0, net10.0
66

77
nuget FSharp.Core >= 5.0.0 lowest_matching: true
8-
nuget Fable.Core 5.0.0-beta.4
8+
nuget Fable.Core 5.0.0-beta.5
99

1010
group Test
1111
source https://api.nuget.org/v3/index.json
1212
storage: none
1313
framework: net9.0
1414

1515
nuget FSharp.Core
16-
nuget Fable.Core 5.0.0-beta.4
16+
nuget Fable.Core 5.0.0-beta.5
1717
nuget Microsoft.NET.Test.Sdk ~> 16
1818
nuget xunit ~> 2
1919
nuget xunit.runner.visualstudio ~> 2
@@ -24,7 +24,7 @@ group Examples
2424
framework: net10.0
2525

2626
nuget FSharp.Core
27-
nuget Fable.Core 5.0.0-beta.4
27+
nuget Fable.Core 5.0.0-beta.5
2828
nuget Feliz.ViewEngine
2929
nuget Zanaptak.TypedCssClasses
3030
nuget FSharp.Control.AsyncRx

paket.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ STORAGE: NONE
22
RESTRICTION: || (== net10.0) (== net6.0) (== net8.0) (== net9.0) (== netstandard2.0) (== netstandard2.1)
33
NUGET
44
remote: https://api.nuget.org/v3/index.json
5-
Fable.Core (5.0.0-beta.4)
5+
Fable.Core (5.0.0-beta.5)
66
FSharp.Core (>= 4.7.2)
77
FSharp.Core (5.0)
88

@@ -11,13 +11,13 @@ STORAGE: NONE
1111
RESTRICTION: == net10.0
1212
NUGET
1313
remote: https://api.nuget.org/v3/index.json
14-
Fable.Core (5.0.0-beta.4)
14+
Fable.Core (5.0.0-beta.5)
1515
FSharp.Core (>= 4.7.2)
1616
Feliz.ViewEngine (1.0.3)
1717
FSharp.Core (>= 4.7)
1818
FSharp.Control.AsyncRx (1.6.7)
1919
FSharp.Core (>= 6.0.6)
20-
FSharp.Core (10.0.100)
20+
FSharp.Core (10.0.103)
2121
Zanaptak.TypedCssClasses (1.0)
2222
FSharp.Core (>= 4.3.4)
2323

@@ -26,9 +26,9 @@ STORAGE: NONE
2626
RESTRICTION: == net9.0
2727
NUGET
2828
remote: https://api.nuget.org/v3/index.json
29-
Fable.Core (5.0.0-beta.4)
29+
Fable.Core (5.0.0-beta.5)
3030
FSharp.Core (>= 4.7.2)
31-
FSharp.Core (10.0.100)
31+
FSharp.Core (10.0.103)
3232
Microsoft.CodeCoverage (18.0.1)
3333
Microsoft.NET.Test.Sdk (16.11)
3434
Microsoft.CodeCoverage (>= 16.11)
@@ -39,15 +39,15 @@ NUGET
3939
Microsoft.TestPlatform.ObjectModel (>= 18.0.1)
4040
Newtonsoft.Json (>= 13.0.3)
4141
Newtonsoft.Json (13.0.4)
42-
System.Collections.Immutable (10.0)
43-
System.Reflection.Metadata (10.0)
44-
System.Collections.Immutable (>= 10.0)
42+
System.Collections.Immutable (10.0.3)
43+
System.Reflection.Metadata (10.0.3)
44+
System.Collections.Immutable (>= 10.0.3)
4545
xunit (2.9.3)
4646
xunit.analyzers (>= 1.18)
4747
xunit.assert (>= 2.9.3)
4848
xunit.core (2.9.3)
4949
xunit.abstractions (2.0.3)
50-
xunit.analyzers (1.26)
50+
xunit.analyzers (1.27)
5151
xunit.assert (2.9.3)
5252
xunit.core (2.9.3)
5353
xunit.extensibility.core (2.9.3)

0 commit comments

Comments
 (0)