Skip to main content
Filter by
Sorted by
Tagged with
4 votes
2 answers
101 views

I have an .sln referencing a single .csproj. Inside the .csproj I download static dependencies into ASP.NET's wwwroot: <Target Name="DownloadContentFiles" BeforeTargets="Restore&...
Benni's user avatar
  • 1,102
0 votes
1 answer
95 views

I'm working on a project that generates bindings for a cross platform c library. The bindings are automatically generated for a specific platform. In my solution I have 3 projects. Project.Windows....
Rick Nijhuis's user avatar
0 votes
0 answers
87 views

Lets say you have a solution with projects A and B. A needs to B be build at least once so in order to be built with MSBuild i need it to be some kind of reference to setup the order of build. But ...
TSDrake's user avatar
  • 189
1 vote
1 answer
589 views

I want to customise the sln file of my solution to manage: 3 projects 5 configurations: Debug, Production_total, Production_Partial, Release and Recette Each configuration should use "Any CPU&...
8oris's user avatar
  • 475
2 votes
2 answers
76 views

I am creating a project and I am using FileSystemWatcher, however I need to add multiple filters and watcher.Filters.Add() doesn't work. I am using .NET Framework ver. 4.8 and have .NET core 7.0.203 ...
AmsterdamGhoul's user avatar
0 votes
1 answer
46 views

Suppose I have isolated some header and source files from a huge CMake C++ project. C:\USERS\PC\SOURCE\REPOS\my_app_src ├───apps {a.hh, b.cc, c.hh, d.cc} │ └───biosimulations {main1.hh, main1.cc, x....
user366312's user avatar
  • 17.5k
0 votes
1 answer
219 views

I'm trying to add a third-party library (let's say rttr) to the Visual Studio solution we generate through CMake.So I know if I create an editable package through Conan, then build it from source, I ...
DuckPunk's user avatar
0 votes
1 answer
716 views

I have msbuild version 14.0.25420.1 on my win10 command prompt computer, If I try to build a visual studio project file with this command: msbuild .\folder1\WxsGenerators.sln I get an error BUILD ...
POVR2's user avatar
  • 85
1 vote
1 answer
903 views

The project that I've cloned locally uses the following dependencies: <TargetFrameworks>netstandard2.0;MonoAndroid10.0;Xamarin.iOS10;Xamarin.Mac20;netcoreapp3.0;netcoreapp3.1;net40;net45;net46;...
Ivan  Silkin's user avatar
-1 votes
1 answer
837 views

This is my final assignment for my course. I worked really hard on it, and was supposed to push the files to a git repository. I tried doing so and it failed, I believe I pressed revert afterwards, it ...
JohnAndom's user avatar
1 vote
0 answers
349 views

I have Solution(.sln) file , SLN have multiple project(.csproj). I need to publish all project in individual project Folder. I am using below powershell command , This below command publish all ...
microset's user avatar
  • 448
0 votes
0 answers
73 views

I am using MSBuild and I came across this topic called Targets that lets you perform some tasks before building the project. I need to run a C++ function which is present in a .cpp file in my (.sln) ...
Nikhil Jain Kamal's user avatar
0 votes
0 answers
51 views

Giving a simple SLN that contains the following project: ├───libs │ ├───libA │ │ Class1.cs │ │ libA.csproj │ ├───libB │ │ Class1.cs │ │ libB.csproj │ └───libC │ ...
Lucas's user avatar
  • 1,361
1 vote
2 answers
2k views

Our code is structured as: - Readme.md - deploy.sh - infrastructure/ -- stacker.yml -- ... - backend/ -- backend.sln -- ... - frontend/ -- package.json -- ... The default behavior when opening a ...
matt's user avatar
  • 191
2 votes
1 answer
3k views

Within Visual Studio (2019 in this case) solution, is there a way to specify an <ItemGroup> in a location that multiple .csproj files can use it within the solution? As an example, this ...
Mike's user avatar
  • 1,190
0 votes
1 answer
981 views

My solution have a mix of Visual Basic and C# projects, in total 32 projects. When I rebuild from Visual Studio 2017, all projects restores from nuget.org. When I trigger a .bat file, only 16 of the ...
Martin Nilsson's user avatar
0 votes
1 answer
248 views

Now i have search for several days how to manage to run SLN files on centos7. I haven't still figure it out. This is my last change to figure it out, so now i hope someone can help me. I really ...
Niklas's user avatar
  • 589
0 votes
0 answers
148 views

I have an asp.net web application project and a regular c# csproj project. My web application project doesn't see the namespace that's in my csproj project after I imported it in and added a reference ...
Jonathan George VanSteenburg's user avatar
0 votes
1 answer
587 views

I have multiple project under the same solution. My concern is the following: Is there any way to aggregate all appsettings.json from different projects into one file in the same solution ?
Damian's user avatar
  • 137
1 vote
1 answer
103 views

I want to prepare a general visual studio solution in c# programming language. But any user will download it a custom name. Is this possible. For example, my own project is prepered and filled like ...
barteloma's user avatar
  • 6,955
0 votes
1 answer
66 views

I'm working on a project which creates large XML files of 800k plus. I was having memory issues so I changed my IIS option in Tools>Options to 64 bit which helped. The problem worsened when my project ...
user616076's user avatar
  • 4,041
7 votes
2 answers
2k views

In some solutions I use direct references to internal projects during development and switch to nuget references for release. However, adding 30+ projects to new solutions manually is a tedious task. ...
t3chb0t's user avatar
  • 19.3k
0 votes
0 answers
370 views

Hello i am trying to run dotnet -c Release [sourcepath] --output [destination] a project in a .sln that has multiple projects. The file-structure of the solution is like this: RootFolder -.sln ...
Bercovici Adrian's user avatar
1 vote
0 answers
1k views

This may be a stupid question, but I've been trying to compile a larger project that was originally associated with visual studio in Ubuntu. I settled on cmake to do this, but it needs a cmakelist ...
gnnop's user avatar
  • 11
2 votes
1 answer
1k views

I am trying to setup a dotnet core webapi project with xunit, using latest versions, based on this guide : https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-with-dotnet-test (by the ...
Julien R's user avatar
  • 402