Skip to content

Commit 49b1af2

Browse files
Fix Bug 207141: [VS] - version 9.0.2 -->Cannot assign user
Move plugin version to 9.00.5
1 parent 3a492ba commit 49b1af2

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

CxViewerAction/Helpers/PerspectiveHelper.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -588,19 +588,17 @@ public static AssignUser[] GetProjectAssignUsers()
588588
return null;
589589
}
590590

591+
CxWSResponseAssignUsers CxWSResponseResults = client.ServiceClient.GetProjectAssignUsersList(loginResult.SessionId, CommonData.ProjectId);
591592
if (CommonData.IsProjectBound)
592593
{
593-
CxWSResponseAssignUsers CxWSResponseResults = client.ServiceClient.GetProjectAssignUsersList(loginResult.SessionId, CommonData.ProjectId);
594594
if (!CxWSResponseResults.IsSuccesfull)
595595
{
596596
// show error message
597597
MessageBox.Show(CxWSResponseResults.ErrorMessage, "Error", MessageBoxButtons.OK);
598598
return null;
599599
}
600-
601-
res = CxWSResponseResults.AssignUsers;
602600
}
603-
601+
res = CxWSResponseResults.AssignUsers;
604602
return res;
605603
}
606604

CxViewerVSIX/CxViewerPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace CxViewerVSIX
3434
/// </para>
3535
/// </remarks>
3636
[PackageRegistration(UseManagedResourcesOnly = true)]
37-
[InstalledProductRegistration("#110", "#112", "9.00.4", IconResourceID = 400)] // Info on this package for Help/About
37+
[InstalledProductRegistration("#110", "#112", "9.00.5", IconResourceID = 400)] // Info on this package for Help/About
3838
[ProvideMenuResource("Menus.ctmenu", 1)]
3939
//[ProvideAutoLoad("ADFC4E64-0397-11D1-9F4E-00A0C911004F")]
4040
[Guid(CxViewerPackage.PackageGuidString)]

CxViewerVSIX/source.extension.vsixmanifest

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="ae98c9e5-8e14-4c92-b45a-c4fd24a49123" Publisher="Checkmarx" Version="9.00.4" Language="en-US" />
4+
<Identity Id="ae98c9e5-8e14-4c92-b45a-c4fd24a49123" Publisher="Checkmarx" Version="9.00.5" Language="en-US" />
55
<DisplayName>CxViewer</DisplayName>
66
<Description xml:space="preserve" >Checkmarx Visual Studio Plugin</Description>
77
<MoreInfo>http://www.checkmarx.com</MoreInfo>
88
<Icon>Resources\Checkmarx.ico</Icon>
99
<PreviewImage>Resources\Checkmarx.ico</PreviewImage>
10+
<Preview>true</Preview>
1011
</Metadata>
1112
<Installation>
1213
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[10.0,17.0)" />

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pipeline {
3939
steps {
4040
script {
4141
fileOperations([folderRenameOperation(source: "${WORKSPACE}\\${JOB_NAME}\\Artifacts\\CxViewerVSIX.vsix", destination: "${WORKSPACE}\\${JOB_NAME}\\Artifacts\\CxViewerVSIX-9.00.4.vsix")])
42-
kit.Upload_To_Artifactory("${WORKSPACE}\\${JOB_NAME}\\Artifacts\\CxViewerVSIX-9.00.4.vsix", "plugins-release-local/com/checkmarx/visual-studio/")
42+
kit.Upload_To_Artifactory("${WORKSPACE}\\${JOB_NAME}\\Artifacts\\CxViewerVSIX-9.00.5.vsix", "plugins-release-local/com/checkmarx/visual-studio/")
4343
}
4444
}
4545
}

0 commit comments

Comments
 (0)