You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Common/SecureStringExtensions.cs(66,17): error CS0227: Unsafe code may only appear if compiling with /unsafe [/home/appuser/app/atomex/atomex.mobile/atomex.client.core/Atomex.Client.Core/Atomex.Client.Core.csproj]
Adding /p:AllowUnsafeBlocks=true to msbuild is another solution but it's better to declare it in csproj file.
The text was updated successfully, but these errors were encountered:
Need to add:
in this
<PropertyGroup>
tag:atomex.mobile/atomex/atomex.csproj
Lines 3 to 6 in 905735a
Otherwise compilation fail with errors such as:
Adding
/p:AllowUnsafeBlocks=true
to msbuild is another solution but it's better to declare it in csproj file.The text was updated successfully, but these errors were encountered: