-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathReportBuilder.Web.Core.csproj
44 lines (41 loc) · 2.15 KB
/
ReportBuilder.Web.Core.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageId>dotnetreport.core</PackageId>
<Version>3.0.9-beta</Version>
<Authors>Dotnet Report</Authors>
<Product>Dotnet Report</Product>
<Description>Ad hoc report builder that lets users create their own reports and dashboards</Description>
<PackageProjectUrl>https://www.dotnetreport.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/dotnetreport/Ad-Hoc-Report-Builder-.net-core</RepositoryUrl>
<PackageTags>reporting, ad hoc reporting, business analytics, reporting tool, dashboards</PackageTags>
<IsPackable>true</IsPackable>
<PackageType>Template</PackageType>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="readme.txt">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="EPPlus" Version="4.5.3.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0" />
<PackageReference Include="PuppeteerSharp" Version="2.0.4" />
<PackageReference Include="Quartz" Version="3.0.7" />
<PackageReference Include="System.Data.Common" Version="4.3.0" />
<PackageReference Include="System.Data.OleDb" Version="4.7.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.7.0" />
</ItemGroup>
</Project>