The page below lists different X Code versions and corresponding SDKs. This information is necessary when using X Code build task in DevOps
https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md
The page below lists different X Code versions and corresponding SDKs. This information is necessary when using X Code build task in DevOps
https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md
I found this interesting blog explaining options method support with EnableCors
This blog helped me configure a build pipeline for react native iOS build:
https://dev.to/staff0rd/building-a-react-native-pipeline-for-android-and-ios-2bo5
I used the code at https://github.com/staff0rd/react-native-pipeline/blob/master/azure-pipelines-ios.yml
In a strange issue, we would get an error while trying to upload an image using multipart async methods in web api.
Finally we found out that the problem was with System.Net.Http.dll versions not working correctly, the problem and solutions are mentioned at
It was resolved after we added this entry to web.config file
<configuration><runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"><dependentAssembly><assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /><bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" /></dependentAssembly></assemblyBinding></runtime></configuration>
Use this regex /^_?[a-zA-Z0-9]([a-zA-Z0-9]*[._+-])*[a-zA-Z0-9_]+@(?!-)[A-Za-z0-9-]{1,63}(?<!-)(\.(?!-)[A-Za-z0-9-]{1,63}(?<!-))*\.[A-...