All Questions
Tagged with visual-studio-2022 .net-8.0
65 questions
0
votes
0
answers
18
views
AddReference Method in CLR - PythonNet is not found
Trying to add System assembly in a python code:
clr.AddReference(assembly_name)
where assembly name is Sytem, but in this **AddReference ** is attribute is not found under clr. Also in PythonNet clr ...
0
votes
0
answers
38
views
Project is not compatible with ASP.NET Core 8.0. The project admits: net8.0-windows10.0.26100
I have multiple projects in one solution. It works perfectly when running in both Debug and Release mode. However, when publishing, I get this error:
Project is not compatible with net8.0 (....
2
votes
1
answer
104
views
Using .Net 8 for iOS [NOT MAUI], add a LaunchScreen with logo image and background color
Goal:
Create a splash screen ("LaunchScreen") for a ".Net 8 for iOS" C# app (successor to "Xamarin Native / iOS").
The splash screen contains an image (a logo) scaled to ...
-1
votes
1
answer
51
views
How do I handle dependency projects whith .Net8 AOT Publish to AWS Lambda? MSB4018 error
How can i deploy my .Net 8 AOT AWS Lambda project when the project has a dependency?
aws-extensions-for-dotnet-cli discussions:
https://github.com/aws/aws-extensions-for-dotnet-cli/discussions/364
...
0
votes
2
answers
354
views
Reporting in Visual Studio 2022 with .NET 8.0
For weeks and weeks, this has been an issue. After completing coding some business concept modules using Vb.Net it came to a point where printing a report became necessary. I downloaded Crystal ...
0
votes
0
answers
328
views
Specflow isn't happy in Visual Studio Pro 2022 (LTSC) 17.10 with .NET 8
I went back to my automated testing using Specflow and visual studio and encountered a warning of:
The project bindings (e.g. step definitions) could not be discovered. Navigation, step completion and ...
2
votes
1
answer
234
views
MAUI - change AppIcon and SplashScreen for iOS
I tried developing many apps with MAUI and I always successfully set my app icon and splash screen for Android. I'm trying the same thing for iOS and testing with my iPhone SE.
I'm using Visual Studio ...
0
votes
0
answers
341
views
MAUI app crashes on iOS during splash screen
I developed a MAUI app (.NET 8 with Visual Studio 2022) that runs without any problem on Android on physical devices (3+ devices tested) and on my local emulator: never had a startup problem.
I ...
1
vote
1
answer
76
views
StackOverflowException on project startup in JetBrains Rider but not in Visual Studio 2022
I have a large .NET solution (~25 projects) that runs and debugs without any issues in Visual Studio 2022. Recently, I tried switching to JetBrains Rider (version 2024.3.2). However, when I attempt to ...
1
vote
2
answers
422
views
Visual Studio 2022 v17.11 to v17.12 Upgrade - Form Designer Issues
We have a very large WinForms solution (38 projects) that targets .NET 8.0 (Windows), and it worked just fine in VS 17.11.6 but as soon as we upgraded to v17.12 we can no longer open most Forms/...
0
votes
1
answer
284
views
.NET 8 Durable function - unable to catch activity timeout when running locally in VS 2022
I'm currently developing a durable function to handle large file uploads, and I'm having some issues trying to test activity timeouts locally.
In brief, the scenario I'm trying to test is as follows: ...
0
votes
1
answer
161
views
WPF project on .NET 8 missing 'Add Service Reference' from the 'Connected Services' menu
I have a WPF running on .NET 8.0. I understand that MS in their infinite wisdom have neglected VB developers when it comes to .NET core, but this is not .NET core.
Link to .NET core issue
According to ...
0
votes
0
answers
254
views
Nuget package bug 'Could not load file or assembly 'System.IO.Ports, Version=8.0.0.0'
I have System.IO.Port nuget package installed in 2 projects in same solution. The version of both is 8.0.0.0. One works correctly, and the other one throws error in runtime, that it can't find it. ...
0
votes
1
answer
183
views
Updating nuget package but in runtime still uses the old code
I have 1 project, which I build into a nuget package and another, in which I have installed this package. I updated the first project and then updated the nuget package in the second project. When I ...
-1
votes
1
answer
88
views
HTTP Controller in ASP.NET doesn't post/get any Requests
I have been trying to make test connection to an API controller on ASP.NET (with .NET 8) using curl locally, but i have not get any requests received to the server despite all the code seems to be ...