Skip to content
This repository has been archived by the owner on Feb 1, 2025. It is now read-only.

Commit

Permalink
Project Information is now defaulted
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Gautier authored and Nicholas Gautier committed Oct 30, 2021
1 parent 5ee67c9 commit 3126785
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions scripts/ProjectInformation.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,28 @@ class ProjectInformation
# Project's Name
# ---------------
# The formal name of the project.
Static [string] $projectName = "Alphecca";
Static [string] $projectName = "projectNameHere";


# Project's Code Name (or Version Code Name)
# ---------------
# The code name of the overall project or version of the project.
Static [string] $codeName = "Apostasy";
Static [string] $codeName = "projectsCodeNameHere";


# Output Filename
# ---------------
# The filename that will be used in compiled builds.
# NOTE: Remember that /idgames has a fixed 8char upper-limit!
Static [string] $fileName = "alphecca";
Static [string] $fileName = "projectsFileNameHere";


# Project's Website
# ---------------
# The project's official website; which can be accessed by the end-user by request. This can be
# helpful to the user, in-which they may check out the project's latest public announcements and
# insights regarding the project.
Static [string] $urlWebsite = "https://github.com/SibTiger/Alphecca";
Static [string] $urlWebsite = "";


# Project's Help Documentation
Expand All @@ -51,13 +51,13 @@ class ProjectInformation
# greatly be helpful to the user, as they may view the project's help-documentation for abroad
# reasons but not limited to using this very tool.
# NOTE: Wiki's are usually provided in some Developer\Repositories Web-Services, such as GitHub.
Static [string] $urlWiki = "https://github.com/SibTiger/Alphecca/wiki";
Static [string] $urlWiki = "";


# Project's Repository
# ---------------
# The project's official repository; which can be accessed by the end-user by request. This can
# allow the user to view the project's source code via their preferred web-browser. Prime example
# of Repositories: GitHub, SourceForge, BitBucket, GitLab, and many more.
Static [string] $urlSource = "https://github.com/SibTiger/Alphecca";
Static [string] $urlSource = "";
} # ProjectInformation

0 comments on commit 3126785

Please sign in to comment.