-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBalsamicSolutions.CodeCommit2Teams.csproj
More file actions
33 lines (32 loc) · 1.63 KB
/
Copy pathBalsamicSolutions.CodeCommit2Teams.csproj
File metadata and controls
33 lines (32 loc) · 1.63 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<AWSProjectType>Lambda</AWSProjectType>
<Configurations>Debug;Release;Lambda-Debug;Lambda-Release</Configurations>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
<Description>AWS Lambda message processor that posts messages to Teams from CodeCommit notifications and triggers</Description>
<Copyright>Copyright 4/1/2020 (c) Balsamic Solutions LLC.</Copyright>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<PreserveCompilationContext>false</PreserveCompilationContext>
</PropertyGroup>
<ItemGroup>
<None Remove="timeZones.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="timeZones.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.Core" Version="1.1.0" />
<PackageReference Include="Amazon.Lambda.Serialization.Json" Version="1.7.0" />
<PackageReference Include="Amazon.Lambda.SNSEvents" Version="1.1.0" />
<PackageReference Include="AWSSDK.CodeCommit" Version="3.3.106.56" />
<PackageReference Include="AWSSDK.Core" Version="3.3.106.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="3.1.3" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.3" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
</ItemGroup>
</Project>