Skip to main content
Filter by
Sorted by
Tagged with
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
4 votes
1 answer
2k views

If a .NET 462 project references a .NET Standard 2.0 dll the dependencies are not copied to the output bin folder. It works correctly when the .NET Standard 2.0 project is referenced as <...
bobschi's user avatar
  • 345
1 vote
0 answers
213 views

I have run into a problem with msbuild. I have a three tiers of project files. The lowest create libraries, some of which are language neutral, and some of which are language specific. The next ...
Matt Hoover's user avatar
2 votes
1 answer
1k views

I have a .NET Core Class Library created in VS2017. I need to reference an assembly build against .NET 4.5.2. When I add the reference, I receive the following error: Error CS0012 The type 'Object'...
Serhii Shushliapin's user avatar
2 votes
0 answers
269 views

I have a project that is referenced by many dependent projects, and some files in that project that must be in the binary directory of the dependent projects for the dependent projects to run. ...
bwerks's user avatar
  • 9,101
4 votes
1 answer
839 views

I have a .net solution that has two class library projects (Say A and B) that I am also publishing to a nuget server. If I were to add A as a project reference as well as a nuget reference on B, what ...
KnightFox's user avatar
  • 3,252
14 votes
1 answer
4k views

When referencing projects within WiX projects (*.wixproj) I often saw the code snippet <ItemGroup> <ProjectReference Include="..\Foo.Bar\Foo.Bar.csproj"> <Name>Foo.Bar</...
Aeon512's user avatar
  • 175
1 vote
2 answers
166 views

I have solution with multiple projects. Few common folders for Bin/Lib/Include e.g. all exported lib in Lib folder, executable in Bin folder and header in Include Example Solution - S Project A1 -...
Ashish Kasma's user avatar
  • 3,662
10 votes
2 answers
4k views

Is it possible to set the configuration of ProjectReference in MSBuild? Scenario: I have a build script (web deploy) that has a number of configurations where the only difference has to do with how ...
Rune FS's user avatar
  • 21.7k