This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## 2.10.0.X - 2020-02-18 * **Brought minimum .NET version to 4.7.2** * Updated build process to use InvokeBuild instead of psake * Updated tasks to pull down the latest dependent assemblies during build * Added scheduled build triggers for weekly deployments * Changed the version scheme so it includes the date stamp as the build version
- Loading branch information
Showing
20 changed files
with
670 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Param( | ||
[Parameter(Position = 0)] | ||
[String] | ||
$ModuleName = $Script:ModuleName, | ||
[Parameter(Position = 1)] | ||
[String] | ||
$ModuleVersion = $Script:ModuleVersion | ||
) | ||
@" | ||
# Changelog | ||
$((git log -1 --pretty=%B | Select-Object -Skip 2) -join "`n") | ||
*** | ||
# Instructions | ||
1. [Click here](https://github.com/scrthq/$($ModuleName)/releases/download/v$($ModuleVersion)/$($ModuleName).zip) to download the *$($ModuleName).zip* file attached to the release. | ||
2. **If on Windows**: Right-click the downloaded zip, select Properties, then unblock the file. | ||
> _This is to prevent having to unblock each file individually after unzipping._ | ||
3. Unzip the archive. | ||
4. (Optional) Place the module folder somewhere in your ``PSModulePath``. | ||
> _You can view the paths listed by running the environment variable ```$env:PSModulePath``_ | ||
5. Import the module, using the full path to the PSD1 file in place of ``$($ModuleName)`` if the unzipped module folder is not in your ``PSModulePath``: | ||
``````powershell | ||
# In `$env:PSModulePath | ||
Import-Module $($ModuleName) | ||
# Otherwise, provide the path to the manifest: | ||
Import-Module -Path C:\MyPSModules\$($ModuleName)\$($ModuleVersion)\$($ModuleName).psd1 | ||
`````` | ||
"@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.