-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCustomRuntime.csproj
More file actions
20 lines (16 loc) · 862 Bytes
/
CustomRuntime.csproj
File metadata and controls
20 lines (16 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Lambdajection" Version="$(LambdajectionVersion)" />
<PackageReference Include="Lambdajection.Runtime" Version="$(LambdajectionVersion)" />
<PackageReference Include="Lambdajection.Layer" Version="$(LambdajectionVersion)" />
<!-- If you don't use Lambdajection.Layer, the ready to run compiler will look for AWSSDK.Core since Lambdajection.Core has references to it -->
<PackageReference Include="AWSSDK.Core" Version="3.7.302.16" />
</ItemGroup>
</Project>