-
Notifications
You must be signed in to change notification settings - Fork 321
/
002-dotnet-Serverless.csproj
60 lines (53 loc) · 2.28 KB
/
002-dotnet-Serverless.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\extensions\KM\KernelMemory\KernelMemory.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Memory.Data" />
</ItemGroup>
<ItemGroup>
<!-- If you plan on using LLamaSharp, you will need to enable one of these backends,
which depend on the hardware hosting Kernel Memory code. -->
<!-- <PackageReference Include="LLamaSharp.Backend.Cpu" /> -->
<!-- <PackageReference Include="LLamaSharp.Backend.Cuda11" /> -->
<!-- <PackageReference Include="LLamaSharp.Backend.Cuda12" /> -->
</ItemGroup>
<ItemGroup>
<None Remove="file1-Wikipedia-Carbon.txt" />
<Content Include="file1-Wikipedia-Carbon.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="file2-Wikipedia-Moon.txt" />
<Content Include="file2-Wikipedia-Moon.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="file3-lorem-ipsum.docx" />
<Content Include="file3-lorem-ipsum.docx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="file4-KM-Readme.pdf" />
<Content Include="file4-KM-Readme.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="file5-NASA-news.pdf" />
<Content Include="file5-NASA-news.pdf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="file6-ANWC-image.jpg" />
<Content Include="file6-ANWC-image.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="file7-submarine.html" />
<Content Include="file7-submarine.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Remove="file8-data.xlsx" />
<Content Include="file8-data.xlsx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>