Xcode Provisioning Profiles Location
Where are the Provisioning Profiles located in Xcode 8.3.3 within the project and/or file directory?
- Modified
- 22 Feb at 14:52
Can I Pass Compilation Constants to a Project Reference?
If I have a `<ProjectReference>` reference, is there any way to pass a conditional compilation value to that project? Something like this (I know `<DefineConstants>` doesn't exist like this, it's just...
The term 'add-migration' is not recognized as the name of a cmdlet
So randomly from one day to the next my migrations stopped working. I do add-migration and it says its not being recognized. I'm using PM since this is a asp.net mvc and was working the day before. >...
- Modified
- 10 Aug at 14:25
Gradle - Error Could not find method implementation() for arguments [com.android.support:appcompat-v7:26.0.0]
I am trying to open existing android project in android studio and it gradle cannot build the app without the error Error android studio keeps on throwing ``` Error:(74, 1) A problem occurred evalua...
- Modified
- 10 Aug at 13:42
How do I resolve the error AADSTS7000218: The request body must contain the following parameter: 'client_secret' or 'client_assertion'
This is how I have written code and trying to get the output. > The request body must contain the following parameter: `client_secret` or `client_assertion` ``` static async Task<AuthenticationResu...
- Modified
- 10 Mar at 17:48
HttpWebRequest in .NET Core 2.0 throwing 302 Found Exception
We are upgrading our application from .net framework to .net core 2.0. In it, we use a `HttpWebRequest` to contact a site with `AllowAutoRedirect` set to false. When the code executed `request.GetRes...
- Modified
- 10 Aug at 03:34
How to retrieve a list of Memory Cache keys in asp.net core?
To be succinct. Is possible list all register keys from Memory Cache in the .Net Core Web Application? I didn't find anything in IMemoryCache interface.
- Modified
- 9 Aug at 17:24
Using null-conditional bool? in if statement
Why this code works: ``` if (list?.Any() == true) ``` but this code doesn't: ``` if (list?.Any()) ``` saying So why is it not a language feature making such an implicit conversion in the stat...
- Modified
- 13 Jan at 15:31
Cookie Authentication expiring too soon in ASP.NET Core
I have a ASP.NET Core 1.1.2 project in which I am using cookie authentication. I am having a problem where users are being prompted to log back in after being idle for an hour or less, and losing wor...
- Modified
- 19 Jan at 18:44
Async function without await in JavaScript
I have two functions, `a` and `b`, that are asynchronous, the former without `await` and the latter with `await`. They both log something to the console and return `undefined`. After calling either of...
- Modified
- 4 Sep at 05:35
Get duration of Video after upload
What is best way to get? I have a field where user will upload video. When you click the upload button, Video get uploaded. This work perfectly. I needed the duration of the video from physical pat...
ComosDB - MongoAPI - Document does not contain shard key
I am investigating using CosmosDB (previously DocumentDB), we currently use MongoDB so I am trying to use the MongoAPI for CosmosDB. I have created a CosmosDB deployment in azure, created a collectio...
- Modified
- 9 Aug at 10:10
Dbcontext IDbset properties are null when injected in ServiceStack IoC
I have registered my DbContext with the standard container in ServiceStack, the DbContext is injected into the service but strangely the `IDbSet` property is `null`, all the other properties are as ex...
- Modified
- 9 Aug at 08:58
Detecting when user scrolls to bottom of div with React js
I have a website with different sections. I am using segment.io to track different actions on the page. How can I detect if a user has scrolled to the bottom of a div? I have tried the following but i...
- Modified
- 9 Aug at 08:41
#include errors detected in vscode
I am using Visual Studio Code in my C++ project. I installed . I got the following error: > #include errors detected. Please update your includePath. IntelliSense features for this translation unit (...
- Modified
- 9 Aug at 06:50
Electron GUI with C# backend
I've got an existing project developed in C# using WinForms with custom controls for the GUI. We are amazed by the approach to write GUIs using HTML/CSS/JS and we are looking for the best way to wri...
- Modified
- 9 May at 01:49
How to set header and options in axios?
I use Axios to perform an HTTP post like this: ``` import axios from 'axios' params = {'HTTP_CONTENT_LANGUAGE': self.language} headers = {'header1': value} axios.post(url, params, headers) ``` Is t...
- Modified
- 4 Dec at 15:17
Timeout connecting to MSSQL Server 2017 when application running on Linux
I recently started up an ASP.NET Core Web-Application (WebAPI) using Entity Framework Core for database communications and everything was running really smooth as long as I was running the application...
- Modified
- 15 Jun at 16:4
ServiceStack - Adding CORS module twice?
I'm getting an exception when loading my ServiceStack Api project. Here's the ServiceStack output: ``` "startUpErrors": [{ "errorCode": "ArgumentException", "message": "An item with the same ...
- Modified
- 8 Aug at 19:4
Fine grained authorization in ServiceStack API
I am developing a large API surface using ServiceStack and I'm addressing the question of authorization. End-users need the ability to customize the rights given to various roles at the API request l...
- Modified
- 9 Aug at 09:22
React: Expected an assignment or function call and instead saw an expression
I am trying to fix this lint error at line `const def = (props) => {` in following sample code. ``` const propTypes = { prop1: PropTypes.string, prop2: PropTypes.string, prop3: PropTypes.string, prop...
What is the ASP.NET Core equivalent to HttpRequestMessage?
I found a [blog post](http://bizcoder.com/posting-raw-json-to-web-api) that shows how POSTed JSON can be received as a string. I want to know what's the new native way to do the same thing as the f...
- Modified
- 8 Aug at 12:28
Convert encrypt and decrypt C# function to PHP function
I would like to convert C# function to PHP function. Here is link to Function in C# : [https://stackoverflow.com/a/19441805/3581428](https://stackoverflow.com/a/19441805/3581428) ``` public static st...
- Modified
- 12 Aug at 05:11
JetBrains Rider - configure appsettings overrides
I am trying JetBrains Rider for my existing .NET Core project. In the project I have several `appsettings.json` overrides: - `appsettings.Development.json`- `appsettings.Test.json`- `appsettings.Stag...
- Modified
- 8 Aug at 11:59
Why does casting a struct to a similar class sort-of work?
I was exploring the limits of what I could accomplish in C# and I wrote a `ForceCast()` function to perform a brute-force cast without any type checks. I wrote a class called `Original` and a stru...
- Modified
- 8 Aug at 11:45