Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
35 views

I have a system where users create .NET plugin libraries. To support this, I’ve built: A solution template that creates: a plugin project a testbed console app a project reference from the testbed → ...
0 votes
0 answers
71 views

I have a console application which has project reference of a web application. This is how the project reference is added in the csproj file of the console application <ItemGroup> <...
0 votes
1 answer
357 views

I have a weird visual studio error which is bugging me. I am using Visual Studio 2010 My solution is small and contains 2 projects: Project 1 a class library contains the following classes: ...
0 votes
1 answer
655 views

I have created a library project that uses several NuGet packages. When I load my library into another project as a reference, the outer project can see and call all the references that my library ...
0 votes
1 answer
1k views

WARNING: I have posted this on Reddit a few weeks ago but never got a response. I have obtained a large .NET solution from a third-party, and I'm having the following issues with it: Right click > ...
1 vote
2 answers
489 views

We have decided that even though our data layer is in a separate Azure project, we want to include the .csproj file in our solution so that we are able to debug through API and Datalayers. We do not ...
2 votes
1 answer
2k views

I have a problem with making a package of a project with other project as a reference. In a few words… We have a Net. Core WebAPI with an Onion Architecture. Where those layers are implemented as ...
0 votes
1 answer
631 views

I use Visual Studio Enterprise 2022 LTSC 17.2 with ReSharper 2023.1. I work with several projects in one solution and many of them are referenced (we use custom build tool). Visual studio detects them ...
5 votes
1 answer
1k views

I'm facing a weird issue while trying to build using MSBuild. I'm using MSBuild to build a solution file with /m (parallel build) and BuildProjectReferences set to true. Suppose I have A.vcxproj and B....
2 votes
1 answer
4k views

I have tried searching for an answer to this question, but everything I find is referring to building a Nuget package of my own. To be clear, I am not looking to create a Nuget package, i simply want ...
0 votes
1 answer
189 views

Assume Project A produces a primary assembly but also some assemblies through the use of an MSBuild task (of our own making). Is there a way for Project B, that has a ProjectReference to Project A, to ...
3 votes
2 answers
2k views

Please bear with me on this, since I am a Java developer just dipping a toe into the ASP.Net world I started coding in an existing C# VS2012 codebase. It uses nuget and Newtonsoft is mentioned in the ...
0 votes
1 answer
175 views

I'm trying to understand how to break apart my pretty large TypeScript section of a SPA (React with Asp Net 6 as backend). Let's consider this basic structure: WebAppSolution SharedProject lib ...
0 votes
1 answer
2k views

I have a simple project dependency structure: project A references project B On my build server, both projects are built as Nuget packages: package A and package B. In project B, I have the package ...
1 vote
1 answer
1k views

Well, I tried to implement this function ``` static void DisplayMessage() { string userMessage = string.Format("1000 in hex is {0:x}", 1000); System.Windows.MessageBox.Show(...
1 vote
1 answer
512 views

To programmatically compile/build a project references, I use the ts.createSolutionBuilder API. Problem is that in my use case I don't have the tsconfig.json file written in the filesystem per package....
0 votes
2 answers
1k views

I have a project called Category_Helper_Project. Within this project are two relevant classes: Category_Interface and Category_File_Manager The purpose of this project is that it can be referenced ...
10 votes
3 answers
9k views

System.Windows.Markup.XamlParseExceptionoccurred A first chance exception of type 'System.Windows.Markup.XamlParseException' occurred in PresentationFramework.dll Additional information: 'Set ...
0 votes
0 answers
65 views

I have a Visual Studio 2015 solution with two projects: <foo> and <bar>. <bar> compiles to <bar.dll>. <foo> has a reference to <bar.dll> and NOT to the <bar> ...
1 vote
1 answer
60 views

For example I have three projects shared frontend backend I want to use shared project as project reference in the frontend and the backend But the backend use commonjs modules and frontend use ...
6 votes
1 answer
3k views

I am writing an application in Visual Studio 2008. I have a help file that I want to be included in the output of my project. I want the most recent version of my help file to stay in a folder that is ...
0 votes
1 answer
1k views

I have a project called "A" project, and it contain some files (like dll or others). In my main project, I used "Project Reference" to reference this project, and add some context ...
1 vote
1 answer
1k views

I'm exploring Rush/PNPM and Typescript with project references and incremental builds but I'm a little confused about which of the two will be the best at managing incremental builds. If I use the ...
18 votes
1 answer
6k views

I quite like separating functionality across a few assemblies, for example a facade to a data provider, contracts for the data provider and the data provider implementation itself... to my mind, it ...
1 vote
0 answers
235 views

Can anyone tell me what the difference is here between the two Visual Studio project reference types? One has two grey squares connected by a line, while the other has a rounded blue sqaure with two ...