-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathReportsCoreSamples.csproj
42 lines (36 loc) · 1.86 KB
/
ReportsCoreSamples.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
<CopyRazorGenerateFilesToPublishDirectory>true</CopyRazorGenerateFilesToPublishDirectory>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AspNetCoreModuleName>AspNetCoreModule</AspNetCoreModuleName>
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Bold.Licensing" Version="4.1.78" />
<PackageReference Include="BoldReports.AspNet.Core" Version="4.1.78" />
<PackageReference Include="BoldReports.CRI.Barcode" Version="4.1.78" />
<PackageReference Include="BoldReports.Net.Core" Version="4.1.78" />
<PackageReference Include="BoldReports.Data.WebData" Version="4.1.78" />
<PackageReference Include="BoldReports.Data.Csv" Version="4.1.78" />
<PackageReference Include="BoldReports.Data.Excel" Version="4.1.78" />
<PackageReference Include="BuildBundlerMinifier" Version="2.9.406" />
<PackageReference Include="log4net" Version="2.0.10" />
<PackageReference Include="Microsoft.AspNetCore.ResponseCompression" Version="2.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
</ItemGroup>
<ItemGroup>
<None Include="Controllers\**" CopyToOutputDirectory="Always" />
<None Include="Views\**" CopyToOutputDirectory="Always" />
</ItemGroup>
<ItemGroup>
<None Update="BoldLicense.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>