Skip to content

Commit

Permalink
Removed dependency to GitVersion (dsccommunity#125)
Browse files Browse the repository at this point in the history
* Fixed binary file issue

* Added missing dependency

* Added psd1 which is required if GitVersion is not available on the build machine

* Updated 'Sampler.DscPipeline' version
  • Loading branch information
raandree authored Jan 7, 2022
1 parent 274d7ef commit f3b73f1
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
Binary file modified Lab/LabData/gittools.gitversion-5.0.1.3.vsix
Binary file not shown.
3 changes: 2 additions & 1 deletion RequiredModules.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Sampler = 'latest'
'Sampler.GitHubTasks' = 'latest'
PowerShellForGitHub = 'latest'
'Sampler.DscPipeline' = '0.1.1-preview0001'
'Sampler.DscPipeline' = '0.1.1-preview0002'
MarkdownLinkCheck = 'latest'
'DscResource.AnalyzerRules' = 'latest'
DscBuildHelpers = 'latest'
Expand All @@ -30,6 +30,7 @@
Configuration = 'latest'
Metadata = 'latest'
xDscResourceDesigner = 'latest'
'DscResource.Test' = 'latest'

# Composites
CommonTasks = '0.3.259'
Expand Down
26 changes: 26 additions & 0 deletions source/DscWorkshop.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@{
RootModule = 'DscWorkshop.psm1'
ModuleVersion = '0.4'
GUID = '63e8bf79-62d3-4249-8fe6-9a766fbe8481'
Author = 'DSC Community'
CompanyName = 'DSC Community'
Copyright = 'Copyright the DSC Community contributors. All rights reserved.'
Description = 'DSC composite resource for https://github.com/dsccommunity/DscWorkshop'
PowerShellVersion = '5.1'
FunctionsToExport = '*'
CmdletsToExport = '*'
VariablesToExport = '*'
AliasesToExport = '*'

PrivateData = @{

PSData = @{
Prerelease = ''
Tags = @('DesiredStateConfiguration', 'DSC', 'DSCResource')
LicenseUri = 'https://github.com/dsccommunity/DscWorkshop/blob/main/LICENSE'
ProjectUri = 'https://github.com/dsccommunity/DscWorkshop'
IconUri = 'https://dsccommunity.org/images/DSC_Logo_300p.png'
ReleaseNotes = ''
}
}
}

0 comments on commit f3b73f1

Please sign in to comment.