Skip to content

Commit

Permalink
Include execution assemblies in appx packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Nov 24, 2015
1 parent 30a478b commit 41d4cb7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/Xunit.SkippableFact.NuGet/build/Xunit.SkippableFact.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)Xunit.SkippableFact.*.dll">
<XunitSkippableFactExecutionLibs Include="$(MSBuildThisFileDirectory)Xunit.SkippableFact.*.dll"/>

<None Include="@(XunitSkippableFactExecutionLibs)">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</None>
</ItemGroup>

<Target Name="AddXunitSkippableFactExecutionLibs" AfterTargets="_ComputeAppxPackagePayload" BeforeTargets="_GenerateAppxManifest">
<ItemGroup>
<AppxPackagePayload Include="@(XunitSkippableFactExecutionLibs)">
<TargetPath>%(FileName)%(Extension)</TargetPath>
</AppxPackagePayload>
</ItemGroup>
</Target>
</Project>

0 comments on commit 41d4cb7

Please sign in to comment.