Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richardszalay/sitecore-assembly-lists
Tools for generating and validating Sitecore assembly lists
https://github.com/richardszalay/sitecore-assembly-lists
Last synced: 24 days ago
JSON representation
Tools for generating and validating Sitecore assembly lists
- Host: GitHub
- URL: https://github.com/richardszalay/sitecore-assembly-lists
- Owner: richardszalay
- License: mit
- Created: 2017-12-22T23:15:26.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-20T04:13:14.000Z (over 6 years ago)
- Last Synced: 2024-08-03T02:03:39.617Z (3 months ago)
- Language: PowerShell
- Size: 226 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-Sitecore - sitecore-assembly-lists - Sitecore started providing assembly list information for Sitecore releases starting at 8.2 Update 5. This project provides tools for validating Sitecore assembly lists, both against an installation and during the development process. (Audit and performance)
README
Sitecore started providing assembly list information for Sitecore releases starting at 8.2 Update 5. This project provides tools for validating Sitecore assembly lists, both against an installation and during the development process.
# PowerShell Module
## Installation
```
PS> Install-Module SitecoreAssemblyList
```## Usage
```
Test-SitecoreAssemblyList `
-AssemblyList ".\Sitecore.Platform.Assemblies 9.0.0 rev. 171002.txt" `
-AssemblyFolder c:\inetpub\wwwroot\Sitecore\bin
```Returns `$true` if all assemblies in the list were found in the directory and had the correct assembly and file version.
If the `-PassThru` switch is supplied, returns an object with properties containing the `Total` and `Failed` number of assemblies.
In both cases, missing assemblies and version mismatches emitted as warnings.
```
New-SitecoreAssemblyList `
-AssemblyFolder c:\inetpub\wwwroot\Sitecore\bin `
-FilePath ".\Sitecore.Platform.Assemblies 7.2.0 rev. 1501021.txt"
```Generates a new Sitecore assembly list for all assemblies in a folder. Useful when working with versions of Sitecore before 8.2u5, when Sitecore began making the lists available for download.
# MSBuild Targets
Coming soon