Skip to content

Commit

Permalink
Fixed fsdocs-logo-src back
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorium committed Nov 22, 2024
1 parent 2d1063d commit f385997
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions build/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ module DocsTool =
"fsdocs-package-version", quoted latestEntry.NuGetVersion
"fsdocs-readme-link", quoted (READMElink.ToString ())
"fsdocs-release-notes-link", quoted (CHANGELOGlink.ToString ())
"fsdocs-logo-src", quoted ("https://raw.githubusercontent.com/fsprojects/FSharp.Control.R3/refs/heads/main/docsSrc/content/icon.png")
]
Strict = Some true
}
Expand Down
2 changes: 1 addition & 1 deletion docsSrc/_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<body>
<nav class="navbar sticky-top navbar-expand-lg bg-body">
<div class="container">
<a class="navbar-brand" href="{{root}}"><img id="fsdocs-logo" src="https://raw.githubusercontent.com/fsprojects/FSharp.Control.R3/refs/heads/main/docsSrc/content/icon.png" /></a>
<a class="navbar-brand" href="{{root}}"><img id="fsdocs-logo" src="{{fsdocs-logo-src}}" /></a>
<div id="header">
<div class="searchbox">
<input data-search-input="" class="m-3" id="search-by" type="search" placeholder="Search..." />
Expand Down
8 changes: 8 additions & 0 deletions src/FSharp.Control.R3/FSharp.Control.R3.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<PropertyGroup Label="NuGet">
<Title>FSharp.Control.R3</Title>
<Description>Extensions and wrappers for using R3 with F#</Description>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand All @@ -22,6 +23,13 @@
<Compile Include="TaskObservable.fs" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\docsSrc\content\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit f385997

Please sign in to comment.