Skip to content

Commit

Permalink
add createpackage script
Browse files Browse the repository at this point in the history
  • Loading branch information
MNie committed Jul 4, 2019
1 parent c3f1fe3 commit 2da4dcb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions createPackage.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
rm -r nuget
mkdir nuget
cd nuget
mkdir content
cd content
mkdir Controllers
cd ..
cp ../*.fsproj content/
cp ../*.fs content/
cp ../Controllers/*.fs content/Controllers/
cp ../*.json content/
cp -R ../.template.config content/
cp ../WebApiFSharp.Template.nuspec .
../../nuget.exe pack WebApiFSharp.Template.nuspec

0 comments on commit 2da4dcb

Please sign in to comment.