-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws-csharp.csproj
48 lines (42 loc) · 1.72 KB
/
aws-csharp.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
46
47
<Project Sdk="Microsoft.NET.Sdk">
<!-- Common -->
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<AssemblyName>CsharpHandlers</AssemblyName>
<PackageId>aws-csharp</PackageId>
</PropertyGroup>
<!-- Unable to be conditional during build -->
<ItemGroup>
<DotNetCliToolReference Include="Amazon.Lambda.Tools" Version="2.2.0" />
</ItemGroup>
<!-- AWS -->
<PropertyGroup Condition=" '$(Provider)' == 'aws' ">
<DefineConstants>PROVIDER_AWS</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(Provider)' == 'aws' ">
<PackageReference Include="Amazon.Lambda.Core" Version="1.0.0" />
<PackageReference Include="Amazon.Lambda.Serialization.Json" Version="1.3.0" />
</ItemGroup>
<!-- Azure -->
<PropertyGroup Condition=" '$(Provider)' == 'azure' ">
<NoWarn>NU1605</NoWarn>
<DefineConstants>PROVIDER_AZURE</DefineConstants>
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(Provider)' == 'azure' ">
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.23" />
</ItemGroup>
<ItemGroup Condition=" '$(Provider)' == 'azure' ">
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup Condition=" '$(Provider)' == 'azure' ">
<PackageReference Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" Version="1.0.1" />
</ItemGroup>
</Project>