public void LogProjectInfo()

in src/dotnet/ReSharperPlugin.DotNetDisassembler/Statistics/AsmViewerUsageCollector.cs [96:110]


    public void LogProjectInfo(JitDisasmProjectContext projectContext)
    {
        try
        {
            _projectInfoCollected.Log(
                _sdkTypeField.With(projectContext.Sdk),
                _targetFrameworkField.With(projectContext.Tfm?.UniqueString)
            );
        }
        catch (Exception ex)
        {
            Logger.LogExceptionSilently(ex);
            // Ignore errors during error logging
        }
    }