forked from MachOneSoftware/PizzaBuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPizzaBuddy.csproj
37 lines (31 loc) · 1.21 KB
/
PizzaBuddy.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<AWSProjectType>Lambda</AWSProjectType>
<AssemblyName>MachOneSoftware.PizzaBuddy</AssemblyName>
<RootNamespace>MachOneSoftware.PizzaBuddy</RootNamespace>
<Authors>Mach One Software</Authors>
<Product>Pizza Buddy</Product>
</PropertyGroup>
<ItemGroup>
<Compile Remove="PizzaBuddyTests\**" />
<EmbeddedResource Remove="PizzaBuddyTests\**" />
<None Remove="PizzaBuddyTests\**" />
</ItemGroup>
<ItemGroup>
<None Remove="stylecop.json" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Alexa.NET" Version="1.5.4" />
<PackageReference Include="Amazon.Lambda.Core" Version="1.0.0" />
<PackageReference Include="Amazon.Lambda.Serialization.Json" Version="1.4.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>