-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathTickerQExample.WebAPI.csproj
More file actions
25 lines (21 loc) · 1.08 KB
/
TickerQExample.WebAPI.csproj
File metadata and controls
25 lines (21 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspire.Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Scalar.AspNetCore" Version="2.6.5" />
<PackageReference Include="TickerQ" Version="2.3.0" />
<PackageReference Include="TickerQ.Dashboard" Version="2.3.0" />
<PackageReference Include="TickerQ.EntityFrameworkCore" Version="2.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TickerQExample.ServiceDefaults\TickerQExample.ServiceDefaults.csproj" />
</ItemGroup>
</Project>