Skip to content
This repository was archived by the owner on Jan 29, 2022. It is now read-only.

Commit ef48ed5

Browse files
committed
v1.4.0.0
1 parent 7ee2195 commit ef48ed5

File tree

111 files changed

+1025
-248
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+1025
-248
lines changed

AMSoftware.Crm.PowerShell.Commands/AMSoftware.Crm.PowerShell.Commands.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,12 @@
8888
<Compile Include="Administration\GetPrincipalRolesCommand.cs" />
8989
<Compile Include="Administration\RemoveUserParentCommand.cs" />
9090
<Compile Include="Administration\SetOwnerCommand.cs" />
91+
<Compile Include="Administration\RemovePrincipalRolesCommand.cs" />
92+
<Compile Include="Administration\RemoveRolePrincipalsCommand.cs" />
93+
<Compile Include="Administration\RemoveTeamUsersCommand.cs" />
9194
<Compile Include="Administration\SetTeamUsersCommand.cs" />
9295
<Compile Include="Administration\SetRolePrincipalsCommand.cs" />
96+
<Compile Include="Administration\RemoveUserTeamsCommand.cs" />
9397
<Compile Include="Administration\SetUserTeamsCommand.cs" />
9498
<Compile Include="Administration\SetPrincipalRolesCommand.cs" />
9599
<Compile Include="Administration\NewUserCommand.cs">

AMSoftware.Crm.PowerShell.Commands/Administration/AddLanguageCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You should have received a copy of the GNU Affero General Public License
2222

