-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsk-ingest.csproj
34 lines (31 loc) · 1.31 KB
/
sk-ingest.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>sk_ingest</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BlingFireNuget" Version="0.1.8" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Microsoft.Playwright" Version="1.32.0" />
<PackageReference Include="Microsoft.SemanticKernel" Version="0.15.230531.5-preview" />
<PackageReference Include="PdfPig" Version="0.1.7" />
</ItemGroup>
<ItemGroup>
<None Remove="Skills/Query/skprompt.txt" />
<None Remove="Skills/Summary/skprompt.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Skills/Query/skprompt.txt" />
<EmbeddedResource Include="Skills/Summary/skprompt.txt" />
</ItemGroup>
<ItemGroup>
<None Include="appsettings.json;appsettings.development.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>