Click here to Skip to main content
15,881,600 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.

 
AnswerRe: External USB HDD not being detected Pin
ElectronProgrammer30-Jan-22 9:21
ElectronProgrammer30-Jan-22 9:21 
GeneralRe: External USB HDD not being detected Pin
Joan M30-Jan-22 10:06
professionalJoan M30-Jan-22 10:06 
GeneralRe: External USB HDD not being detected Pin
ElectronProgrammer30-Jan-22 10:16
ElectronProgrammer30-Jan-22 10:16 
GeneralRe: External USB HDD not being detected Pin
Joan M1-Feb-22 9:44
professionalJoan M1-Feb-22 9:44 
General.Net versions: clearing the mud? Pin
raddevus29-Jan-22 10:07
mvaraddevus29-Jan-22 10:07 
GeneralRe: .Net versions: clearing the mud? Pin
Jon McKee29-Jan-22 11:38
professionalJon McKee29-Jan-22 11:38 
GeneralRe: .Net versions: clearing the mud? Pin
PIEBALDconsult29-Jan-22 13:34
mvePIEBALDconsult29-Jan-22 13:34 
GeneralRe: .Net versions: clearing the mud? Pin
Marc Clifton29-Jan-22 16:10
mvaMarc Clifton29-Jan-22 16:10 
And if you create a .NET (the framework formerly known as .NET Core) project with:

dotnet new classlib -n "foo" -lang C#

Which is the only way I know to create a .NET (the framework formerly known as .NET Core) library project, since I was using that because I couldn't find "Class Library" as there are so many freaking templates now and I just now searched for "library" for some reason and there it is "a class library that targets .NET Standard or .NET Core"...

...anyways...

It creates a .NET 6.0 project. But if you want it compatible with .NET Core 3.1 and you change the target project, it leaves this kruft in the .csproj:
<PropertyGroup>
  <TargetFramework>netcoreapp3.1</TargetFramework>
  <ImplicitUsings>enable</ImplicitUsings>
  <Nullable>enable</Nullable>
</PropertyGroup>

and the ImplicitUsings and Nullable are not compatible with .NET Core 3.1 so you spend an hour googling and stumble across an SO post that says, go to the .csproj and set those to "disable."

Sigh | :sigh: Roll eyes | :rolleyes: Mad | :mad: Laugh | :laugh: OMG | :OMG: Hmmm | :| Dead | X|

So many emotions because VS 2022 doesn't do this one simple thing for you.

GeneralRe: .Net versions: clearing the mud? Pin
raddevus29-Jan-22 17:07
mvaraddevus29-Jan-22 17:07 
GeneralRe: .Net versions: clearing the mud? Pin
Sander Rossel30-Jan-22 1:09
professionalSander Rossel30-Jan-22 1:09 
JokeRe: .Net versions: clearing the mud? Pin
Kornfeld Eliyahu Peter30-Jan-22 2:59
professionalKornfeld Eliyahu Peter30-Jan-22 2:59 
GeneralRe: .Net versions: clearing the mud? Pin
Sander Rossel30-Jan-22 9:34
professionalSander Rossel30-Jan-22 9:34 
GeneralRe: .Net versions: clearing the mud? Pin
MSBassSinger1-Feb-22 12:05
professionalMSBassSinger1-Feb-22 12:05 
GeneralRe: .Net versions: clearing the mud? Pin
Sander Rossel1-Feb-22 22:22
professionalSander Rossel1-Feb-22 22:22 
GeneralRe: .Net versions: clearing the mud? Pin
Gerry Schmitz30-Jan-22 4:59
mveGerry Schmitz30-Jan-22 4:59 
GeneralRe: .Net versions: clearing the mud? Pin
Richard Deeming30-Jan-22 22:03
mveRichard Deeming30-Jan-22 22:03 
GeneralRe: .Net versions: clearing the mud? Pin
maze331-Jan-22 0:14
professionalmaze331-Jan-22 0:14 
GeneralRe: .Net versions: clearing the mud? Pin
raddevus31-Jan-22 3:00
mvaraddevus31-Jan-22 3:00 
GeneralRe: .Net versions: clearing the mud? Pin
MSBassSinger1-Feb-22 12:02
professionalMSBassSinger1-Feb-22 12:02 
GeneralRe: .Net versions: clearing the mud? Pin
raddevus1-Feb-22 16:54
mvaraddevus1-Feb-22 16:54 
RantI am not getting some of my Amazon/Parcel packages now Pin
Slacker00729-Jan-22 7:34
professionalSlacker00729-Jan-22 7:34 
GeneralRe: I am not getting some of my Amazon/Parcel packages now Pin
Gary R. Wheeler29-Jan-22 7:47
Gary R. Wheeler29-Jan-22 7:47 
GeneralRe: I am not getting some of my Amazon/Parcel packages now Pin
Roger Wright29-Jan-22 8:59
professionalRoger Wright29-Jan-22 8:59 
GeneralRe: I am not getting some of my Amazon/Parcel packages now Pin
Slacker00729-Jan-22 9:28
professionalSlacker00729-Jan-22 9:28 
GeneralRe: I am not getting some of my Amazon/Parcel packages now Pin
Eddy Vluggen29-Jan-22 9:04
professionalEddy Vluggen29-Jan-22 9:04 

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.