Skip to content

Commit 2d7c1ff

Browse files
committed
update pacakge properties
1 parent 10077ec commit 2d7c1ff

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

src/BlazorWebView.WinUI/BlazorWebView.WinUI.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,12 @@
77
<UseWinUI>true</UseWinUI>
88
<Nullable>enable</Nullable>
99
<IncludeSymbols>true</IncludeSymbols>
10-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
10+
<DebugType>portable</DebugType>
1111
<EmbedUntrackedSources>true</EmbedUntrackedSources>
12+
<GenerateLibraryLayout>true</GenerateLibraryLayout>
13+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
14+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
15+
<AllowedOutputExtensionsInPackageBuildOutputFolder>.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
1216
</PropertyGroup>
1317

1418
<PropertyGroup>

src/BlazorWebView.WinUI/BlazorWebView.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,10 @@ private void StartWebViewCoreIfPossible()
224224
_webviewManager.Navigate(StartPath);
225225
}
226226

227+
/// <summary>
228+
/// Navigates to the specified URI.
229+
/// </summary>
230+
/// <param name="path">The URI to navigate to.</param>
227231
public void Navigate(string path)
228232
{
229233
_webviewManager?.Navigate(path);

src/BlazorWebView.WinUI/BlazorWebViewInitializingEventArgs.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using Microsoft.Web.WebView2.Core;
3+
using WebView2Control = Microsoft.UI.Xaml.Controls.WebView2;
34

45
namespace Microsoft.AspNetCore.Components.WebView;
56

0 commit comments

Comments
 (0)