This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error MSB4242: SDK Resolver Failure: "The SDK resolver "Microsoft.DotNet.MSBuildWorkloadSdkResolver" failed while attempting to resolve the SDK "Microsoft.NET.Sdk". Exception: "Microsoft.NET.Sdk.WorkloadManifestReader.WorkloadManifestCompositionException: Workload definition 'wasm-tools' in manifest 'microsoft.net.workload.mono.toolchain' [/usr/local/share/dotnet/sdk-manifests/7.0.100/microsoft.net.workload.mono.toolchain/WorkloadManifest.json] conflicts with manifest 'microsoft.net.workload.mono.toolchain.net7' [/usr/local/share/dotnet/sdk-manifests/7.0.100/microsoft.net.workload.mono.toolchain.net7/WorkloadManifest.json] | |
at Microsoft.NET.Sdk.WorkloadManifestReader.WorkloadResolver.ComposeWorkloadManifests() | |
at Microsoft.NET.Sdk.WorkloadManifestReader.WorkloadResolver.Create(IWorkloadManifestProvider manifestProvider, String dotnetRootPath, String sdkVersion, String userProfileDir) | |
at Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.CachingWorkloadResolver.Resolve(String sdkReferenceName, String dotnetR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// inside partial class specific to implementation | |
const string Assembly = "Xamarin.iOS"; | |
const string NativeHandlerType = "Name of the handler type in ios"; | |
// This will be in shared mobile class | |
public bool UseCookies { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public AndroidClientHandler () | |
{ | |
_underlyingHander = GetUnderlyingHandler () as AndroidMessageHandler ?? throw new InvalidOperationException ("Unknown underlying handler"); | |
} | |
object GetUnderlyingHandler () | |
{ | |
// Reflection call to read _underlyingHandler field | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Licensed to the .NET Foundation under one or more agreements. | |
// The .NET Foundation licenses this file to you under the MIT license. | |
// ------------------------------------------------------------------------------ | |
// Changes to this file must follow the https://aka.ms/api-review process. | |
// ------------------------------------------------------------------------------ | |
namespace System.Net.Quic | |
{ | |
// MISSING PNSE !! | |
public static class QuicImplementationProviders |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo | |
{ | |
[DynamicDependency ("v1")] | |
[DynamicDependency ("v2")] | |
[DynamicDependency ("v3")] | |
[DynamicDependency ("Method")] | |
int Foo; | |
string v1; | |
long v2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<linker> | |
<assembly fullname="Microsoft.AspNetCore.Authorization"> | |
<type fullname="*" required="false" preserve="all" /> | |
</assembly> | |
<assembly fullname="Microsoft.AspNetCore.Components.Authorization"> | |
<type fullname="*" required="false" preserve="all" /> | |
</assembly> | |
<assembly fullname="Microsoft.AspNetCore.Components.DataAnnotations.Validation"> | |
<type fullname="*" required="false" preserve="all" /> | |
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static int BindJSObject(int jsId, int mappedType) | |
{ | |
JSObject? obj; | |
lock (_boundObjects) | |
{ | |
if (!_boundObjects.TryGetValue(jsId, out obj)) | |
{ | |
IntPtr jsIntPtr = (IntPtr)jsId; | |
obj = mappedType > 0 ? BindJSType(jsIntPtr, mappedType) : new JSObject(jsIntPtr); | |
_boundObjects.Add (jsId, obj); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (task.Exception == null) | |
{ | |
object result; | |
Type task_type = task.GetType(); | |
if (task_type == typeof(Task)) | |
{ | |
result = Array.Empty<object>(); | |
} | |
else | |
{ |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Microsoft (R) Build Engine version 16.7.0-preview-20222-02+43f946cf4 for .NET Core | |
Copyright (C) Microsoft Corporation. All rights reserved. | |
/usr/local/share/dotnet/sdk/5.0.100-preview.5.20223.28/MSBuild.dll -distributedlogger:Microsoft.DotNet.Tools.MSBuild.MSBuildLogger,/usr/local/share/dotnet/sdk/5.0.100-preview.5.20223.28/dotnet.dll*Microsoft.DotNet.Tools.MSBuild.MSBuildForwardingLogger,/usr/local/share/dotnet/sdk/5.0.100-preview.5.20223.28/dotnet.dll -maxcpucount -property:Configuration=Release -property:SelfContained=true -property:RuntimeIdentifier=ios-x64 -p:PublishTrimmed=true -restore -target:Publish -verbosity:m -verbosity:diag ./HelloiOS.csproj | |
Build started 04/24/2020 16:13:55. | |
Environment at start of build: | |
MSBuildExtensionsPath = /usr/local/share/dotnet/sdk/5.0.100-preview.5.20223.28/ | |
DOTNET_HOST_PATH = /usr/local/share/dotnet/dotnet | |
DYLD_FALLBACK_LIBRARY_PATH = /Users/marek/mono/lib:/Library/Frameworks/Mono.framework/Versions/Current/lib:/lib:/usr/lib: | |
HOME = /Users/marek |
NewerOlder