Skip to content

Commit 1e906c4

Browse files
committed
chlog task
1 parent 0da1902 commit 1e906c4

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/docs.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
jobs:
1818
build:
19-
runs-on: ubuntu-latest
19+
runs-on: windows-latest
2020
steps:
2121
- name: Git Checkout source code
2222
uses: actions/checkout@v4
@@ -34,9 +34,15 @@ jobs:
3434
cd Src
3535
ls
3636
37+
3738
- name: Build code to make xml file
3839
run: dotnet build --configuration Release # see required xml tags: https://fsprojects.github.io/FSharp.Formatting/zero-to-hero.html#Generating-API-documentation
3940

41+
# Run dotnet build --configuration Release
42+
# Determining projects to restore...
43+
# Restored /home/runner/work/Rhino.Scripting.Fsharp/Rhino.Scripting.Fsharp/Rhino.Scripting.Fsharp.fsproj (in 1.22 sec).
44+
# FSC : error FS0225: Source file '/home/runner/work/Rhino.Scripting.Fsharp/Rhino.Scripting.Fsharp/Src/UtilRhinoScriptingFSharp.fs' could not be found [/home/runner/work/Rhino.Scripting.Fsharp/Rhino.Scripting.Fsharp/Rhino.Scripting.Fsharp.fsproj]
45+
4046
- name: copy README.md to Docs/index.md
4147
run: cp README.md Docs/index.md
4248

Rhino.Scripting.Fsharp.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!--https://docs.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props-->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<OutputType>Library</OutputType>
4+
<OutputType>library</OutputType>
55
<TargetFramework>net48</TargetFramework> <!-- so it can be used in latest Rhino 7 too, net48 needed since RhinoCommon.dll 7.5 -->
66
<UseWPF>false</UseWPF>
77
<UseWindowsForms>true</UseWindowsForms> <!--to get screen resolution, and file dialogs-->
@@ -63,6 +63,7 @@
6363
<PackageReference Include="FSharp.Core" Version="6.0.7" /> <!-- so that dependabot does not fail, even though it is set to be excluded -->
6464
<PackageReference Include="RhinoCommon" Version="7.0.20314.3001" PrivateAssets="all" ExcludeAssets="runtime" />
6565
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
66+
<PackageReference Include="Ionide.KeepAChangelog.Tasks" Version="0.1.8" PrivateAssets="all" />
6667
<PackageReference Include="Rhino.Scripting" Version="0.8.2" />
6768

6869
<!-- <Reference Include="FsEx" HintPath="../FsEx/bin/Release/net472/FsEx.dll" /> -->

0 commit comments

Comments
 (0)