-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathExcelDnaDoc.Tasks.csproj
More file actions
29 lines (22 loc) · 1.01 KB
/
ExcelDnaDoc.Tasks.csproj
File metadata and controls
29 lines (22 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;net6.0-windows</TargetFrameworks>
<EnableDynamicLoading>true</EnableDynamicLoading>
<AssemblyTitle>ExcelDnaDoc.Tasks</AssemblyTitle>
<Description>command-line utility to create a compiled HTML Help Workshop file (.chm) for ExcelDna</Description>
<Product>ExcelDnaDoc</Product>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">
<Reference Include="Microsoft.Build.Framework" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0-windows' ">
<PackageReference Include="Microsoft.Build.Framework" Version="15.9.30" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="15.9.30" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ExcelDnaDoc.Html\ExcelDnaDoc.Html.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="cd $(ProjectDir)
CopyPackageFilesForSamples.cmd $(TargetDir)" />
</Target>
</Project>