Skip to content

Commit ac00a84

Browse files
authored
remove MSOWNERS (#222)
1 parent 8619209 commit ac00a84

22 files changed

+581
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
bin/
2+
.vs/
3+
obj/
4+
FixedRuntime/
5+
# Created by running event monitor
6+
enc_temp_folder/
7+
packages/
8+
9+
# Override root .gitignore to ensure we pick up changes for the sample app
10+
!*.sln
11+
!*.csproj
12+
13+
# Make sure script debug config is checked in for vendor testing
14+
!.vscode
15+
432 Bytes
Loading
5.25 KB
Loading
1.71 KB
Loading
637 Bytes
Loading
Loading
456 Bytes
Loading
2.05 KB
Loading
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<Package
4+
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
5+
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
6+
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
7+
IgnorableNamespaces="uap rescap">
8+
9+
<Identity
10+
Name="a6e38587-f17a-4a2e-8022-248694f372b3"
11+
Publisher="CN=Microsoft"
12+
Version="1.0.0.0" />
13+
14+
<Properties>
15+
<DisplayName>WebView2_WinUI3_Sample (Package)</DisplayName>
16+
<PublisherDisplayName>Microsoft</PublisherDisplayName>
17+
<Logo>Images\StoreLogo.png</Logo>
18+
</Properties>
19+
20+
<Dependencies>
21+
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
22+
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
23+
</Dependencies>
24+
25+
<Resources>
26+
<Resource Language="x-generate"/>
27+
</Resources>
28+
29+
<Applications>
30+
<Application Id="App"
31+
Executable="$targetnametoken$.exe"
32+
EntryPoint="$targetentrypoint$">
33+
<uap:VisualElements
34+
DisplayName="WebView2_WinUI3_Sample (Package)"
35+
Description="WebView2_WinUI3_Sample (Package)"
36+
BackgroundColor="transparent"
37+
Square150x150Logo="Images\Square150x150Logo.png"
38+
Square44x44Logo="Images\Square44x44Logo.png">
39+
<uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
40+
<uap:SplashScreen Image="Images\SplashScreen.png" />
41+
</uap:VisualElements>
42+
</Application>
43+
</Applications>
44+
45+
<Capabilities>
46+
<rescap:Capability Name="runFullTrust" />
47+
</Capabilities>
48+
</Package>

0 commit comments

Comments
 (0)