-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathSqlDefinitionStorageExample.csproj
31 lines (31 loc) · 1.23 KB
/
SqlDefinitionStorageExample.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup Label="Globals">
<SccProjectName>SAK</SccProjectName>
<SccProvider>SAK</SccProvider>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\ReportViewer\**" />
<Content Remove="wwwroot\ReportViewer\**" />
<EmbeddedResource Remove="wwwroot\ReportViewer\**" />
<None Remove="wwwroot\ReportViewer\**" />
</ItemGroup>
<ItemGroup>
<!--The following lines are replaced with package refs during the product build-->
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
<PackageReference Include="Telerik.Reporting.OpenXmlRendering" Version="18.2.24.924" />
<PackageReference Include="Telerik.Reporting.Services.AspNetCore" Version="18.2.24.924" />
<PackageReference Include="Telerik.WebReportDesigner.Services" Version="18.2.24.924" />
</ItemGroup>
<ItemGroup>
<None Update="SampleReport.trdp">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
</Target>
</Project>