-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCrossbill.Plugins.PDF.JsReport.csproj
More file actions
54 lines (46 loc) · 2.96 KB
/
Crossbill.Plugins.PDF.JsReport.csproj
File metadata and controls
54 lines (46 loc) · 2.96 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Crossbill.Plugins.PDF.JsReport</AssemblyTitle>
<Description>PDF Plugin for Crossbill Applications</Description>
<Copyright>Copyright © Crossbill, 2016, All Rights Reserved</Copyright>
<Product>Crossbill Applications</Product>
<Company>Crossbill</Company>
<Authors>Pavel Korsukov</Authors>
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">True</GeneratePackageOnBuild>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<IsPackable>true</IsPackable>
<NuspecFile>Crossbill.Plugins.PDF.JsReport.nuspec</NuspecFile><NuspecProperties>version=$(PackageVersion)</NuspecProperties>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="jsreport.binary" Version="3.13.0" />
<PackageReference Include="jsreport.binary.linux" Version="3.11.0" />
<PackageReference Include="jsreport.Local" Version="3.8.1" />
<PackageReference Include="System.ComponentModel.Composition" Version="8.0.0" />
<PackageReference Include="Unity" Version="5.11.10" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Reference Include="Crossbill.Common">
<HintPath>..\..\Crossbill.Common\Crossbill.Common\bin\$(Configuration)\$(TargetFramework)\Crossbill.Common.dll</HintPath>
</Reference>
<Reference Include="Crossbill.Licensing">
<HintPath>..\..\Crossbill.Common\Crossbill.Licensing\bin\$(Configuration)\$(TargetFramework)\Crossbill.Licensing.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent" Condition="'$(Configuration)' == 'Release'">
<Exec Command="xcopy /E /Y /d /I "d:\Projects\Crossbill.Common\config\licenses\*.txt" "$(ProjectDir)plugins\$(ProjectName)"" />
<Exec Command="c:\Crossbill.LicenseNoticeAggregator.lnk /project "$(ProjectPath)" /output "$(ProjectDir)plugins\$(ProjectName)\third-party-notices.txt" /exclude "c:\Crossbill.LicenseNoticeAggregator\Crossbill.Central.Web"" />
</Target>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(Configuration)' == 'Release'">
<!--Exec Command="c:\dotNETReactor.lnk -file "$(TargetPath)" -exception_handling 0 -necrobit 1 -necrobit_comp 1 -mapping_file 1 -exclude_fields 1 -exclude_enums 1 -exclude_compiler_fields 1 -quiet -licensing_behaviour 0 -targetfile "<AssemblyLocation>\<AssemblyFileName>"" /-->
<Exec Command="c:\Crossbill.Packager.lnk /mode zip /path "$(ProjectDir)." /dest "$(ProjectDir)bin/Plugin.zip"" />
</Target>
<Target Name="CopyPackage" AfterTargets="Pack">
<Copy SourceFiles="$(OutputPath)..\$(PackageId).$(PackageVersion).nupkg" DestinationFolder="d:\Projects\CROSS\Packs\" />
</Target>
</Project>