-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMinimalLambda.Envelopes.csproj
More file actions
35 lines (35 loc) · 1.51 KB
/
MinimalLambda.Envelopes.csproj
File metadata and controls
35 lines (35 loc) · 1.51 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
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeBuildOutput>true</IncludeBuildOutput>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Package Metadata -->
<PackageId>MinimalLambda.Envelopes</PackageId>
<Description>Core components for MinimalLambda envelopes</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<!--
Needed to unblock this error for dontet 9:
CSC : error AD0001: Analyzer 'ILLink.RoslynAnalyzer.DynamicallyAccessedMembersAnalyzer' threw an
exception of type 'System.InvalidCastException' with message 'Unable to cast object of type
'Microsoft.CodeAnalysis.CSharp.Symbols.PublicModel.NonErrorNamedTypeSymbol' to type
Microsoft.CodeAnalysis.IMethodSymbol'.'.
-->
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0'">
<NoWarn>$(NoWarn);AD0001</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MinimalLambda.Abstractions\MinimalLambda.Abstractions.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.Core" VersionOverride="2.8.1" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions"/>
</ItemGroup>
</Project>