Skip to content

Commit

Permalink
fix:copy nuget xml docs in demo web app.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthuridea committed Dec 25, 2023
1 parent 98f717d commit a161a13
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/LLMServiceHub/LLMServiceHub.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,11 @@
<ProjectReference Include="..\LLMService.Baidu.Wenxinworkshop\LLMService.Baidu.Wenxinworkshop.csproj" />
<ProjectReference Include="..\LLMService.OpenAI.ChatGPT\LLMService.OpenAI.ChatGPT.csproj" />
</ItemGroup>-->

<Target Name="_ResolveCopyLocalNuGetPkgXmls" AfterTargets="ResolveReferences">
<ItemGroup>
<!-- Copy XML files from all PackageReferences to output dir -->
<ReferenceCopyLocalPaths Include="@(ReferenceCopyLocalPaths->'%(RootDir)%(Directory)%(Filename).xml')"
Condition="'%(ReferenceCopyLocalPaths.NuGetPackageId)'!='' and Exists('%(RootDir)%(Directory)%(Filename).xml')" />
</ItemGroup>
</Target>
</Project>

0 comments on commit a161a13

Please sign in to comment.