-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScanEventWorker.csproj
More file actions
30 lines (27 loc) · 1.53 KB
/
ScanEventWorker.csproj
File metadata and controls
30 lines (27 loc) · 1.53 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
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>dotnet-ScanEventWorker-a630243d-36de-431f-b7cb-d29159cfb22e</UserSecretsId>
<PublishAot>true</PublishAot>
<IsAotCompatible>true</IsAotCompatible>
<!-- IL2104/IL3053 are emitted by third-party packages (Dapper, Microsoft.Data.SqlClient,
System.Configuration.ConfigurationManager) during native code generation. Our own
registrations use factory lambdas and do not contribute to these warnings. -->
<NoWarn>$(NoWarn);IL2104;IL3053</NoWarn>
<InterceptorsNamespaces>$(InterceptorsNamespaces);Dapper.AOT</InterceptorsNamespaces>
<EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.SQS" Version="4.0.2.15" />
<PackageReference Include="Dapper" Version="2.1.66" />
<PackageReference Include="Dapper.AOT" Version="1.0.48" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.0-preview2.25289.6" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder"
Version="11.0.0-preview.1.26104.118" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="11.0.0-preview.1.26104.118" />
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.3.0" />
</ItemGroup>
</Project>