-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalexa_dotnet_lambda_helloworld.csproj
27 lines (27 loc) · 1.07 KB
/
alexa_dotnet_lambda_helloworld.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<AWSProjectType>Lambda</AWSProjectType>
</PropertyGroup>
<ItemGroup>
<Content Remove="locales\locales.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="locales\locales.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Alexa.NET" Version="1.13.0" />
<PackageReference Include="Alexa.NET.RequestHandlers" Version="4.1.1" />
<PackageReference Include="libc.translation" Version="1.0.0" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="AWSSDK.S3" Version="3.3.110.12" />
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="3.3.100.1" />
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="4.1.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="img\" />
</ItemGroup>
</Project>