MicrosoftEdge / WebView2Feedback

Feedback and discussions about Microsoft Edge WebView2
https://aka.ms/webview2
451 stars 55 forks source link

NullReferenceException caused by missing WebView2Loader.dll (WinForms, ClickOnce) #228

Closed mikemeinz closed 4 years ago

mikemeinz commented 4 years ago

I published a ClickOnce deployment and found that when deployed and the program subsequently executed, the program immediately fails with a NullReferenceException. To solve, I manually added WebView2Loader.dll to the list of files to be published. My guess is that the NuGet package should be signaling that WebView2Loader.dll should be deployed with the other WebView2 DLLs. Please consider adding WebView2Loader.dll to the list of files required at runtime. Thanks.

Exception Info: System.NullReferenceException
   at Microsoft.Web.WebView2.WinForms.WebView2.OnVisibleChanged(System.EventArgs)
   at System.Windows.Forms.Control.AssignParent(System.Windows.Forms.Control)
   at System.Windows.Forms.Control+ControlCollection.Add(System.Windows.Forms.Control)
   at System.Windows.Forms.Form+ControlCollection.Add(System.Windows.Forms.Control)
   at TestApp.TestApp.InitializeComponent()
   at TestApp.TestApp..ctor()

Versions .NET Framework 4.8 Microsoft.Web.WebView2 0.9.515-prerelease Version 84.0.529.0 (Official build) canary (64-bit) Visual Studio 2017 Version 15.9.22 Target CPU: x64 or x86 (Tried both. Fails both ways)

david-risney commented 4 years ago

Thanks! We'll look into this.

mikemeinz commented 4 years ago

This will solves the problem of not including the WebView2Loader.dll in a ClickOnce manifest.

I modified the two Microsoft.Web.WebView2.targets files in the NuGet package so that the ClickOnce (Publish) feature of Visual Studio would copy the WebView2Loader.dll to the AppPublish directory. I changed None to Content, Include to Included and PreserveNewest to Always..

Edit 14 AUG 2020: I found that there is also a Microsoft.Web.WebView2.targets file in the SOLUTIONDIRECTORY\packages\Microsoft.Web.WebView2.0.9.579-prerelease\build directory that needs to be modified the same way..

Before

  <ItemGroup>
    <None Include="$(MSBuildThisFileDirectory)$(EffectivePlatform)\WebView2Loader.dll">
      <Link>%(Filename)%(Extension)</Link>
      <PublishState>Include</PublishState>
      <Visible>False</Visible>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>

After

  <ItemGroup>
    <Content Include="$(MSBuildThisFileDirectory)$(EffectivePlatform)\WebView2Loader.dll">
      <Link>%(Filename)%(Extension)</Link>
      <PublishState>Included</PublishState>
      <Visible>False</Visible>
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
mikemeinz commented 4 years ago

This is still a problem using NuGet version 0.9.579 prelease.

hpsubs commented 4 years ago

We were trying to use the WebView2 control in our WinForms app and faced the exact same issue when publishing with ClickOnce. When we tried the remedy you suggested, the WebView2Loader.dll does get copied to the clickonce publish folder, but when running it, it gives the same exception.

Anything we can check? Thanks in advance!

mikemeinz commented 4 years ago

@hpsubs I think you can also get a NullReference Exception if the WebView2 control is not properly initialized.

Here is a small example that shows awaiting EnsureCoreWebView2Async and then using the control after the CoreWebView2Ready event is thrown:

      public WebView()
        {
             this.Load += WebView2Test_Load
            InitializeComponent();
        }

        private void WebView2Test_Load(object sender, EventArgs e)
        {
            InitializeAsync();

    webView2.CoreWebView2Ready += webView_CoreWebView2Ready;
        }
        async private void InitializeAsync()
        {
            await webView2.EnsureCoreWebView2Async(); // Wait for coreWebView2 initialization

        }
        private void browser_NavigationCompleted(object sender, CoreWebView2NavigationCompletedEventArgs e)
        {
            Debug.Print("Navigation Completed");
        }

        private void webView_CoreWebView2Ready(object sender, EventArgs e)
        {
            webView2.NavigationCompleted += browser_NavigationCompleted;
            webView2.Source = new System.Uri("https://microsoft.com/", UriKind.Absolute);
        }