2323
namespace AMSoftware.Crm.PowerShell.Commands.Administration
2424
{
25-
[Cmdlet(VerbsCommon.Add, "Language", HelpUri = HelpUrlConstants.AddLanguageHelpUrl, ConfirmImpact = ConfirmImpact.High, SupportsShouldProcess = true)]
25+
[Cmdlet(VerbsCommon.Add, "CrmLanguage", HelpUri = HelpUrlConstants.AddLanguageHelpUrl, ConfirmImpact = ConfirmImpact.High, SupportsShouldProcess = true)]
2626
public sealed class AddLanguageCommand : CrmOrganizationConfirmActionCmdlet
2727
{
2828
private ContentRepository _repository = new ContentRepository();

AMSoftware.Crm.PowerShell.Commands/Administration/GetBusinessUnitCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You should have received a copy of the GNU Affero General Public License
2424

2525
namespace AMSoftware.Crm.PowerShell.Commands.Administration
2626
{
27-
[Cmdlet(VerbsCommon.Get, "BusinessUnit", HelpUri = HelpUrlConstants.GetBusinessUnitHelpUrl, SupportsPaging = true, DefaultParameterSetName = GetAllBusinessUnitsParameterSet)]
27+
[Cmdlet(VerbsCommon.Get, "CrmBusinessUnit", HelpUri = HelpUrlConstants.GetBusinessUnitHelpUrl, SupportsPaging = true, DefaultParameterSetName = GetAllBusinessUnitsParameterSet)]
2828
[OutputType(typeof(Entity))]
2929
public sealed class GetBusinessUnitCommand : CrmOrganizationCmdlet
3030
{

AMSoftware.Crm.PowerShell.Commands/Administration/GetLanguageCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should have received a copy of the GNU Affero General Public License
2323

2424
namespace AMSoftware.Crm.PowerShell.Commands.Administration
2525
{
26-
[Cmdlet(VerbsCommon.Get, "Language", HelpUri = HelpUrlConstants.GetLanguageHelpUrl)]
26+
[Cmdlet(VerbsCommon.Get, "CrmLanguage", HelpUri = HelpUrlConstants.GetLanguageHelpUrl)]
2727
[OutputType(typeof(CultureInfo))]
2828
public sealed class GetLanguageCommand : CrmOrganizationCmdlet
2929
{

AMSoftware.Crm.PowerShell.Commands/Administration/GetPrincipalRolesCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You should have received a copy of the GNU Affero General Public License
2626

2727
namespace AMSoftware.Crm.PowerShell.Commands.Administration
2828
{
29-
[Cmdlet(VerbsCommon.Get, "PrincipalRoles", HelpUri = HelpUrlConstants.GetPrincipalRolesHelpUrl)]
29+
[Cmdlet(VerbsCommon.Get, "CrmPrincipalRoles", HelpUri = HelpUrlConstants.GetPrincipalRolesHelpUrl)]
3030
[OutputType(typeof(Entity))]
3131
public sealed class GetPrincipalRolesCommand : CrmOrganizationCmdlet
3232
{

AMSoftware.Crm.PowerShell.Commands/Administration/GetProcessCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You should have received a copy of the GNU Affero General Public License
2525

2626
namespace AMSoftware.Crm.PowerShell.Commands.Administration
2727
{
28-
[Cmdlet(VerbsCommon.Get, "Process", HelpUri = HelpUrlConstants.GetProcessHelpUrl, SupportsPaging = true, DefaultParameterSetName = GetAllProcessesParameterSet)]
28+
[Cmdlet(VerbsCommon.Get, "CrmProcess", HelpUri = HelpUrlConstants.GetProcessHelpUrl, SupportsPaging = true, DefaultParameterSetName = GetAllProcessesParameterSet)]
2929
[OutputType(typeof(Entity))]
3030
public sealed class GetProcessCommand : CrmOrganizationCmdlet
3131
{

AMSoftware.Crm.PowerShell.Commands/Administration/GetRoleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You should have received a copy of the GNU Affero General Public License
2424

2525
namespace AMSoftware.Crm.PowerShell.Commands.Administration
2626
{
27-
[Cmdlet(VerbsCommon.Get, "Role", HelpUri = HelpUrlConstants.GetRoleHelpUrl, SupportsPaging = true, DefaultParameterSetName = GetAllRolesParameterSet)]
27+
[Cmdlet(VerbsCommon.Get, "CrmRole", HelpUri = HelpUrlConstants.GetRoleHelpUrl, SupportsPaging = true, DefaultParameterSetName = GetAllRolesParameterSet)]
2828
[OutputType(typeof(Entity))]
2929
public sealed class GetRoleCommand : CrmOrganizationCmdlet
3030
{

AMSoftware.Crm.PowerShell.Commands/Administration/GetRolePrincipalsCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You should have received a copy of the GNU Affero General Public License
2626

2727
namespace AMSoftware.Crm.PowerShell.Commands.Administration
2828
{
29-
[Cmdlet(VerbsCommon.Get, "RolePrincipals", HelpUri = HelpUrlConstants.GetRolePrincipalsHelpUrl)]
29+
[Cmdlet(VerbsCommon.Get, "CrmRolePrincipals", HelpUri = HelpUrlConstants.GetRolePrincipalsHelpUrl)]
3030
[OutputType(typeof(Entity))]
3131
public sealed class GetRolePrincipalsCommand : CrmOrganizationCmdlet
3232
{

AMSoftware.Crm.PowerShell.Commands/Administration/GetTeamCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You should have received a copy of the GNU Affero General Public License
2525

2626
namespace AMSoftware.Crm.PowerShell.Commands.Administration
2727
{
28-
[Cmdlet(VerbsCommon.Get, "Team", HelpUri = HelpUrlConstants.GetTeamHelpUrl, SupportsPaging = true, DefaultParameterSetName = GetAllTeamsParameterSet)]
28+
[Cmdlet(VerbsCommon.Get, "CrmTeam", HelpUri = HelpUrlConstants.GetTeamHelpUrl, SupportsPaging = true, DefaultParameterSetName = GetAllTeamsParameterSet)]
2929
[OutputType(typeof(Entity))]
3030
public sealed class GetTeamCommand : CrmOrganizationCmdlet
3131
{

AMSoftware.Crm.PowerShell.Commands/Administration/GetTeamUsersCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should have received a copy of the GNU Affero General Public License
2323

2424
namespace AMSoftware.Crm.PowerShell.Commands.Administration
2525
{
26-
[Cmdlet(VerbsCommon.Get, "TeamUsers", HelpUri = HelpUrlConstants.GetTeamUsersHelpUrl)]
26+
[Cmdlet(VerbsCommon.Get, "CrmTeamUsers", HelpUri = HelpUrlConstants.GetTeamUsersHelpUrl)]
2727
[OutputType(typeof(Entity))]
2828
public sealed class GetTeamUsersCommand : CrmOrganizationCmdlet
2929
{

0 commit comments

Comments
 (0)