Skip to content

Commit 5da30ea

Browse files
authored
chore(LLMs): add output parameter for tools (#7479)
1 parent b74ab70 commit 5da30ea

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"rollForward": false
1111
},
1212
"bootstrapblazor.llmsdocsgenerator": {
13-
"version": "10.0.1",
13+
"version": "10.0.2",
1414
"commands": [
1515
"llms-docs"
1616
],
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project>
22

3-
<Target Name="LLMs" AfterTargets="AfterPublish" Condition="'$(TargetFramework)' == '$(RunTargetFramework)'">
3+
<Target Name="LLMs" AfterTargets="Publish" Condition="'$(TargetFramework)' == '$(RunTargetFramework)'">
44
<Message Text="LLMs documentation generating ..." Importance="high"></Message>
55
<Exec Command="dotnet tool restore"></Exec>
6-
<Exec Command="dotnet llms-docs --root=$(MSBuildThisFileDirectory)"></Exec>
6+
<Exec Command="dotnet llms-docs --root=$(MSBuildThisFileDirectory) --output=$(PublishDir)"></Exec>
77
</Target>
88

99
</Project>

0 commit comments

Comments
 (0)