carlossanlop commented 4 years ago

@mikemeinz thank you for describing the additional initialization steps. Those are not explained in the tutorial, unfortunately, and I think the team should make sure to include those. @david-risney who can we get in touch with to open a bug for missing info in the tutorial? Should I open an issue in dotnet/docs? - Edit: I opened this issue: https://github.com/MicrosoftDocs/edge-developer/issues/890

One small correction for the code sample though: in your constructor method, the InitializeComponent(); invocation should go first, because that's the one that initializes the webView2 object, and both of the other calls depend on it not being null:

public WebView()
{
    InitializeComponent(); // Call this first
    this.Load += WebView2Test_Load;
    webView2.CoreWebView2Ready += webView_CoreWebView2Ready;
}
...

Unfortunately, even after adding @mikemeinz 's suggestions, I have a couple of problems:

  1. The code compiles and I can execute it, but as soon as InitializeComponent attempts to add the webView2 object to the form's Controls collection, I get a null reference exception:

image

  1. When I open the form Designer, I still get the errors. Here are the screenshots and the full log message:
Expand to view full output ``` See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.Web.WebView2.WinForms.WebView2.OnVisibleChanged(EventArgs e) at System.Windows.Forms.Control.SetVisibleCore(Boolean value) at WinFormsSurface.Designers.ControlDesigner.SetUnhandledException(Control owner, Exception exception) at WinFormsSurface.Designers.ControlDesigner.DesignerWindowTarget.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, WM msg, IntPtr wparam, IntPtr lparam) ************** Loaded Assemblies ************** System.Private.CoreLib Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Private.CoreLib.dll ---------------------------------------- DesignToolsServer Assembly Version: 0.3.0.0 Win32 Version: 0.300.20.41205 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/DesignToolsServer.dll ---------------------------------------- System.Runtime Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.dll ---------------------------------------- WinFormsSurface.Core Assembly Version: 0.3.0.0 Win32 Version: 0.300.20.41205 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/WinFormsSurface.Core.dll ---------------------------------------- Microsoft.Extensions.Logging Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Logging.dll ---------------------------------------- Microsoft.Extensions.Logging.Abstractions Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Logging.Abstractions.dll ---------------------------------------- netstandard Assembly Version: 2.1.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/netstandard.dll ---------------------------------------- Microsoft.Extensions.DependencyInjection Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.DependencyInjection.dll ---------------------------------------- System.ComponentModel Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ComponentModel.dll ---------------------------------------- Microsoft.Extensions.DependencyInjection.Abstractions Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.DependencyInjection.Abstractions.dll ---------------------------------------- System.Collections Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Collections.dll ---------------------------------------- Microsoft.Extensions.Options Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Options.dll ---------------------------------------- System.Linq Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Linq.dll ---------------------------------------- Microsoft.Extensions.Logging.Console Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Logging.Console.dll ---------------------------------------- Microsoft.Extensions.Logging.Configuration Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Logging.Configuration.dll ---------------------------------------- Microsoft.Extensions.Options.ConfigurationExtensions Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Options.ConfigurationExtensions.dll ---------------------------------------- Microsoft.Extensions.Primitives Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Primitives.dll ---------------------------------------- System.Collections.Concurrent Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Collections.Concurrent.dll ---------------------------------------- System.Resources.ResourceManager Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Resources.ResourceManager.dll ---------------------------------------- System.Diagnostics.Tracing Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.Tracing.dll ---------------------------------------- System.Runtime.Extensions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Extensions.dll ---------------------------------------- System.Threading Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.dll ---------------------------------------- Microsoft.Extensions.Configuration.Abstractions Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Configuration.Abstractions.dll ---------------------------------------- Microsoft.Extensions.Configuration Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Configuration.dll ---------------------------------------- System.Threading.Tasks Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.Tasks.dll ---------------------------------------- System.Console Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Console.dll ---------------------------------------- System.Runtime.InteropServices.RuntimeInformation Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.InteropServices.RuntimeInformation.dll ---------------------------------------- Microsoft.Extensions.Configuration.Binder Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56504 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.Configuration.Binder.dll ---------------------------------------- System.Threading.Thread Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.Thread.dll ---------------------------------------- System.Text.Encoding.Extensions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Text.Encoding.Extensions.dll ---------------------------------------- System.Diagnostics.Process Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.Process.dll ---------------------------------------- System.ComponentModel.Primitives Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ComponentModel.Primitives.dll ---------------------------------------- System.IO.Pipes Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.Pipes.dll ---------------------------------------- System.Memory Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Memory.dll ---------------------------------------- System.Threading.ThreadPool Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.ThreadPool.dll ---------------------------------------- Microsoft.Win32.Primitives Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/Microsoft.Win32.Primitives.dll ---------------------------------------- System.Runtime.InteropServices Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.InteropServices.dll ---------------------------------------- System.Security.AccessControl Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.AccessControl.dll ---------------------------------------- System.Security.Principal.Windows Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Principal.Windows.dll ---------------------------------------- System.Threading.Overlapped Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.Overlapped.dll ---------------------------------------- System.Composition.Hosting Assembly Version: 1.0.33.0 Win32 Version: 4.6.26515.06 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/System.Composition.Hosting.dll ---------------------------------------- System.Composition.TypedParts Assembly Version: 1.0.33.0 Win32 Version: 4.6.26515.06 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/System.Composition.TypedParts.dll ---------------------------------------- Microsoft.WinForms.Utilities.Desktop Assembly Version: 0.3.0.0 Win32 Version: 0.300.20.41205 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.WinForms.Utilities.Desktop.dll ---------------------------------------- Microsoft.VisualStudio.WinForms.Protocol Assembly Version: 0.3.0.0 Win32 Version: 0.300.20.41205 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.VisualStudio.WinForms.Protocol.dll ---------------------------------------- Microsoft.WinForms.Utilities.Shared Assembly Version: 0.3.0.0 Win32 Version: 0.300.20.41205 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.WinForms.Utilities.Shared.dll ---------------------------------------- System.Composition.Runtime Assembly Version: 1.0.33.0 Win32 Version: 4.6.26515.06 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/System.Composition.Runtime.dll ---------------------------------------- System.ComponentModel.TypeConverter Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ComponentModel.TypeConverter.dll ---------------------------------------- System.Composition.AttributedModel Assembly Version: 1.0.33.0 Win32 Version: 4.6.26515.06 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/System.Composition.AttributedModel.dll ---------------------------------------- System.Drawing.Common Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Drawing.Common.dll ---------------------------------------- System.ComponentModel.EventBasedAsync Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ComponentModel.EventBasedAsync.dll ---------------------------------------- System.Drawing.Primitives Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Drawing.Primitives.dll ---------------------------------------- System.IO.FileSystem.Watcher Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.FileSystem.Watcher.dll ---------------------------------------- System.ObjectModel Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ObjectModel.dll ---------------------------------------- System.Runtime.CompilerServices.Unsafe Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.CompilerServices.Unsafe.dll ---------------------------------------- System.Windows.Forms Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Windows.Forms.dll ---------------------------------------- System.Windows.Forms.Primitives Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Windows.Forms.Primitives.dll ---------------------------------------- System.Collections.Specialized Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Collections.Specialized.dll ---------------------------------------- System.Resources.Writer Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Resources.Writer.dll ---------------------------------------- System.Runtime.Serialization.Formatters Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Serialization.Formatters.dll ---------------------------------------- System.CodeDom Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.CodeDom.dll ---------------------------------------- System.Windows.Forms.Design Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Windows.Forms.Design.dll ---------------------------------------- System.Collections.NonGeneric Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Collections.NonGeneric.dll ---------------------------------------- System.Windows.Extensions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Windows.Extensions.dll ---------------------------------------- System.Reflection.Primitives Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Reflection.Primitives.dll ---------------------------------------- System.Runtime.Loader Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Loader.dll ---------------------------------------- Newtonsoft.Json Assembly Version: 12.0.0.0 Win32 Version: 12.0.2.23222 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Newtonsoft.Json.dll ---------------------------------------- StreamJsonRpc Assembly Version: 2.0.0.0 Win32 Version: 2.0.146.9624 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/StreamJsonRpc.dll ---------------------------------------- Microsoft.VisualStudio.Validation Assembly Version: 15.3.0.0 Win32 Version: 15.3.15.16354 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.VisualStudio.Validation.dll ---------------------------------------- System.Collections.Immutable Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Collections.Immutable.dll ---------------------------------------- System.Linq.Expressions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Linq.Expressions.dll ---------------------------------------- System.Reflection.Emit.ILGeneration Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Reflection.Emit.ILGeneration.dll ---------------------------------------- System.Reflection.Emit.Lightweight Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Reflection.Emit.Lightweight.dll ---------------------------------------- Anonymously Hosted DynamicMethods Assembly Assembly Version: 0.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Private.CoreLib.dll ---------------------------------------- System.IO.FileSystem Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.FileSystem.dll ---------------------------------------- System.Diagnostics.TraceSource Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.TraceSource.dll ---------------------------------------- System.Runtime.Numerics Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Numerics.dll ---------------------------------------- System.Private.Uri Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Private.Uri.dll ---------------------------------------- System.Runtime.Serialization.Primitives Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Serialization.Primitives.dll ---------------------------------------- System.Data.Common Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Data.Common.dll ---------------------------------------- System.Xml.ReaderWriter Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Xml.ReaderWriter.dll ---------------------------------------- System.Private.Xml Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Private.Xml.dll ---------------------------------------- Microsoft.VisualStudio.Threading Assembly Version: 16.0.0.0 Win32 Version: 16.0.102.38751 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.VisualStudio.Threading.dll ---------------------------------------- Microsoft.Extensions.DependencyModel Assembly Version: 3.1.0.0 Win32 Version: 3.100.19.56502 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Microsoft.Extensions.DependencyModel.dll ---------------------------------------- DesignToolsServer Assembly Version: 0.3.0.0 Win32 Version: 0.300.20.41205 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/DesignToolsServer.dll ---------------------------------------- System.Text.Json Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Text.Json.dll ---------------------------------------- System.Buffers Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Buffers.dll ---------------------------------------- System.Numerics.Vectors Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Numerics.Vectors.dll ---------------------------------------- Accessibility Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/Accessibility.dll ---------------------------------------- WindowsFormsApp1 Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/UserAppData/WindowsFormsApp1.dll ---------------------------------------- System.Configuration.ConfigurationManager Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Configuration.ConfigurationManager.dll ---------------------------------------- System.Xml.XDocument Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Xml.XDocument.dll ---------------------------------------- System.Private.Xml.Linq Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Private.Xml.Linq.dll ---------------------------------------- Microsoft.Web.WebView2.Core Assembly Version: 0.0.0.0 Win32 Version: 0.0.0.0 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/UserAppData/Microsoft.Web.WebView2.Core.dll ---------------------------------------- mscorlib Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/mscorlib.dll ---------------------------------------- Microsoft.Web.WebView2.WinForms Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/UserAppData/Microsoft.Web.WebView2.WinForms.dll ---------------------------------------- Microsoft.Web.WebView2.Wpf Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/UserAppData/Microsoft.Web.WebView2.Wpf.dll ---------------------------------------- Microsoft.Win32.SystemEvents Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/Microsoft.Win32.SystemEvents.dll ---------------------------------------- WindowsBase Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/WindowsBase.dll ---------------------------------------- PresentationFramework Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework.dll ---------------------------------------- PresentationCore Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationCore.dll ---------------------------------------- Nerdbank.Streams Assembly Version: 2.0.0.0 Win32 Version: 2.0.206.28624 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/Nerdbank.Streams.dll ---------------------------------------- System.IO.Pipelines Assembly Version: 4.0.0.1 Win32 Version: 4.6.27129.04 CodeBase: file:///C:/Users/calope/AppData/Local/Temp/WinFormsCache/1u2v5ln0.gkt/DesignToolsServer/System.IO.Pipelines.dll ---------------------------------------- System.Xaml Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Xaml.dll ---------------------------------------- DirectWriteForwarder Assembly Version: 5.0.0.0 Win32 Version: 5,0,20,41107 @Commit: e10dacc6153aaf020d87ee256e80eb6df796bcf8 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/DirectWriteForwarder.dll ---------------------------------------- Microsoft.VisualBasic.Forms Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/Microsoft.VisualBasic.Forms.dll ---------------------------------------- System.Net.WebClient Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.WebClient.dll ---------------------------------------- System.Net.Requests Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.Requests.dll ---------------------------------------- Microsoft.VisualBasic Assembly Version: 10.1.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/Microsoft.VisualBasic.dll ---------------------------------------- Microsoft.VisualBasic.Core Assembly Version: 10.0.6.0 Win32 Version: 11.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/Microsoft.VisualBasic.Core.dll ---------------------------------------- Microsoft.Win32.Registry.AccessControl Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/Microsoft.Win32.Registry.AccessControl.dll ---------------------------------------- Microsoft.Win32.Registry Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/Microsoft.Win32.Registry.dll ---------------------------------------- UIAutomationTypes Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/UIAutomationTypes.dll ---------------------------------------- System.Net.Primitives Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.Primitives.dll ---------------------------------------- UIAutomationProvider Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/UIAutomationProvider.dll ---------------------------------------- System.IO.Packaging Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.IO.Packaging.dll ---------------------------------------- System.Net.WebHeaderCollection Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.WebHeaderCollection.dll ---------------------------------------- PresentationFramework-SystemCore Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework-SystemCore.dll ---------------------------------------- PresentationFramework-SystemData Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework-SystemData.dll ---------------------------------------- PresentationFramework-SystemDrawing Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework-SystemDrawing.dll ---------------------------------------- PresentationFramework-SystemXml Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework-SystemXml.dll ---------------------------------------- PresentationFramework-SystemXmlLinq Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework-SystemXmlLinq.dll ---------------------------------------- PresentationFramework.Aero Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework.Aero.dll ---------------------------------------- PresentationFramework.Aero2 Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework.Aero2.dll ---------------------------------------- PresentationFramework.AeroLite Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework.AeroLite.dll ---------------------------------------- PresentationFramework.Classic Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework.Classic.dll ---------------------------------------- PresentationFramework.Luna Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework.Luna.dll ---------------------------------------- PresentationFramework.Royale Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationFramework.Royale.dll ---------------------------------------- System.Diagnostics.Debug Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.Debug.dll ---------------------------------------- ReachFramework Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/ReachFramework.dll ---------------------------------------- System.IO.MemoryMappedFiles Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.MemoryMappedFiles.dll ---------------------------------------- PresentationUI Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/PresentationUI.dll ---------------------------------------- System.Printing Assembly Version: 5.0.0.0 Win32 Version: 5,0,20,41107 @Commit: e10dacc6153aaf020d87ee256e80eb6df796bcf8 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Printing.dll ---------------------------------------- System.Design Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Design.dll ---------------------------------------- System.Diagnostics.EventLog Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Diagnostics.EventLog.dll ---------------------------------------- System.Diagnostics.PerformanceCounter Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Diagnostics.PerformanceCounter.dll ---------------------------------------- System.DirectoryServices Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.DirectoryServices.dll ---------------------------------------- System.IO.FileSystem.AccessControl Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.FileSystem.AccessControl.dll ---------------------------------------- System.Security.Permissions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Security.Permissions.dll ---------------------------------------- System.Drawing.Design Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Drawing.Design.dll ---------------------------------------- System.Drawing Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Drawing.dll ---------------------------------------- System.IO.Compression Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.Compression.dll ---------------------------------------- System.Resources.Extensions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Resources.Extensions.dll ---------------------------------------- System.Security.Cryptography.Pkcs Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Security.Cryptography.Pkcs.dll ---------------------------------------- System.Security.Cryptography.Encoding Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Cryptography.Encoding.dll ---------------------------------------- System.Security.Cryptography.Primitives Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Cryptography.Primitives.dll ---------------------------------------- System.Security.Cryptography.X509Certificates Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Cryptography.X509Certificates.dll ---------------------------------------- System.Formats.Asn1 Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Formats.Asn1.dll ---------------------------------------- System.Security.Cryptography.ProtectedData Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Security.Cryptography.ProtectedData.dll ---------------------------------------- System.Security.Cryptography.Xml Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Security.Cryptography.Xml.dll ---------------------------------------- System.Security.Cryptography.Algorithms Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Cryptography.Algorithms.dll ---------------------------------------- System.Threading.AccessControl Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Threading.AccessControl.dll ---------------------------------------- System.Windows.Controls.Ribbon Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Windows.Controls.Ribbon.dll ---------------------------------------- System.Windows.Forms.Design.Editors Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41002 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Windows.Forms.Design.Editors.dll ---------------------------------------- System.Windows.Input.Manipulations Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Windows.Input.Manipulations.dll ---------------------------------------- System.Windows.Presentation Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/System.Windows.Presentation.dll ---------------------------------------- UIAutomationClient Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/UIAutomationClient.dll ---------------------------------------- UIAutomationClientSideProviders Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/UIAutomationClientSideProviders.dll ---------------------------------------- System.IO.IsolatedStorage Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.IsolatedStorage.dll ---------------------------------------- WindowsFormsIntegration Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.41107 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.WindowsDesktop.App/5.0.0-preview.8.20411.6/WindowsFormsIntegration.dll ---------------------------------------- Microsoft.CSharp Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/Microsoft.CSharp.dll ---------------------------------------- System.AppContext Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.AppContext.dll ---------------------------------------- System.ComponentModel.Annotations Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ComponentModel.Annotations.dll ---------------------------------------- System.ComponentModel.DataAnnotations Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ComponentModel.DataAnnotations.dll ---------------------------------------- System.Configuration Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Configuration.dll ---------------------------------------- System.Core Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Core.dll ---------------------------------------- System.Security.Cryptography.Cng Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Cryptography.Cng.dll ---------------------------------------- System.IO.Pipes.AccessControl Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.Pipes.AccessControl.dll ---------------------------------------- System.Linq.Queryable Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Linq.Queryable.dll ---------------------------------------- System.Linq.Parallel Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Linq.Parallel.dll ---------------------------------------- System.Security.Cryptography.Csp Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Cryptography.Csp.dll ---------------------------------------- System.Data.DataSetExtensions Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Data.DataSetExtensions.dll ---------------------------------------- System.Data Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Data.dll ---------------------------------------- System.Diagnostics.Contracts Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.Contracts.dll ---------------------------------------- System.Diagnostics.DiagnosticSource Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.DiagnosticSource.dll ---------------------------------------- System.Diagnostics.FileVersionInfo Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.FileVersionInfo.dll ---------------------------------------- System.Diagnostics.StackTrace Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.StackTrace.dll ---------------------------------------- System.Diagnostics.TextWriterTraceListener Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.TextWriterTraceListener.dll ---------------------------------------- System.Diagnostics.Tools Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Diagnostics.Tools.dll ---------------------------------------- System.Dynamic.Runtime Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Dynamic.Runtime.dll ---------------------------------------- System.Globalization.Calendars Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Globalization.Calendars.dll ---------------------------------------- System.Globalization.Extensions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Globalization.Extensions.dll ---------------------------------------- System.Globalization Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Globalization.dll ---------------------------------------- System.IO.Compression.Brotli Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.Compression.Brotli.dll ---------------------------------------- System.IO.Compression.FileSystem Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.Compression.FileSystem.dll ---------------------------------------- System.IO.Compression.ZipFile Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.Compression.ZipFile.dll ---------------------------------------- System.IO.FileSystem.DriveInfo Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.FileSystem.DriveInfo.dll ---------------------------------------- System.IO.FileSystem.Primitives Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.FileSystem.Primitives.dll ---------------------------------------- System.IO.UnmanagedMemoryStream Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.UnmanagedMemoryStream.dll ---------------------------------------- System.IO Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.IO.dll ---------------------------------------- System.Net.Http.Json Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.Http.Json.dll ---------------------------------------- System.Net.Http Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.Http.dll ---------------------------------------- System.Net.Sockets Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.Sockets.dll ---------------------------------------- System.Net.HttpListener Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.HttpListener.dll ---------------------------------------- System.Security.Claims Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Claims.dll ---------------------------------------- System.Net.WebSockets Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.WebSockets.dll ---------------------------------------- System.Net.Mail Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.Mail.dll ---------------------------------------- System.Net.NameResolution Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.NameResolution.dll ---------------------------------------- System.Net.NetworkInformation Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.NetworkInformation.dll ---------------------------------------- System.Net.Ping Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.Ping.dll ---------------------------------------- System.Net.ServicePoint Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.ServicePoint.dll ---------------------------------------- System.Net.Security Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.Security.dll ---------------------------------------- System.Net.WebProxy Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.WebProxy.dll ---------------------------------------- System.Net.WebSockets.Client Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.WebSockets.Client.dll ---------------------------------------- System.Net Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Net.dll ---------------------------------------- System.Numerics Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Numerics.dll ---------------------------------------- System.Private.DataContractSerialization Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Private.DataContractSerialization.dll ---------------------------------------- System.Reflection.DispatchProxy Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Reflection.DispatchProxy.dll ---------------------------------------- System.Reflection.Emit Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Reflection.Emit.dll ---------------------------------------- System.Reflection.Extensions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Reflection.Extensions.dll ---------------------------------------- System.Reflection.Metadata Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Reflection.Metadata.dll ---------------------------------------- System.Reflection.TypeExtensions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Reflection.TypeExtensions.dll ---------------------------------------- System.Reflection Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Reflection.dll ---------------------------------------- System.Resources.Reader Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Resources.Reader.dll ---------------------------------------- System.Runtime.CompilerServices.VisualC Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.CompilerServices.VisualC.dll ---------------------------------------- System.Runtime.Handles Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Handles.dll ---------------------------------------- System.Runtime.Intrinsics Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Intrinsics.dll ---------------------------------------- System.Runtime.Serialization.Json Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Serialization.Json.dll ---------------------------------------- System.Runtime.Serialization.Xml Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Serialization.Xml.dll ---------------------------------------- System.Runtime.Serialization Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Runtime.Serialization.dll ---------------------------------------- System.Security.Cryptography.OpenSsl Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Cryptography.OpenSsl.dll ---------------------------------------- System.Security.Principal Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.Principal.dll ---------------------------------------- System.Security.SecureString Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.SecureString.dll ---------------------------------------- System.Security Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Security.dll ---------------------------------------- System.ServiceModel.Web Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ServiceModel.Web.dll ---------------------------------------- System.ServiceProcess Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ServiceProcess.dll ---------------------------------------- System.Text.Encoding.CodePages Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Text.Encoding.CodePages.dll ---------------------------------------- System.Text.Encoding Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Text.Encoding.dll ---------------------------------------- System.Text.Encodings.Web Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Text.Encodings.Web.dll ---------------------------------------- System.Text.RegularExpressions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Text.RegularExpressions.dll ---------------------------------------- System.Threading.Channels Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.Channels.dll ---------------------------------------- System.Threading.Tasks.Dataflow Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.Tasks.Dataflow.dll ---------------------------------------- System.Threading.Tasks.Extensions Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.Tasks.Extensions.dll ---------------------------------------- System.Threading.Tasks.Parallel Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.Tasks.Parallel.dll ---------------------------------------- System.Threading.Timer Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Threading.Timer.dll ---------------------------------------- System.Transactions.Local Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Transactions.Local.dll ---------------------------------------- System.Transactions Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Transactions.dll ---------------------------------------- System.ValueTuple Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.ValueTuple.dll ---------------------------------------- System.Web.HttpUtility Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Web.HttpUtility.dll ---------------------------------------- System.Web Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Web.dll ---------------------------------------- System.Windows Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Windows.dll ---------------------------------------- System.Xml.Linq Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Xml.Linq.dll ---------------------------------------- System.Xml.XPath.XDocument Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Xml.XPath.XDocument.dll ---------------------------------------- System.Xml.Serialization Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Xml.Serialization.dll ---------------------------------------- System.Xml.XmlSerializer Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Xml.XmlSerializer.dll ---------------------------------------- System.Xml.XPath Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Xml.XPath.dll ---------------------------------------- System.Xml.XmlDocument Assembly Version: 5.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Xml.XmlDocument.dll ---------------------------------------- System.Xml Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.Xml.dll ---------------------------------------- System Assembly Version: 4.0.0.0 Win32 Version: 5.0.20.40711 CodeBase: file:///C:/Program%20Files%20(x86)/dotnet/shared/Microsoft.NETCore.App/5.0.0-preview.8.20407.11/System.dll ---------------------------------------- ************** JIT Debugging ************** ```

