-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathHTML5ViewerParametersDemo.csproj
32 lines (32 loc) · 1.37 KB
/
HTML5ViewerParametersDemo.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup Label="Globals">
<SccProjectName>SAK</SccProjectName>
<SccProvider>SAK</SccProvider>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup Label="DevelopmentOnly">
<Compile Remove="wwwroot\WebReportDesigner\**" />
<Content Remove="wwwroot\WebReportDesigner\**" />
<EmbeddedResource Remove="wwwroot\WebReportDesigner\**" />
<None Remove="wwwroot\WebReportDesigner\**" />
</ItemGroup>
<ItemGroup>
<Content Include="CustomResourceResolver.cs" />
</ItemGroup>
<ItemGroup Label="DevelopmentOnly">
<PackageReference Include="DocumentFormat.OpenXml" Version="2.7.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<!--The following lines are replaced with package refs during the product build-->
<PackageReference Include="Telerik.Reporting.OpenXmlRendering" Version="16.2.22.1109" />
<PackageReference Include="Telerik.Reporting.Services.AspNetCore" Version="16.2.22.1109" />
<PackageReference Include="Telerik.WebReportDesigner.Services" Version="16.2.22.1109" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
</Target>
</Project>