Relative Content

Tag Archive for .net-8.0

No option to add a new form in VS 2022 NET8.0 Project

I’m missing the option to add a new form. I understand that in NET8.0 a reference no longer works. I’ve looked all over but can’t find a solution. I’ve tried editing the csproj file. My VS 2022 version is 17.10.5. I’m using the community version.

No option to add a new form in VS 2022 NET8.0 Project

I’m missing the option to add a new form. I understand that in NET8.0 a reference no longer works. I’ve looked all over but can’t find a solution. I’ve tried editing the csproj file. My VS 2022 version is 17.10.5. I’m using the community version.

No option to add a new form in VS 2022 NET8.0 Project

I’m missing the option to add a new form. I understand that in NET8.0 a reference no longer works. I’ve looked all over but can’t find a solution. I’ve tried editing the csproj file. My VS 2022 version is 17.10.5. I’m using the community version.

No option to add a new form in VS 2022 NET8.0 Project

I’m missing the option to add a new form. I understand that in NET8.0 a reference no longer works. I’ve looked all over but can’t find a solution. I’ve tried editing the csproj file. My VS 2022 version is 17.10.5. I’m using the community version.

how to Session Manage in asp.net 8.0 application?

I want to Implement Session in asp.net 8.0 application enter image description here
//I Code in Sartup class
//=======================
services.AddSession(options => {
options.IdleTimeout = TimeSpan.FromMinutes(1);
});