-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFastReportAPI.csproj
More file actions
25 lines (20 loc) · 953 Bytes
/
FastReportAPI.csproj
File metadata and controls
25 lines (20 loc) · 953 Bytes
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>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RestoreSources>https://api.nuget.org/v3/index.json</RestoreSources>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\reports\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FastReport.Data.MsSql" Version="2025.2.0" />
<PackageReference Include="FastReport.OpenSource" Version="2025.2.0" />
<PackageReference Include="FastReport.OpenSource.Export.PdfSimple" Version="2025.2.0" />
<PackageReference Include="FastReport.OpenSource.Web" Version="2025.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.4" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.2" />
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
</ItemGroup>
</Project>