Skip to content

Commit 62f8794

Browse files
committed
allow docgen to be run from 7.x linux
1 parent 2979300 commit 62f8794

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build/scripts/Commandline.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Execution hints can be provided anywhere on the command line
136136
let parsed = {
137137
NonInteractive = args |> List.exists (fun x -> x = "non-interactive")
138138
SkipTests = skipTests
139-
GenDocs = (args |> List.exists (fun x -> x = "gendocs") || target = "build") && not isMono
139+
GenDocs = (args |> List.exists (fun x -> x = "gendocs") || target = "build")
140140
Seed =
141141
match args |> List.tryFind (fun x -> x.StartsWith("seed:")) with
142142
| Some t -> t.Replace("seed:", "")

src/CodeGeneration/DocGenerator/DocGenerator.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<VersionSuffix>alpha</VersionSuffix>
88
<!-- CAC001: We dont need to set ConfigureAwait(false) here -->
99
<NoWarn>NU1701,NU1605,CAC001</NoWarn>
10+
<LangVersion>8.0</LangVersion>
1011
</PropertyGroup>
1112
<ItemGroup>
1213
<PackageReference Include="AsciiDocNet" Version="1.0.0-alpha6" />

0 commit comments

Comments
 (0)