-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathNpgsqlRestClient.csproj
More file actions
46 lines (41 loc) · 2.06 KB
/
Copy pathNpgsqlRestClient.csproj
File metadata and controls
46 lines (41 loc) · 2.06 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
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<PublishAot>true</PublishAot>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>full</TrimMode>
<Version>3.15.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspNetCore.HealthChecks.NpgSql" Version="9.0.0" />
<PackageReference Include="ExcelDataReader" Version="3.8.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.7" />
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.OpenTelemetry" Version="4.2.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Hybrid" Version="10.5.0" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="10.0.7" />
<PackageReference Include="SpreadCheetah" Version="1.27.0" />
<PackageReference Include="StackExchange.Redis" Version="2.12.14" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NpgsqlRest\NpgsqlRest.csproj" />
<ProjectReference Include="..\plugins\NpgsqlRest.HttpFiles\NpgsqlRest.HttpFiles.csproj" />
<ProjectReference Include="..\plugins\NpgsqlRest.OpenApi\NpgsqlRest.OpenApi.csproj" />
<ProjectReference Include="..\plugins\NpgsqlRest.TsClient\NpgsqlRest.TsClient.csproj" />
<ProjectReference Include="..\plugins\NpgsqlRest.SqlFileSource\NpgsqlRest.SqlFileSource.csproj" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="build\appsettings.Development.json" />
<_ContentIncludedByDefault Remove="build\appsettings.json" />
<_ContentIncludedByDefault Remove="build\NpgsqlRestClient.staticwebassets.endpoints.json" />
</ItemGroup>
<ItemGroup>
<Folder Include="src\" />
<Folder Include="wwwroot\" />
</ItemGroup>
</Project>