Blueprints/BlueprintDefinitions/vs2017/DetectImageLabelsServerless-FSharp/template/src/BlueprintBaseName.1/BlueprintBaseName.1.fsproj (23 lines of code) (raw):

<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>netcoreapp2.1</TargetFramework> <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> <AWSProjectType>Lambda</AWSProjectType> <!-- This property makes the build directory similar to a publish directory and helps the AWS .NET Lambda Mock Test Tool find project dependencies. --> <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> </PropertyGroup> <ItemGroup> <PackageReference Include="AWSSDK.S3" Version="3.7.300.0" /> <PackageReference Include="AWSSDK.Rekognition" Version="3.7.300.0" /> <PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" /> <PackageReference Include="Amazon.Lambda.Serialization.Json" Version="2.1.1" /> <PackageReference Include="Amazon.Lambda.S3Events" Version="3.1.0" /> </ItemGroup> <ItemGroup> <Compile Include="Function.fs" /> </ItemGroup> <ItemGroup> <None Include="aws-lambda-tools-defaults.json" /> <None Include="Readme.md" /> <None Include="serverless.template" /> </ItemGroup> </Project>