Skip to content

Commit 42ab64e

Browse files
committed
Release 3.0.0-rc.15 pre
1 parent 5802326 commit 42ab64e

File tree

9 files changed

+11
-10
lines changed

9 files changed

+11
-10
lines changed

Directory.Build.props

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
<!-- suppress false positive warning FS2003 about invalid version of AssemblyInformationalVersionAttribute -->
1818
<!-- supress NU5105 triggered by trailing dotted elements such as .43 and .2 in e.g.: pr.43-rc1.2: The package version '<X>' uses SemVer 2.0.0 or components of SemVer 1.0.0 that are not supported on legacy clients. Change the package version to a SemVer 1.0.0 string. If the version contains a release label it must start with a letter. This message can be ignored if the package is not intended for older clients. -->
1919
<NoWarn>$(NoWarn);FS2003;NU5105</NoWarn>
20-
<!-- <PinnedBaselineRootPackage Condition=" '$(Configuration)' == 'Release' ">[3.0.0-rc.14, 4.0.0)</PinnedBaselineRootPackage>-->
21-
<!-- <PinnedDynamoStoreRootPackage Condition=" '$(Configuration)' == 'Release' ">[3.0.0-rc.14, 4.0.0)</PinnedDynamoStoreRootPackage>-->
20+
<PinnedBaseVersion Condition=" '$(Configuration)' == 'Release' ">3.0.0-rc.14.3</PinnedBaseVersion>
21+
<PinnedBaselineRootPackage Condition=" '$(Configuration)' == 'Release' ">[$(PinnedBaseVersion), 4.0.0)</PinnedBaselineRootPackage>
22+
<PinnedDynamoStoreRootPackage Condition=" '$(Configuration)' == 'Release' ">[$(PinnedBaseVersion), 4.0.0)</PinnedDynamoStoreRootPackage>
2223
</PropertyGroup>
2324
<ItemGroup>
2425
<!-- SourceLink etc -->
File renamed without changes.

src/Propulsion/Propulsion.fsproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<TargetFramework>net6.0</TargetFramework>
77
<!-- NOTE FSharp.Core dep is implies by what `FSharp.Control.TaskSeq` dictates; see below -->
88
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
9-
<!-- <PackageValidationBaselineVersion>3.0.0-rc.14</PackageValidationBaselineVersion>-->
9+
<PackageValidationBaselineVersion>3.0.0-rc.14.3</PackageValidationBaselineVersion>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
@@ -19,14 +19,14 @@
1919
<Compile Include="Streams.fs" />
2020
<Compile Include="Sync.fs" />
2121
<Compile Include="Sinks.fs" />
22-
<Compile Include="Feed.fs" />
23-
<Compile Include="FeedMonitor.fs" />
24-
<Compile Include="FeedReader.fs" />
25-
<Compile Include="FeedSource.fs" />
26-
<Compile Include="SinglePassFeedSource.fs" />
27-
<Compile Include="JsonSource.fs" />
28-
<Compile Include="PeriodicSource.fs" />
2922
<Compile Include="StreamFilter.fs" />
23+
<Compile Include="Feed\Feed.fs" />
24+
<Compile Include="Feed\FeedMonitor.fs" />
25+
<Compile Include="Feed\FeedReader.fs" />
26+
<Compile Include="Feed\FeedSource.fs" />
27+
<Compile Include="Feed\SinglePassFeedSource.fs" />
28+
<Compile Include="Feed\JsonSource.fs" />
29+
<Compile Include="Feed\PeriodicSource.fs" />
3030
</ItemGroup>
3131

3232
<ItemGroup>

0 commit comments

Comments
 (0)