diff --git a/Content/.template.config/template.json b/Content/.template.config/template.json
index af7c2020..b08ea107 100644
--- a/Content/.template.config/template.json
+++ b/Content/.template.config/template.json
@@ -9,5 +9,11 @@
"shortName": "mini-scaffold",
"sourceName": "MyLib",
// This allows using the `-n` option to create a new directory
- "preferNameDirectory": true
+ "preferNameDirectory": true,
+ "symbols":{
+ "githubUsername": {
+ "type": "parameter",
+ "replaces":"MyGithubUsername"
+ }
+ }
}
\ No newline at end of file
diff --git a/Content/README.md b/Content/README.md
index f497f2e4..95a42923 100644
--- a/Content/README.md
+++ b/Content/README.md
@@ -2,6 +2,6 @@
[![NuGet Badge](https://img.shields.io/nuget/vpre/MyLib.svg)](https://www.nuget.org/packages/MyLib/)
-[![Travis Badge](https://travis-ci.org/TheAngryByrd/MyLib.svg?branch=master)](https://travis-ci.org/TheAngryByrd/MyLib)
+[![Travis Badge](https://travis-ci.org/TheAngryByrd/MyLib.svg?branch=master)](https://travis-ci.org/MyGithubUsername/MyLib)
Does the thing
\ No newline at end of file
diff --git a/Content/src/MyLib/MyLib.fsproj b/Content/src/MyLib/MyLib.fsproj
index 699484b4..85e54428 100755
--- a/Content/src/MyLib/MyLib.fsproj
+++ b/Content/src/MyLib/MyLib.fsproj
@@ -2,6 +2,20 @@
netstandard1.6;net45
+
+
+ MyLib
+ MyLib does the thing!
+
+ f#, fsharp
+ https://github.com/MyGithubUsername/MyLib
+ https://github.com/MyGithubUsername/MyLib/blob/master/LICENSE.md
+ false
+ git
+ MyUsername
+ https://github.com/MyGithubUsername/MyLib
+
+
true
true
diff --git a/README.md b/README.md
index 7dd9da53..abc6a803 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ dotnet new -i MiniScaffold::*
### Use the new template:
```
-dotnet new mini-scaffold -n MyCoolNewLib
+dotnet new mini-scaffold -n MyCoolNewLib --githubUsername MyGithubUsername
cd MyCoolNewLib
```