forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 1
/
004-dotnet-serverless-custom-pipeline.csproj
45 lines (40 loc) · 1.64 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
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName/>
<RootNamespace/>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
<UserSecretsId>5ee045b0-aea3-4f08-8d31-32d1a6f8fed0</UserSecretsId>
<NoWarn>$(NoWarn);CA1050;CA2000;CA1707;CA1303;CA2007;CA1724;CA1861;</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\service\Core\Core.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Memory.Data" Version="8.0.0"/>
</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>