23 questions with no answers
0
votes
0
answers
35
views
Can a .NET project template automatically add a project reference to an existing project in the solution when added from Visual Studio?
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
How to reference a specific version of a nuget package from another package when both are in the same solution?
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
Visual studio add project reference with lib file
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
Visual Studio 2015 compiling against a project reference instead of the defined dll reference
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
Meaning and Purpose of Different Visual Studio Project References
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
typescript project reference to shared project fails to resolve
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
In a published application on IIS a project reference is unloaded everytime I restart the server or change something in the application config
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
Including a non referenced dll from a package
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
Adding a project reference FROM .csproj TO .wixproj
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
Using same nuget package for more than one project in solution
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
StyleCop rule for checking project references
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
What does Eclipse do with the "Project References" checked projects?
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/...