Skip to content

Commit

Permalink
Added post-build event copy commands
Browse files Browse the repository at this point in the history
To copy the nuspec and license file to the build output directory
  • Loading branch information
ClydeDz committed Feb 6, 2019
1 parent 6d870d4 commit a5dfe14
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Src/Horoscope/Horoscope.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,8 @@ More release notes here: https://github.com/ClydeDz/horoscope-nuget/wiki#release
<OutputPath>bin\Debug\lib\</OutputPath>
</PropertyGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(SolutionDir)Horoscope.nuspec&quot; &quot;$(ProjectDir)bin\$(ConfigurationName)\Horoscope.nuspec&quot;&#xD;&#xA;copy /Y &quot;$(SolutionDir)LICENSE.md&quot; &quot;$(ProjectDir)bin\$(ConfigurationName)\LICENSE.md&quot;" />
</Target>

</Project>

0 comments on commit a5dfe14

Please sign in to comment.