image

image

carlossanlop commented 4 years ago

OK I figured out the problem.

The documentation states I should use Edge Canary, which I'm using. My current version is 87.0.630.0 (Official build) canary (64-bit), which is supposed to be supported because the release notes for the version of WebView2 I'm using says: minimum Microsoft Edge version 86.0.579.0..

Notice the installed version is x64. Before I found this issue, I found this StackOverflow thread, which states that we need to build the app for x86. Not true if the installed Edge version is x64.

I also noticed that WebView2 won't work with Edge stable version, even though the latest released version is above the minimum supported according to the release notes. My current Edge stable version is 85.0.564.44 (Official build) (64-bit), but unless I have Canary installed, the app will continue crashing.

So I made sure to build my app for x64 and it now works. I can open the Designer, I can run the app and see the WebView embedded in the form.

carlossanlop commented 4 years ago

@david-risney another way to get this issue addressed is by giving the user a more useful exception message. Seeing "object reference not set to an instance of an object" is not helpful at all for this very particular case.

champnic commented 4 years ago

The original issue, ClickOnce failure due to missing WebView2Loader.dll, should be fixed and available in the latest prerelease package, 0.9.628-prerelease. Thanks!

champnic commented 4 years ago

@carlossanlop We have work on our backlog to improve the errors generated by failing to create the CoreWebView2 (most often associated with no supported runtime/browser).

