Search found 17 matches

by dbaltz
Wed Dec 11, 2019 2:12 pm
Forum: Support (Vault Professional)
Topic: Cannot save new setup & deployment project
Replies: 1
Views: 12425

Cannot save new setup & deployment project

I have a VS 2017 solution with three C++ projects checked in to Vault Pro and all is working fine. When I try to add a Setup & Deployment project to the solution, I get through the wizard and all seems good until I try to save the Deployment project file. Then I get an error saying it can't save...
by dbaltz
Wed Aug 28, 2019 2:15 pm
Forum: Support (Vault Professional)
Topic: Unable to parse repository info from project file
Replies: 4
Views: 14703

Re: Unable to parse repository info from project file

Vault v10.0.2 (30936)

I Open Solution from VS2017 and it gives me the error immediately.
by dbaltz
Tue Aug 27, 2019 11:25 am
Forum: Support (Vault Professional)
Topic: Unable to parse repository info from project file
Replies: 4
Views: 14703

Unable to parse repository info from project file

I am getting the following message when opening a solution: Failed to register project PageXaml with SourceGear Vault Pro Visual Studio Enhanced Client Unable to parse repository info from project file. [RESOURCECOMPILE] PageXaml is not a project in my solution, yet it lists some of the files in the...
by dbaltz
Tue Dec 19, 2017 9:34 am
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

Thanks.
by dbaltz
Mon Dec 18, 2017 5:39 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

One last question:
How do I delete my test items from the work item project? Is there a way to delete the entire Project and entries?
by dbaltz
Mon Dec 18, 2017 5:13 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

Everything is working now. Thanks for the help.
by dbaltz
Mon Dec 18, 2017 4:43 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

Yes, It appears that the global scope of the connection is the problem.

I have successfully validated an item!
by dbaltz
Mon Dec 18, 2017 3:28 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

It looks like ServerOperations.client.ClientInstance is null. Here is how I connect to the server: VaultConnection con = new VaultConnection(); Excel.Application objexcel; public Form1() { InitializeComponent(); con.InitService(VaultConnection.AccessLevelType.Client); con.InitDragnetService(); con.L...
by dbaltz
Mon Dec 18, 2017 3:06 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

Yes. I'm logged into the server and also Dragnet. I tried just reading the open items and it throws the same exception. try { MantisItemExpanded[] openItems = ItemTrackingOperations.ProcessCommandListOpenFortressItems(projects[0].Name); } catch (Exception ex) { MessageBox.Show(ex.Message); }
by dbaltz
Mon Dec 18, 2017 1:44 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

It wont compile:
error CS1061: 'VaultClientIntegrationLib.FortressItemExpanded' does not contain a definition for 'SetProject' and no extension method 'SetProject' accepting a first argument of type
by dbaltz
Mon Dec 18, 2017 11:09 am
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

This is the exception stack it throws: StackTrace " at VaultClientIntegrationLib.ItemTrackingOperations.ProcessCommandListFortressProjects()\r\n at VaultClientIntegrationLib.FortressItemExpanded.SetProject(String project)\r\n at VaultClientIntegrationLib.FortressItemExpanded.Validate()\r\n at E...
by dbaltz
Fri Dec 15, 2017 5:58 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

On Validate() I get:
"Object reference not set to an instance of an object."

To what Object is it referring?
by dbaltz
Fri Dec 15, 2017 12:19 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

DragnetLib! Found it.
by dbaltz
Fri Dec 15, 2017 12:14 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

It's not recognizing "MantisLib". I must still be missing a reference. using VaultClientIntegrationLib; using VaultClientOperationsLib; using VaultClientNetLib; using ItemTrackingOperations; using MantisLib; I am referencing: VaultClientOperationsLib VaultClientIntegrationLib VaultClientNe...
by dbaltz
Thu Dec 14, 2017 6:15 pm
Forum: Questions (API)
Topic: How do I start?
Replies: 24
Views: 63256

Re: How do I start?

I have WPF app getting the correct data from the Excel file. Now I just need to add the work items in the correct project folders. I'm totally confused how to do that.
What is a MantisItem or FortressItem? Are those obsolete with Vault Pro 10? What DLL do I need to reference?