-
Notifications
You must be signed in to change notification settings - Fork 0
/
z.Report.csproj
64 lines (56 loc) · 2.94 KB
/
z.Report.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows>
<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX>
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/tofilagman/z.Report</RepositoryUrl>
<PackageProjectUrl>https://github.com/tofilagman/z.Report</PackageProjectUrl>
<Authors>tofilagman</Authors>
<Version>1.0.7</Version>
<PackageIcon>gravatar.png</PackageIcon>
<PackageIconUrl />
<Description>Wrapper for WkHtmlToPdf, PhantomJs and Chrome which uses Razor view as template</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(IsWindows)'=='true'">
<NoWarn>1701;1702;0649</NoWarn>
<DefineConstants>IsWindows</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(IsLinux)'=='true'">
<NoWarn>1701;1702;0649</NoWarn>
<DefineConstants>IsLinux</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(IsOSX)'=='true'">
<NoWarn>1701;1702;0649</NoWarn>
<DefineConstants>IsOSX</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="gravatar.png" />
<None Remove="gravatar.png" />
<None Remove="Resources\linux64_phantomjs.zip" />
<None Remove="Resources\osx_phantomjs.zip" />
<None Remove="Resources\rasterize.zip" />
<None Remove="Resources\windows_phantomjs.zip" />
<None Include="gravatar.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\linux64_phantomjs.zip" />
<EmbeddedResource Include="Resources\osx_phantomjs.zip" />
<EmbeddedResource Include="Resources\rasterize.zip" />
<EmbeddedResource Include="Resources\windows_phantomjs.zip" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ChromeHtmlToPdf" Version="4.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<PackageReference Include="z.Data.Standard" Version="1.2.19" />
</ItemGroup>
</Project>