671 questions
-3
votes
0
answers
21
views
Need advise on AWS certification [closed]
I'm trying for AWS Sysops Administrator within my organization. I'm finding best training for AWS Solution Architect comparatively AWS Sysops Administrator course. Please advise I can go for Solution ...
Advice
0
votes
4
replies
72
views
Possible solution to prime numbers
P(n) = sum_{k=0}^{100} [ p_k * product_{j=0, j≠k}^{100} (n - j)/(k - j) ] this is called a polynomial interpolation formula which gives a streak of 100 prime numbers higher than Euler's n²+n+41 which ...
Best practices
0
votes
2
replies
43
views
Can CMAKE be used to directly build a - pre-existing - Visual Studio solution (.sln) without generating it?
I have a Visual Studio 2019 solution with multiple projects inside, that currently is built with MsBuild.exe.
I have some pre-build and post-build scripts, that I need to ditch because they became ...
2
votes
1
answer
200
views
This file may require MSBuild.exe in order to be imported successfully, and so may fail to build in the dotnet CLI
I am trying to run a C++ solution project on VS Code, while the rest of my team (and me currently) are running on Visual Studio. I am using C# devkit to run solutions in VS Code. And I want to use all ...
0
votes
0
answers
165
views
Used "Save as" to make a Copy of cpp. Visual Studio 2022 wil only compile the original cpp
I used the "save as" function to create a copy of my .cpp file, to make changes to that file with a reliable fallback if my experiments didn't work out. Now, however, VS 2022 will only ...
1
vote
0
answers
74
views
CMake source_group with Multiple Root Filters and Header Files
I've been trying to move my Linux development environment into visual studio (while still keeping CMake for further development on Linux) and so far I've been successful by using CMake presets to ...
-1
votes
1
answer
68
views
Error Import a solution to new new environment
I am trying to import a solution into a new environment but when i try i get a dependency issue with this error
[{"SolutionValidationResultType":"Error","Message":"...
15
votes
2
answers
4k
views
Where is the documentation for the '.slnx' solution format?
All I can find from Microsoft is two blog posts:
"Introducing support for SLNX, a new, simpler solution file format
in the .NET CLI" dated March 13th, 2025, says that it is a preview ...
0
votes
1
answer
115
views
How can I programmatically reload all projects in a Visual Studio solution using the command line for devenv?
I am encountering an issue when running the devenv command line for my solution file. Not all projects are loading properly. However, when I use the Visual Studio 2019 UI, right-click the solution, ...
0
votes
1
answer
296
views
How to create a YAML pipeline in Dev Ops to export Power Automate solution and Import it to Dev Ops Project?
I would like to export a Power Automate solution (TestSolution) from the environment (TESTW) and import it into the project (ProjektTest), repo (TestRepo), branch (main). Unfortunately, I'm not very ...
1
vote
2
answers
959
views
Incompatible WinRT.Runtime versions between projects in the same Solution (Winui3, .Net 8)
There aren't any Syntax errors, but the solution won't compile. I guess this started after updating Visual Studio, but I'm unsure. I've tried cleaning/recompiling the solution and updating the NuGet ...
3
votes
0
answers
86
views
How do I create a solution for an existing C project in Visual Studio?
I have an existing program (the SM64 decompilation) that was written in C and is built using a makefile. I have this program opened in Visual Studio 2022 as a folder. Currently when I want to make a ...
1
vote
2
answers
949
views
How to check which project is unloaded in Visual Studio
I have 350 projects in my solution. The projects are grouped under Solution level folders. While experimenting on few things I unloaded few of the projects (right click on project and Unload Project). ...
-1
votes
1
answer
75
views
Visual Studio C++: copy projects and solutions from one pc to another (github not working)
Visual Studio C++: copy projects and solutions from one pc to another (github not working):
Can I just copy these files to another pc? Or will I mess things up (e.g. in github)? On the destination pc, ...
-2
votes
1
answer
137
views
API to manipulate VS solution and project files (DOM) [closed]
I am working in a code generation scenario where an entire solution is generated including projects, folders, *.cs files, the works.
Currently, I generate all the files programmatically as text files ...