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
442 views

I have a solution like that: Package1 Package2 Both are Nuget packages, Package2 is referencing Package1 as a project reference. Now if I publish Package2 from what I understand this reference will ...
0 votes
0 answers
877 views

It looks like there has been some work done to add support for visual studio c++ project to project references. https://developercommunity.visualstudio.com/t/MsBuild-to-resolve-and-copy-ProjectRefer/...
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
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 ...
2 votes
0 answers
392 views

I'm trying to use Typescript Project references between 2 projects: client and shared the client/tsc -b process succeeds. but, on runtime imports of shared files fail. the project structure is very ...
0 votes
0 answers
90 views

I wrote a rest app in C#, in one solution I have two projects. Main project, lets say project1 uses project2. Project2 is connected via reference system and adequate dll is created when I publish ...
0 votes
0 answers
191 views

I have a nuspec file that looks like this: <?xml version="1.0" encoding="utf-8"?> <package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> <metadata> <id&...
0 votes
0 answers
881 views

I have a visual studio 2010 solution with multiple C# projects and WiX projects. I'm specifying my build order through project reference, because I am using MSBuild to build my project. Using build ...
1 vote
0 answers
528 views

I am trying to fix warning The type 'X' in 'A' conflicts with the imported type 'X' in 'B' I have solution with 2 projects: A.exe and B.dll, both are referencing same nuget Newtonsoft.Json, ...
3 votes
0 answers
208 views

Sometimes when updating a dll version, the references to that dll from other projects suddenly refer to the GAC instead of our custom assemblies folder. This is a problem, because a project may refer ...
2 votes
0 answers
138 views

Right click on a project-> properties -> Project References. A list of the projects in your workspace appears for you to check. If it only does what I think (force a rebuild when you want to build/...