Unable to generate assets to build and debug. OmniSharp server is not running
On Visual Studio (VS) Code, coding on C#. I'm trying to generate assets to build and debug and I'm getting the following error message: I'm running: - - - - So far I've tried unistalling VS code and...
- Modified
- 24 Jun at 16:20
How do I install python on alpine linux?
How do I install python3 and python3-pip on an alpine based image (without using a python image)? ``` $ apk add --update python3.8 python3-pip ERROR: unsatisfiable constraints: python3-pip (missin...
- Modified
- 24 Jun at 12:25
Validation 30000 No Type Specified for the Decimal Column
What's the best way of specifying a decimal precision without using attributes. I just need to set it in one place for all decimal's in my Data.Models. Its tedious specifying attributes for every deci...
- Modified
- 9 Dec at 14:14
Vertical slice architecture with ServiceStack
i have a `dotnet new` [template project](https://github.com/dj-nitehawk/MongoWebApiStarter) where i'm doing [vertical slice architecture](https://headspring.com/2019/11/05/why-vertical-slice-architect...
- Modified
- 24 Jun at 05:14
Request hangs after RefreshToken expires JsonHttpClient ServiceStack
I'm using ServiceStack JsonHttpClient client (5.9.0) in my Xamarin.Forms mobile app. Client is set like this: ``` client = new JsonHttpClient(App.BaseEndpoint) { RefreshToken = RefreshToken, }; va...
- Modified
- 22 Jun at 20:53
Could not load file or assembly Visual Studio 2019 (Community)
This is going to be one of those questions for which there are hundreds of answers, so please bare with me as I have tried most of them! I have been breaking up a very large project into smaller compo...
- Modified
- 22 Jun at 19:44
What is "name" property in the constructor for HttpGetAttribute?
When I use , intellisense tells me that besides the first argument, i.e. , I also have and . While the latter is obvious to me, I got a bit uncertain on what the parameter had as its purpose. Headin...
- Modified
- 20 Jul at 14:7
Uploading and Downloading large files in ASP.NET Core 3.1?
I am working on an ASP.NET Core 3.1 API project using clean architecture and I have the following classlibs (tiers): - - - - - I want to server (like 2Gb of file size or even more) and download them...
- Modified
- 26 Jun at 12:5
Node.js: SyntaxError: Cannot use import statement outside a module
I am getting this error `SyntaxError: Cannot use import statement outside a module` when trying to import from another javascript file. This is the first time I'm trying something like this. The main ...
- Modified
- 20 Jun at 16:56
Best way to test input value in dom-testing-library or react-testing-library
What is the best way to test the value of an `<input>` element in `dom-testing-library`/`react-testing-library`? The approach I've taken is to fetch the raw input element itself via the `closest()` me...
- Modified
- 12 Oct at 15:0
Set Cache directory for WebView2
I am using WebView2 in WPF control to host the new edge. In my code, I want to cache the cookie and browser specific data to a cache directory. The cache location should be set in the CoreWebView2Env...
what is the Alternate for AddorUpdate method in EF Core?
I want to achieve the ADDorUpdate() method in Generic repository using EF Core like below? Can anyone help me? ``` public virtual void AddOrUpdate(T entity) { #region Argument Validation ...
- Modified
- 18 Jun at 11:43
Using Swashbuckle 5.x specify nullable = true on a Generic T Parameter reference property
I recently upgraded my API to a .net core 3.1 server using Swashbuckle 5 with the newtonsoft json nuget, which produces an openapi 3 schema. I then use NSwag to generate a C# API. Previously I had a ....
- Modified
- 17 Jun at 14:0
Build ASP.Net Core Deploy Package on Linux
I am trying to build a web deploy package on the .net core sdk docker image to be used to deploy to a windows server running iis (the deployment being done on a seperate windows vm). This is the comm...
- Modified
- 16 Jun at 23:43
.NET Core HttpClient upload byte array gives unsupported media type error
I'm trying to upload a simple byte array for my Web Api controller (ASP.NET Core 3) ``` using var client = new HttpClient() { BaseAddress = new Uri("http://someUrl.com/") }; var body = new ByteArrayC...
- Modified
- 16 Jun at 19:40
Get Connection String in Azure Function v3
I am very confused. I want to get a connection string in an Azure v3 function (.Net Core 3.1). My local settings looks like ``` { "IsEncrypted": false, "Values": { "AzureWebJobsStorage...
- Modified
- 20 Nov at 11:20
Connecting an PLC Siemens S7-1500 to an SQL Server Database
The connection guide is [here](https://support.industry.siemens.com/cs/document/109779336/connecting-an-s7-1500-to-an-sql-database-?dti=0&lc=en-WW). I track the guide and do a lot of stuff. The connec...
- Modified
- 13 Jan at 10:52
IsAuthenticate is false for servicestack calls but true for mvc controllers
I've setup .Net Core so that I can successfully login and get access to an MVC API controller behind the Microsoft.AspNetCore.Authorization `[Authorize()]` attribute and see the logged in identity. `...
- Modified
- 16 Jun at 16:20
How to enable C# 9.0-preview
I have downloaded and installed `v5.0.0-preview.5`. My project is targeting `net5.0` but `C# 9.0` is not working. How can I enable `C# 9.0`?
Swagger UI not displaying when deploying API on IIS
Well, I'm using Swagger for my API documentation and it works perfectly in localhost, the problem begins when I host it on the IIS. For somereason it just doesn't work anymore > localhost: ``` https:/...
- Modified
- 20 Feb at 00:24
How to get a simple stream of string using ServiceStack Grpc?
fighting with the ServiceStack library since a while to get a basic "stream" of string to work in C#. In short, I'm trying to replicate the basic example from "native" gRPC. ``` service Greeter { ...
- Modified
- 15 Jun at 16:36
servicestack-dart How to check if a session already exists?
currently I am developing an app with service stack, the thing is that after an user logs itself, thenplaces the app in the background and when the OS kills the app for resources and you return to the...
- Modified
- 15 Jun at 16:12
ServiceStack Webhook + ServiceStack.Webhooks.OrmLite Subscription Store Plugin Issue
I have enabled Webhook for my ServiceStack project in which I am using ServiceStack.Webhooks.OrmLite OrmLiteSubscriptionStore to store my subscription everything works fine except Delete operation, it...
- Modified
- 15 Jun at 13:12
How Do You Clear the macOS Terminal Pad In Visual Studio For Mac?
I'm debugging a C# console application using Visual Studio for the Mac. I'm using frequent `Console.WriteLine()` statements. Is there anyway to clear the output of the `Terminal - macOS` pad where t...
- Modified
- 15 Jun at 10:26
How do I change the Swagger default URL and use a custom one?
I have an API that I created in .NetCore 3.1 and have enabled Swagger(OAS3) using Swashbuckle. By default when my app starts if brings up the Swagger page using this URL: ``` http://{port}/swagger.i...
- Modified
- 15 Jun at 07:31