first commit
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
<FileList>
|
||||
<File Reference = "Microsoft.Web.WebView2.Wpf.dll" >
|
||||
<ToolboxItems UIFramework="WPF" VSCategory="WebView2" BlendCategory="WebView2">
|
||||
<Item Type="Microsoft.Web.WebView2.Wpf.WebView2" />
|
||||
</ToolboxItems>
|
||||
</File>
|
||||
<File Reference = "Microsoft.Web.WebView2.WinForms.dll" >
|
||||
<ToolboxItems UIFramework="WinForms" VSCategory="WebView2">
|
||||
<Item Type="Microsoft.Web.WebView2.WinForms.WebView2" />
|
||||
</ToolboxItems>
|
||||
</File>
|
||||
</FileList>
|
||||
BIN
Binary file not shown.
Vendored
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
lecteur/packages/Microsoft.Web.WebView2.1.0.1901.177/tools/wv2winrt/System.CommandLine.Rendering.dll
Vendored
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Vendored
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+14
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
|
||||
</startup>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>wv2winrt</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="M:wv2winrt.Program.Main(System.String[],System.String,System.String,System.Boolean,System.String[],System.String[],System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Given WinMD files, produce C++ code that implements COM IDispatch wrappers around the types in those WinMD files.
|
||||
</summary>
|
||||
<remark>
|
||||
There are several mechanisms to filter out types from the winmd that should not have code generated. They are
|
||||
applied in the following order of precedence:
|
||||
|
||||
1. If the requireAllowForWebAttribute switch is set, then exclude all types without
|
||||
the AllowForWeb attribute.
|
||||
|
||||
2. If the ignoreWebHostHiddenAttribute switch is set then exclude all types with
|
||||
the WebHostHidden attribute.
|
||||
|
||||
3. Explicit include and exclude rules sorted by the length of the
|
||||
rule string. So more general rules are applied first followed by
|
||||
more and more specific rules. If rule text matches the type or
|
||||
namespace name, then the type is included or execluded based on
|
||||
the kind of rule.
|
||||
|
||||
4. If the explicitIncludesOnly switch is set then include all types
|
||||
referenced by other included types. This applies recursively, so
|
||||
a type included due to this will also include all types
|
||||
it references.
|
||||
|
||||
5. If there are no explicit include rules then a type that doesn't
|
||||
match any previous rule is included. Otherwise it is excluded.
|
||||
|
||||
</remark>
|
||||
<param name="winmdPaths">Path(s) to winmd files containing types around which to generate source code.</param>
|
||||
<param name="outputPath">Path to a folder into which to place generated source code. Or `--` to write all generated code to standard out.</param>
|
||||
<param name="outputNamespace">Namespace where generated source code will be placed.</param>
|
||||
<param name="useFullNamespace">If set, wv2winrt will use full namespace names for dispatch adapter source files. Use this option when the output namespace is different to the consuming project's root namespace.</param>
|
||||
<param name="useJavascriptCase">If set, wv2winrt will use javascript casing for projection properties, methods, and events.</param>
|
||||
<param name="explicitIncludesOnly">If set, wv2winrt won't automatically follow references from other included types.</param>
|
||||
<param name="requireAllowForWebAttribute">If set, wv2winrt will only generate wrappers for runtimeclasses with the AllowForWeb attribute. By default, runtimeclasses with or without the AllowForWeb attribute will be included and will have wrapper code generated.</param>
|
||||
<param name="ignoreWebHostHiddenAttribute">If set, wv2winrt will generate wrappers for runtimeclasses with the WebHostHidden attribute. By default, runtimeclasses with the WebHostHidden attribute will be skipped and will not have generated wrapper code.</param>
|
||||
<param name="pch">Optional precompiled header filename of the project consuming the generated source code.</param>
|
||||
<param name="idl">Optional flag to generate only the idl file. Run with this option before MIDL if the consuming project defines its own WinRT types.</param>
|
||||
<param name="include">List of namespaces or runtimeclass names to be included in the generated output.</param>
|
||||
<param name="exclude">List of namespaces or runtimeclass names to be excluded from the generated output.</param>
|
||||
<param name="verbose">If set, generate verbose output including when a namespace or runtimeclass is excluded.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
Reference in New Issue
Block a user