Skip to content

Commit 5759b42

Browse files
committed
fix 修改plugin
1 parent a741740 commit 5759b42

File tree

45 files changed

+57
-755
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+57
-755
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
33
<PropertyGroup>
4-
<Version>0.1.20-dev4</Version>
4+
<Version>0.1.21</Version>
55
<SKVersion>1.17.1</SKVersion>
66
</PropertyGroup>
77
</Project>

src/GraphRag.Net.Web/GraphRag.Net.Web.csproj

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,24 @@
1414
<NoWarn>CA1050,CA1707,CA2007,VSTHRD111,CS1591,RCS1110,CA5394,SKEXP0001,SKEXP0002,SKEXP0003,SKEXP0004,SKEXP0010,SKEXP0011,,SKEXP0012,SKEXP0020,SKEXP0021,SKEXP0022,SKEXP0023,SKEXP0024,SKEXP0025,SKEXP0026,SKEXP0027,SKEXP0028,SKEXP0029,SKEXP0030,SKEXP0031,SKEXP0032,SKEXP0040,SKEXP0041,SKEXP0042,SKEXP0050,SKEXP0051,SKEXP0052,SKEXP0053,SKEXP0054,SKEXP0055,SKEXP0060,SKEXP0061,SKEXP0101,SKEXP0102,KMEXP01</NoWarn>
1515
</PropertyGroup>
1616

17+
<ItemGroup>
18+
<Content Remove="graphPlugins\graph\community_search\config.json" />
19+
<Content Remove="graphPlugins\graph\community_summaries\config.json" />
20+
<Content Remove="graphPlugins\graph\create\config.json" />
21+
<Content Remove="graphPlugins\graph\global_summaries\config.json" />
22+
<Content Remove="graphPlugins\graph\mergedesc\config.json" />
23+
<Content Remove="graphPlugins\graph\relationship\config.json" />
24+
<Content Remove="graphPlugins\graph\search\config.json" />
25+
</ItemGroup>
26+
27+
<ItemGroup>
28+
<None Include="graphPlugins\**">
29+
<PackagePath>graphPlugins\</PackagePath>
30+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
31+
<Pack>true</Pack>
32+
</None>
33+
</ItemGroup>
34+
1735
<ItemGroup>
1836
<PackageReference Include="AntDesign.Charts" Version="0.5.5" />
1937
<PackageReference Include="AntDesign.ProLayout" Version="0.19.4" />
@@ -24,4 +42,42 @@
2442
<ProjectReference Include="..\GraphRag.Net\GraphRag.Net.csproj" />
2543
</ItemGroup>
2644

45+
<ItemGroup>
46+
<None Update="graphPlugins\graph\community_search\skprompt.txt">
47+
<PackagePath>graphPlugins\</PackagePath>
48+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
49+
<Pack>true</Pack>
50+
</None>
51+
<None Update="graphPlugins\graph\community_summaries\skprompt.txt">
52+
<PackagePath>graphPlugins\</PackagePath>
53+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
54+
<Pack>true</Pack>
55+
</None>
56+
<None Update="graphPlugins\graph\create\skprompt.txt">
57+
<PackagePath>graphPlugins\</PackagePath>
58+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
59+
<Pack>true</Pack>
60+
</None>
61+
<None Update="graphPlugins\graph\global_summaries\skprompt.txt">
62+
<PackagePath>graphPlugins\</PackagePath>
63+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
64+
<Pack>true</Pack>
65+
</None>
66+
<None Update="graphPlugins\graph\mergedesc\skprompt.txt">
67+
<PackagePath>graphPlugins\</PackagePath>
68+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
69+
<Pack>true</Pack>
70+
</None>
71+
<None Update="graphPlugins\graph\relationship\skprompt.txt">
72+
<PackagePath>graphPlugins\</PackagePath>
73+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
74+
<Pack>true</Pack>
75+
</None>
76+
<None Update="graphPlugins\graph\search\skprompt.txt">
77+
<PackagePath>graphPlugins\</PackagePath>
78+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
79+
<Pack>true</Pack>
80+
</None>
81+
</ItemGroup>
82+
2783
</Project>

0 commit comments

Comments
 (0)