Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.targets
More file actions
Latest commit
22 lines (21 loc) · 1.15 KB
/
Copy pathDirectory.Build.targets
File metadata and controls
22 lines (21 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<ItemGroupCondition="'$(IsSharpClawModulePackage)' == 'true' and Exists('$(MSBuildProjectDirectory)\package.json')">
<ContentUpdate="package.json"
Pack="false" />
</ItemGroup>
<TargetName="AddSharpClawModulePayloadToPackage"
Condition="'$(IsSharpClawModulePackage)' == 'true' and Exists('$(MSBuildProjectDirectory)\package.json')">
<ItemGroup>
<_SharpClawModulePayloadInclude="$(TargetDir)**\*"
Exclude="$(TargetDir)contributions\**\*;$(TargetDir)**\*.pdb;$(TargetDir)**\*.xml;$(TargetDir)**\*.nupkg;@(SharpClawModulePayloadExclude)" />
<TfmSpecificPackageFileInclude="@(_SharpClawModulePayload)"
PackagePath="sharpclaw\" />
<TfmSpecificPackageFileInclude="$(MSBuildProjectDirectory)\package.json"
PackagePath="sharpclaw\" />
<TfmSpecificPackageFileInclude="$(MSBuildThisFileDirectory)README.md"
PackagePath="\" />
<TfmSpecificPackageFileInclude="$(MSBuildThisFileDirectory)LICENSE.md"
PackagePath="\" />
</ItemGroup>
</Target>
</Project>