Click here to Skip to main content
15,891,136 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Who has the most ridiculous fan boys, C++ or Rust? Pin
dandy7215-May-20 10:28
dandy7215-May-20 10:28 
GeneralLooking for a tool... Pin
Andreas Mertens13-May-20 12:08
professionalAndreas Mertens13-May-20 12:08 
GeneralRe: Looking for a tool... Pin
Dave Kreskowiak13-May-20 12:26
mveDave Kreskowiak13-May-20 12:26 
GeneralRe: Looking for a tool... Pin
Andreas Mertens13-May-20 13:01
professionalAndreas Mertens13-May-20 13:01 
GeneralRe: Looking for a tool... Pin
Dave Kreskowiak13-May-20 15:54
mveDave Kreskowiak13-May-20 15:54 
GeneralRe: Looking for a tool... Pin
Garth J Lancaster13-May-20 13:08
professionalGarth J Lancaster13-May-20 13:08 
GeneralRe: Looking for a tool... Pin
Andreas Mertens13-May-20 13:35
professionalAndreas Mertens13-May-20 13:35 
GeneralRe: Looking for a tool... Pin
Richard Deeming14-May-20 1:03
mveRichard Deeming14-May-20 1:03 
If you write it yourself, you're going to have to deal with several variations of the Visual Studio project, even if you limit yourself to recent versions of Visual Studio.

There's the "traditional" project format:
XML
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
For that, the NuGet package references can either be stored in a packages.config file, or as <PackageReference> elements in the project file.

They'll also be listed as <Reference> elements within the project file. And you'll have a reference for the complete dependency tree of NuGet packages which the referenced packages depend on.


Then there's the "SDK-style" project:
XML
<Project Sdk="Microsoft.NET.Sdk">
That should always have NuGet package references stored in the project file. It will only have references for the packages which the project directly depends on; any dependencies of those packages will not be listed.


And if they created any .NET Core RC1 projects with VS2015, you may also have to deal with xproj + project.json projects, which don't use XML at all.
project.json and csproj comparison - .NET Core CLI | Microsoft Docs[^]



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

GeneralRe: Looking for a tool... Pin
dandy7214-May-20 6:47
dandy7214-May-20 6:47 
GeneralThings that make you go hmm... Pin
Mike Hankey13-May-20 8:17
mveMike Hankey13-May-20 8:17 
GeneralRe: Things that make you go hmm... Pin
User 1106097913-May-20 8:22
User 1106097913-May-20 8:22 
GeneralRe: Things that make you go hmm... Pin
Mike Hankey13-May-20 8:35
mveMike Hankey13-May-20 8:35 
GeneralRe: Things that make you go hmm... Pin
Daniel Pfeffer13-May-20 10:42
professionalDaniel Pfeffer13-May-20 10:42 
GeneralRe: Things that make you go hmm... Pin
jeron113-May-20 10:54
jeron113-May-20 10:54 
GeneralRe: Things that make you go hmm... Pin
Daniel Pfeffer13-May-20 11:55
professionalDaniel Pfeffer13-May-20 11:55 
GeneralRe: Things that make you go hmm... Pin
jeron113-May-20 13:39
jeron113-May-20 13:39 
GeneralRe: Things that make you go hmm... Pin
Eddy Vluggen13-May-20 11:35
professionalEddy Vluggen13-May-20 11:35 
GeneralRe: Things that make you go hmm... Pin
Mike Hankey13-May-20 11:59
mveMike Hankey13-May-20 11:59 
GeneralRe: Things that make you go hmm... Pin
H.Brydon13-May-20 16:29
professionalH.Brydon13-May-20 16:29 
GeneralRe: Things that make you go hmm... Pin
Mycroft Holmes13-May-20 13:23
professionalMycroft Holmes13-May-20 13:23 
GeneralRe: Things that make you go hmm... Pin
Mike Hankey13-May-20 13:31
mveMike Hankey13-May-20 13:31 
GeneralRe: Things that make you go hmm... Pin
dandy7214-May-20 6:36
dandy7214-May-20 6:36 
QuestionLooking for good action oriented RPG'ish games, and I've noticed some gamers here Pin
honey the codewitch13-May-20 8:16
mvahoney the codewitch13-May-20 8:16 
AnswerRe: Looking for good action oriented RPG'ish games, and I've noticed some gamers here Pin
Kris Lantz13-May-20 8:54
professionalKris Lantz13-May-20 8:54 
AnswerRe: Looking for good action oriented RPG'ish games, and I've noticed some gamers here Pin
RickZeeland13-May-20 9:00
mveRickZeeland13-May-20 9:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.