-
Notifications
You must be signed in to change notification settings - Fork 310
/
004-dotnet-serverless-custom-pipeline.csproj
39 lines (34 loc) · 1.33 KB
/
004-dotnet-serverless-custom-pipeline.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
<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>
<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>
</ItemGroup>
</Project>