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 → ...
stritch000's user avatar
1 vote
1 answer
72 views

I have an ASP.NET backend project that includes several small class library projects as references. <Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <...
bcExpt1123's user avatar
2 votes
1 answer
56 views

I got a strange issue after i altered a method signature on a referenced project. Let me explain what happened: I got 50 projects P1,P2,..,P50 that depends on a common project C0 that contains common ...
Tara Rulez's user avatar
1 vote
1 answer
683 views

I've created a solution with three projects inside. One of the projects is named Controller and uses Appium.WebDriver, which requires Selenium version 3.141. The second project is named Runner and ...
sl0910's user avatar
  • 21
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 ...
Ilya Chernomordik's user avatar
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 ...
BrianKE's user avatar
  • 4,205
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 ...
Savonarolla's user avatar
1 vote
1 answer
655 views

I'm really confused with all these different DLL files that can be used to add a project reference in Visual Studio. After having clicked on 'Add Project Reference', I choose for 'Browse'. In the ...
user20291437's user avatar
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 ...
Mario Vernari's user avatar
1 vote
1 answer
285 views

I have a main asp.net core project which is called "API" and inside of it I have another project called "API.Tests" for xunit tests. So when I'm referencing main project (<...
Killsan's user avatar
  • 86
0 votes
1 answer
653 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 ...
nrofis's user avatar
  • 9,887
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 ...
julian bechtold's user avatar
0 votes
1 answer
431 views

I have a C# solution that contains two net472 projects: Foo.csproj, and Bar.csproj. The projects are in classic format (no SDK version). The projects use PackageRefernce as package management. Foo....
Placu95's user avatar
  • 11
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(...
challenger128's user avatar
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> ...
Jason 'Bug' Fenter's user avatar
0 votes
1 answer
280 views

Given following source code which need to be maintained within a class library project: using Newtonsoft.Json; namespace Zephyr.SharedProject.Core { public class TestClass { public ...
Zephyr's user avatar
  • 313
5 votes
1 answer
1k views

At the moment I'm trying to setup a solution with a implementations class library and an abstractions project. I want to have both packages on nuget.org. Normally when you're just using ...
Pieterjan's user avatar
  • 3,709
7 votes
3 answers
10k views

I'm learning C# and I don't know exactly how to make a class visible to all projects inside the Solution. Basically I have many projects, all Windows Forms, all of them have some similarity, so they ...
Gustavo E. Hennemann's user avatar
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 ...
CYL's user avatar
  • 135
0 votes
1 answer
386 views

I have .netcore2.0 app called MyHelper. MyHelper is referencing a .netstandard2.0 project called B. MyHelper is published as a nuget package. I need to use MyHelper in other projects and solutions ...
daregazi's user avatar
0 votes
1 answer
269 views

I'm working on an WASM app built with the Uno Platform, and have added a project reference that has been compiled and points to a DLL. Now, when compiling, I get the error: Error: Unhandled Exception: ...
Arlo's user avatar
  • 1,020
5 votes
2 answers
4k views

I have two class library projects and one Web API project. Let it be ClassLibrary1, ClassLibrary2, WebApi. I add link for Web API to both ClassLibrary1 and ClassLibrary2 as a project reference. In ...
Hanna Holasava's user avatar
1 vote
1 answer
1k views

I have a solution that contains both C++ and C# projects that is built in a nightly CI build on a remote machine. The build script checks out a clean copy of the source and builds both debug and ...
GTAE86's user avatar
  • 1,966
6 votes
0 answers
2k views

I've got a project setup as follows: Project B has a dependency on Project A Project C has a dependency on Project B I would like Project C to have access to Project A's types transitively. However, ...
Michael Brown's user avatar
0 votes
2 answers
217 views

Let's say I have a visual studio 2019 solution containing two projects written in C#, one of which is a console app and the other one is a class library. The console app now has a reference to the ...
dude's user avatar
  • 15