pipalot commented 4 years ago

The original issue, ClickOnce failure due to missing WebView2Loader.dll, should be fixed and available in the latest prerelease package, 0.9.628-prerelease. Thanks!

ClickOnce is still missing WebView2Loader.dll and the x86, x64 and arm64 directories, none of which are copied to the App.Publish sub-directories when I publish. I've tried using 0.9.628-prerelease and even 0.9.579 with the amended target files mentioned above., none of which works with ClickOnce for me. Is this just affecting me?

champnic commented 4 years ago

Can you try uninstalling and re-installing the nuget package (rather than updating)? Sometimes I find if a file has been touched then it won't overwrite it during update.

Can you try fully cleaning and then rebuilding the solution, and then try publishing?

champnic commented 4 years ago

Continuing this discussion in #528.

bharatvarsha commented 1 year ago

The original issue, ClickOnce failure due to missing WebView2Loader.dll, should be fixed and available in the latest prerelease package, 0.9.628-prerelease. Thanks!

ClickOnce is still missing WebView2Loader.dll and the x86, x64 and arm64 directories, none of which are copied to the App.Publish sub-directories when I publish. I've tried using 0.9.628-prerelease and even 0.9.579 with the amended target files mentioned above., none of which works with ClickOnce for me. Is this just affecting me?

You probably moved on but just in case, I solved the issue by using suggestion by BirsuIonut user - This seems easy to do than tinkering around with .targets files.

https://github.com/MicrosoftEdge/WebView2Feedback/issues/3172

@pipalot