diff --git a/CHANGELOG.md b/CHANGELOG.md index 61bc126a..09061f1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - FSRMDsc - Automatically publish documentation to GitHub Wiki - Fixes [Issue #41](https://github.com/dsccommunity/FSRMDsc/issues/41). +- Renamed `master` branch to `main` - Fixes [Issue #43](https://github.com/dsccommunity/FSRMDsc/issues/43). ## [2.5.0] - 2020-06-20 diff --git a/GitVersion.yml b/GitVersion.yml index b42cc6d0..e163ee8d 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -8,6 +8,7 @@ assembly-informational-format: '{NuGetVersionV2}+Sha.{Sha}.Date.{CommitDate}' branches: master: tag: preview + regex: ^main$ pull-request: tag: PR feature: @@ -20,7 +21,6 @@ branches: increment: Patch regex: (hot)?fix(es)?[\/-] source-branches: ['master'] - ignore: sha: [] merge-message-formats: {} diff --git a/README.md b/README.md index db338bf9..654365b5 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # FSRMDsc -[![Build Status](https://dev.azure.com/dsccommunity/FSRMDsc/_apis/build/status/dsccommunity.FSRMDsc?branchName=master)](https://dev.azure.com/dsccommunity/FSRMDsc/_build/latest?definitionId=40&branchName=master) -![Code Coverage](https://img.shields.io/azure-devops/coverage/dsccommunity/FSRMDsc/40/master) -[![Azure DevOps tests](https://img.shields.io/azure-devops/tests/dsccommunity/FSRMDsc/40/master)](https://dsccommunity.visualstudio.com/FSRMDsc/_test/analytics?definitionId=40&contextType=build) +[![Build Status](https://dev.azure.com/dsccommunity/FSRMDsc/_apis/build/status/dsccommunity.FSRMDsc?branchName=main)](https://dev.azure.com/dsccommunity/FSRMDsc/_build/latest?definitionId=40&branchName=main) +![Code Coverage](https://img.shields.io/azure-devops/coverage/dsccommunity/FSRMDsc/40/main) +[![Azure DevOps tests](https://img.shields.io/azure-devops/tests/dsccommunity/FSRMDsc/40/main)](https://dsccommunity.visualstudio.com/FSRMDsc/_test/analytics?definitionId=40&contextType=build) [![PowerShell Gallery (with prereleases)](https://img.shields.io/powershellgallery/vpre/FSRMDsc?label=FSRMDsc%20Preview)](https://www.powershellgallery.com/packages/FSRMDsc/) [![PowerShell Gallery](https://img.shields.io/powershellgallery/v/FSRMDsc?label=FSRMDsc)](https://www.powershellgallery.com/packages/FSRMDsc/) @@ -12,7 +12,7 @@ This project has adopted [this code of conduct](CODE_OF_CONDUCT.md). ## Releases -For each merge to the branch `master` a preview release will be +For each merge to the branch `main` a preview release will be deployed to [PowerShell Gallery](https://www.powershellgallery.com/). Periodically a release version tag will be pushed which will deploy a full release to [PowerShell Gallery](https://www.powershellgallery.com/). diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e6b920c3..917d80dd 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,7 +1,7 @@ trigger: branches: include: - - master + - main paths: include: - source/* @@ -280,7 +280,7 @@ stages: and( succeeded(), or( - eq(variables['Build.SourceBranch'], 'refs/heads/master'), + eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/tags/') ), contains(variables['System.TeamFoundationCollectionUri'], 'dsccommunity') @@ -309,6 +309,8 @@ stages: env: GitHubToken: $(GitHubToken) GalleryApiToken: $(GalleryApiToken) + ReleaseBranch: main + MainGitBranch: main - task: PowerShell@2 name: sendChangelogPR @@ -319,3 +321,5 @@ stages: pwsh: true env: GitHubToken: $(GitHubToken) + ReleaseBranch: main + MainGitBranch: main diff --git a/build.yaml b/build.yaml index a8398c40..52d17c0f 100644 --- a/build.yaml +++ b/build.yaml @@ -73,6 +73,7 @@ DscTest: - output ExcludeModuleFile: - Modules/DscResource.Common + MainGitBranch: main Resolve-Dependency: Gallery: 'PSGallery' diff --git a/source/Examples/Resources/FSRMAutoQuota/1-FSRMAutoQuota_Config.ps1 b/source/Examples/Resources/FSRMAutoQuota/1-FSRMAutoQuota_Config.ps1 index 47e74ebd..7ae07fed 100644 --- a/source/Examples/Resources/FSRMAutoQuota/1-FSRMAutoQuota_Config.ps1 +++ b/source/Examples/Resources/FSRMAutoQuota/1-FSRMAutoQuota_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMClassification/1-FSRMClassification_Config.ps1 b/source/Examples/Resources/FSRMClassification/1-FSRMClassification_Config.ps1 index 3b58d3d7..f3cdc72d 100644 --- a/source/Examples/Resources/FSRMClassification/1-FSRMClassification_Config.ps1 +++ b/source/Examples/Resources/FSRMClassification/1-FSRMClassification_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMClassificationProperty/1-FSRMClassificationProperty_SingleChoice_Config.ps1 b/source/Examples/Resources/FSRMClassificationProperty/1-FSRMClassificationProperty_SingleChoice_Config.ps1 index d5f8972b..f871b5e4 100644 --- a/source/Examples/Resources/FSRMClassificationProperty/1-FSRMClassificationProperty_SingleChoice_Config.ps1 +++ b/source/Examples/Resources/FSRMClassificationProperty/1-FSRMClassificationProperty_SingleChoice_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMClassificationProperty/2-FSRMClassificationProperty_YesNo_Config.ps1 b/source/Examples/Resources/FSRMClassificationProperty/2-FSRMClassificationProperty_YesNo_Config.ps1 index f398d4a2..3cc89450 100644 --- a/source/Examples/Resources/FSRMClassificationProperty/2-FSRMClassificationProperty_YesNo_Config.ps1 +++ b/source/Examples/Resources/FSRMClassificationProperty/2-FSRMClassificationProperty_YesNo_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMClassificationPropertyValue/1-FSRMClassificationPropertyValue_Config.ps1 b/source/Examples/Resources/FSRMClassificationPropertyValue/1-FSRMClassificationPropertyValue_Config.ps1 index e8ec8332..77b6be10 100644 --- a/source/Examples/Resources/FSRMClassificationPropertyValue/1-FSRMClassificationPropertyValue_Config.ps1 +++ b/source/Examples/Resources/FSRMClassificationPropertyValue/1-FSRMClassificationPropertyValue_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMClassificationRule/1-FSRMClassificationRule_Config.ps1 b/source/Examples/Resources/FSRMClassificationRule/1-FSRMClassificationRule_Config.ps1 index 6ab921d5..1f826e6b 100644 --- a/source/Examples/Resources/FSRMClassificationRule/1-FSRMClassificationRule_Config.ps1 +++ b/source/Examples/Resources/FSRMClassificationRule/1-FSRMClassificationRule_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMFileGroup/1-FSRMFileGroup_Config.ps1 b/source/Examples/Resources/FSRMFileGroup/1-FSRMFileGroup_Config.ps1 index 3a990a8b..ceec1836 100644 --- a/source/Examples/Resources/FSRMFileGroup/1-FSRMFileGroup_Config.ps1 +++ b/source/Examples/Resources/FSRMFileGroup/1-FSRMFileGroup_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMFileScreen/1-FSRMFileScreen_Config.ps1 b/source/Examples/Resources/FSRMFileScreen/1-FSRMFileScreen_Config.ps1 index 20372418..0d03ec36 100644 --- a/source/Examples/Resources/FSRMFileScreen/1-FSRMFileScreen_Config.ps1 +++ b/source/Examples/Resources/FSRMFileScreen/1-FSRMFileScreen_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMFileScreen/2-FSRMFileScreen_UsingTemplate_Config.ps1 b/source/Examples/Resources/FSRMFileScreen/2-FSRMFileScreen_UsingTemplate_Config.ps1 index 54d97809..3d284a30 100644 --- a/source/Examples/Resources/FSRMFileScreen/2-FSRMFileScreen_UsingTemplate_Config.ps1 +++ b/source/Examples/Resources/FSRMFileScreen/2-FSRMFileScreen_UsingTemplate_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMFileScreenAction/1-FSRMFileScreenAction_Config.ps1 b/source/Examples/Resources/FSRMFileScreenAction/1-FSRMFileScreenAction_Config.ps1 index fe1b0b6e..525c7f01 100644 --- a/source/Examples/Resources/FSRMFileScreenAction/1-FSRMFileScreenAction_Config.ps1 +++ b/source/Examples/Resources/FSRMFileScreenAction/1-FSRMFileScreenAction_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMFileScreenAction/2-FSRMFileScreenAction_UsingTemplate_Config.ps1 b/source/Examples/Resources/FSRMFileScreenAction/2-FSRMFileScreenAction_UsingTemplate_Config.ps1 index 9c382da7..50c0b71a 100644 --- a/source/Examples/Resources/FSRMFileScreenAction/2-FSRMFileScreenAction_UsingTemplate_Config.ps1 +++ b/source/Examples/Resources/FSRMFileScreenAction/2-FSRMFileScreenAction_UsingTemplate_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMFileScreenException/1-FSRMFileScreenException_Config.ps1 b/source/Examples/Resources/FSRMFileScreenException/1-FSRMFileScreenException_Config.ps1 index b19e72c6..235095f3 100644 --- a/source/Examples/Resources/FSRMFileScreenException/1-FSRMFileScreenException_Config.ps1 +++ b/source/Examples/Resources/FSRMFileScreenException/1-FSRMFileScreenException_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMFileScreenTemplate/1-FSRMFileScreenTemplate_Config.ps1 b/source/Examples/Resources/FSRMFileScreenTemplate/1-FSRMFileScreenTemplate_Config.ps1 index 7d0d990d..8e99553f 100644 --- a/source/Examples/Resources/FSRMFileScreenTemplate/1-FSRMFileScreenTemplate_Config.ps1 +++ b/source/Examples/Resources/FSRMFileScreenTemplate/1-FSRMFileScreenTemplate_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMFileScreenTemplateAction/1-FSRMFileScreenTemplateAction_Config.ps1 b/source/Examples/Resources/FSRMFileScreenTemplateAction/1-FSRMFileScreenTemplateAction_Config.ps1 index be63f1f0..db39bafd 100644 --- a/source/Examples/Resources/FSRMFileScreenTemplateAction/1-FSRMFileScreenTemplateAction_Config.ps1 +++ b/source/Examples/Resources/FSRMFileScreenTemplateAction/1-FSRMFileScreenTemplateAction_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMQuota/1-FSRMQuota_Config.ps1 b/source/Examples/Resources/FSRMQuota/1-FSRMQuota_Config.ps1 index 402360d9..c3e9a247 100644 --- a/source/Examples/Resources/FSRMQuota/1-FSRMQuota_Config.ps1 +++ b/source/Examples/Resources/FSRMQuota/1-FSRMQuota_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMQuota/2-FSRMQuota_UsingTemplate_Config.ps1 b/source/Examples/Resources/FSRMQuota/2-FSRMQuota_UsingTemplate_Config.ps1 index 24bb438e..4d4da8e3 100644 --- a/source/Examples/Resources/FSRMQuota/2-FSRMQuota_UsingTemplate_Config.ps1 +++ b/source/Examples/Resources/FSRMQuota/2-FSRMQuota_UsingTemplate_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMQuotaAction/1-FSRMQuotaAction_Config.ps1 b/source/Examples/Resources/FSRMQuotaAction/1-FSRMQuotaAction_Config.ps1 index f93f8e44..5a673d0b 100644 --- a/source/Examples/Resources/FSRMQuotaAction/1-FSRMQuotaAction_Config.ps1 +++ b/source/Examples/Resources/FSRMQuotaAction/1-FSRMQuotaAction_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMQuotaAction/2-FSRMQuotaAction_UsingTemplate_Config.ps1 b/source/Examples/Resources/FSRMQuotaAction/2-FSRMQuotaAction_UsingTemplate_Config.ps1 index 8b74346f..ebc5b0e3 100644 --- a/source/Examples/Resources/FSRMQuotaAction/2-FSRMQuotaAction_UsingTemplate_Config.ps1 +++ b/source/Examples/Resources/FSRMQuotaAction/2-FSRMQuotaAction_UsingTemplate_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMQuotaTemplate/1-FSRMQuotaTemplate_Config.ps1 b/source/Examples/Resources/FSRMQuotaTemplate/1-FSRMQuotaTemplate_Config.ps1 index bae7f475..e3a92d72 100644 --- a/source/Examples/Resources/FSRMQuotaTemplate/1-FSRMQuotaTemplate_Config.ps1 +++ b/source/Examples/Resources/FSRMQuotaTemplate/1-FSRMQuotaTemplate_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMQuotaTemplateAction/1-FSRMQuotaTemplateAction_Config.ps1 b/source/Examples/Resources/FSRMQuotaTemplateAction/1-FSRMQuotaTemplateAction_Config.ps1 index 66e1e7a8..0ea9ea3d 100644 --- a/source/Examples/Resources/FSRMQuotaTemplateAction/1-FSRMQuotaTemplateAction_Config.ps1 +++ b/source/Examples/Resources/FSRMQuotaTemplateAction/1-FSRMQuotaTemplateAction_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/Examples/Resources/FSRMSettings/1-FSRMSettings_Config.ps1 b/source/Examples/Resources/FSRMSettings/1-FSRMSettings_Config.ps1 index c3f4a355..cf9ce169 100644 --- a/source/Examples/Resources/FSRMSettings/1-FSRMSettings_Config.ps1 +++ b/source/Examples/Resources/FSRMSettings/1-FSRMSettings_Config.ps1 @@ -5,7 +5,7 @@ .COMPANYNAME DSC Community .COPYRIGHT Copyright the DSC Community contributors. All rights reserved. .TAGS DSCConfiguration -.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE +.LICENSEURI https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE .PROJECTURI https://github.com/dsccommunity/FSRMDsc .ICONURI .EXTERNALMODULEDEPENDENCIES diff --git a/source/FSRMDsc.psd1 b/source/FSRMDsc.psd1 index 199a1190..46c4901b 100644 --- a/source/FSRMDsc.psd1 +++ b/source/FSRMDsc.psd1 @@ -66,7 +66,7 @@ Tags = @('DesiredStateConfiguration', 'DSC', 'DSCResource', 'FSRM', 'FileServerResourceManager') # A URL to the license for this module. - LicenseUri = 'https://github.com/dsccommunity/FSRMDsc/blob/master/LICENSE' + LicenseUri = 'https://github.com/dsccommunity/FSRMDsc/blob/main/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/dsccommunity/FSRMDsc' diff --git a/source/WikiSource/Home.md b/source/WikiSource/Home.md index 883facd7..6f32efe8 100644 --- a/source/WikiSource/Home.md +++ b/source/WikiSource/Home.md @@ -32,4 +32,4 @@ Get-DscResource -Module FSRMDsc ## Change Log -A full list of changes in each version can be found in the [change log](https://github.com/dsccommunity/FSRMDsc/blob/master/CHANGELOG.md). +A full list of changes in each version can be found in the [change log](https://github.com/dsccommunity/FSRMDsc/blob/main/CHANGELOG.md).