Questions tagged [solution]

A solution (.sln file) is a structure for organizing projects in Visual Studio. It groups one or more projects that work together to create an application.

893 questions
0
votes
3 answers

Solution/Architecture: queues or something else?

I have a multiple frontends to my service written in Node.js and workers written in Ruby. Now the question is how to make those communicate? I need to maintain dynamic pool of workers to handle load (spawn more workers when load rises) and messages…
Daniel
  • 4,272
  • 8
  • 35
  • 48
-1
votes
0 answers

How to get all the assembly names of a C# solution while analyzing one of the assembly?

I am creating a Code Analyzer assembly which can have dependency rules to govern other C# solution and assemblies. To create such rules, I have a class that inherits DiagnosticAnalyzer which contains the code for analysising. I want to set a rule…
-1
votes
1 answer

How to find roots for the polynomial given below using Matlab / Mathematica / Python?

x^4 + 4bx^3 + (a^2 + 4b^2 + l^2)x^2 + 2(b(a^2+l^2)-m*l^2)x + a^2l^2 = 0 For some specific values of the unknown coefficients we can get the root. But how could we get the roots of the equation for unknown values of the coefficients ,i.e., how could…
-1
votes
2 answers

C# Use classes in projects from Solution level

In this current Solution I will have ~10 projects (Console Applications) which will use the same functions from Helper classes. In the past I would just copy paste those folders in each project and add the references to the main class. Is there a…
Victor Valeanu
  • 398
  • 6
  • 20
-1
votes
1 answer

How to launch visual studio + open solution + launch project

For a very peculiar solution I need a customer of mine to: launch visual studio open solution launch project The target is having a link that does it all so that the customer has just to click on an icon and the magic happens with no efforts from…
Luca
  • 918
  • 2
  • 13
  • 30
-1
votes
1 answer

Git repo doenst contain a Solution(.sln) file. How can I get it to work?

When I clone the repo I want to add a C# project in visual studio. But I cant seem to build the project, since its not in a solution folder. How can I add an Solution folder to an already existing git repo consisting of some projects?
Kai
  • 21
  • 2
-1
votes
1 answer

Trigger specific build pipeline in Azure Dev Ops with single repository(.sln) having multiple projects(.csproj)

I've a single repository having visual studio solution(.sln), where I've more than one project(.csproj) in same solution(i.e. WebAPI project, WebApp project etc.)... Now, I've created separate pipeline(s) for individual project, which trigger…
-1
votes
1 answer

Is there a way to get all Solution of that riddle?

I have 4 lists: city = ['ROMA', 'ROMA', 'ROMA', 'PARIGI', 'PARIGI', 'CAIRO', 'MOSCA', 'BERLINO', 'CANCUN', 'MILANO', 'PECHINO', 'PECHINO', 'ROMA', 'PARIGI', 'MILANO', 'ROMA', 'MOSCA', 'CAIRO', 'PARIGI', 'PARIGI', 'BERLINO', 'CANCUN',…
Tommyso
  • 1
  • 3
-1
votes
2 answers

Visual Studio 2017 and GIT with external project

I'm trying to use GIT with Visual Studio. The situation is this: \Base\Routines\Routines.csproj \Base\Service\Service.sln \Base\Service\MyApp\MyApp.csproj The service solution includes the Routines project. As you can see the Routines project is…
Matteo
  • 11
  • 1
-1
votes
1 answer

ExtJS dynamically change object properties, after construction?

i have some interesting question about ExtJS framework. for example, window object in extJS have config option: 'onESC' (some events, when esc key down), and another properties. I need dynamically loading this property changing (change it on my…
George
  • 3
  • 3
-1
votes
3 answers

How to make a column with grouped value count and respect on its existing columns

I have the following data table, and I want to get the count by putting some conditions on the existing columns, It'll be really great help if I can get the solution for the same. Input: Key1 id1-age id2-age id3-age id4-age …
-1
votes
2 answers

AWS solution architecture

A workload in an Amazon VPC consist of a single web-server launched from a custom AMI.Session state is stored in database. How should the Solutions Architect modify this workload to be both highly available and scalable? I am hesitating between A…
-1
votes
1 answer

Python: solve system of linear integer equations with approximate values of x

I want to solve a system of 8 linear integer equations, A y = b. It's clear that if I knew the exact value of the coefficients I should use one of the methods described here: Solve system of linear integer equations in Python but in my case I have…
-1
votes
1 answer

How to call static methods from second project in the same solution?

Could someone give me an advice on this question? I need to call static method which is described in another project of the same solution. Thank you in advance!
Pew
  • 11
  • 3
-1
votes
1 answer

exporting a mathematical model solved with cplex

I have a mathematical model that I'm trying to solve it by exporting Cplex library to java. Every thing was alright till I imported my full project to another computer. Cplex solved the mathematical model but now I want to see my variables excel…
sorour
  • 49
  • 6