All Questions
925
questions
0
votes
0
answers
47
views
Is there a possibility to Checkout all git Branches of one solution at the same time?
We have a solution with mutliple projects inside. The projects hasve 2 main branches, one for 32-Bit and one for 64-Bit.
Is there a possibility to checkout all git branches at the same time when one ...
0
votes
2
answers
79k
views
The type 'xxx' is defined in an asembly that is not referenced
As I recently updated a custom DLL file to version 1.0.3483.0, when I included that DLL file in the project, it required version 1.0.3478.
What are the steps I need to follow in order to update the ...
1
vote
1
answer
2k
views
How can I know which version of Visual Studio a Visual Studio solution is created by?
I need to build a C# solution but do not know which version of Visual Studio it was created by. I installed Visual Studio 2017 but got build errors like:
CS1617 Invalid option 'preview' for /...
0
votes
0
answers
320
views
Visual Studio 2015 post build run ps1 file
i am trying to get a PowerShell .ps1 script "Deploy.ps1" to run after a successful build completes in my Visual Studio 2015 project.
previously I got this to work in Visual Studio 2019 by ...
0
votes
0
answers
69
views
Visual studio 2015 bring back exception window
For a few days my exception window looks like the following.
The previous window (that is gone for unknown reason) allowed me to go through inner exception etc, but this is next to useless. No amount ...
0
votes
1
answer
643
views
Chart COUNT Query C#?
Kinda new to C#, I'm a bit confused with this issue I encountered in my codes for a school assignment. Trying to make a Room Activity chart in a winform for a school project where the SQL COUNT query ...
1
vote
1
answer
602
views
How do I create a Visual Studio 2015 compatible extension in Visual Studio 2019?
How do I correctly create an extension for Visual Studio with backward compatibility up to Visual Studio 2015? If you use the standard Visual Studio 2019 template for extensions, then it uses DLLs in ...
0
votes
1
answer
98
views
How to make other controls see a collection of DataTables in a custom control?
I am building a custom compoment that can be dragged from the toolbox onto a form.
It exposes a List of type DataTable, and this works well so far.
What I am missing is that when I put a BindingSource ...
1
vote
1
answer
584
views
How to make editable objects in the designers `Collection Editor Windows`?
I created a custom component, derived from TDataSet.
Now I created a collection from a custom type dsTable named gttTables. (all the code is below)
When I drop the component on a form, the collection ...
0
votes
1
answer
118
views
custom control with Collection: the Collection Editor appears but immediate dissappears again
I am trying to create a custom control (that should show up in the toolbox) that must have a collection of another class.
I used this question as my guideline.
But I hit the following problem.
When I ...
1
vote
0
answers
290
views
Why can I not add a reference to a project in Visual Studio 2012 and 2015?
In Visual Studio 2015, I create a new project, using the Visual C# > Windows > Console Application template. (The target framework is the default of .NET Framework 4.5.2, but I do not think ...
2
votes
0
answers
6k
views
Getting rid of "mismatch between the processor architecture of the project being built "MSIL"
I know this is a common error for people compiling with mismatched project settings, and I've looked through a lot of those questions and answers. However, I don't appear to have mismatched project ...
3
votes
1
answer
632
views
Shortcut for duplicating lines in Visual Studio?
I started relearning Unity again after a break. Before I use to work on monodevelop and i could easily copy above line down by Shift+Alt+Up/Down. But now i can't find anything similar in VS for Unity. ...
2
votes
1
answer
1k
views
Overridden method documentation
I am working with C# and Visual Studio (2015, made no check on other versions).
I have a problem with an overridden method for the code documentation. Please see following example
public class ...
1
vote
0
answers
129
views
How can I debug a custom implementation of IFixtureBuilder?
We're using the NUnit 3 Test Adapter extension in Visual Studio 2015 to run our automation tests, and I'm trying to write my own implementation of IFixtureBuilder to generate more complex TestSuite ...