Skip to content

Commit

Permalink
feat: Add Windows.Services.Store.StoreContract to Sync Generator
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinZikmund committed Jul 4, 2023
1 parent dd37d25 commit 400eae5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Uno.UWPSyncGenerator/Generator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ where fileNameWithoutExtension.StartsWith("Windows.Foundation", StringComparison
|| fileNameWithoutExtension.StartsWith("Windows.Phone.PhoneContract", StringComparison.Ordinal)
|| fileNameWithoutExtension.StartsWith("Windows.Networking.Connectivity.WwanContract", StringComparison.Ordinal)
|| fileNameWithoutExtension.StartsWith("Windows.ApplicationModel.Calls.CallsPhoneContract", StringComparison.Ordinal)
|| fileNameWithoutExtension.StartsWith("Windows.Services.Store.StoreContract", StringComparison.Ordinal)
|| fileNameWithoutExtension.StartsWith("Windows.UI.Xaml.Hosting.HostingContract", StringComparison.Ordinal)
|| fileNameWithoutExtension.StartsWith("Microsoft.Web.WebView2.Core", StringComparison.Ordinal)
let asm = s_referenceCompilation.GetAssemblyOrModuleSymbol(externalRedfs) as IAssemblySymbol
Expand Down
1 change: 1 addition & 0 deletions src/Uno.UWPSyncGenerator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ static async Task Main(string[] args)
await new SyncGenerator().Build(@"..\..\..\Uno.UWP", "Uno", "Windows.Phone.PhoneContract");
await new SyncGenerator().Build(@"..\..\..\Uno.UWP", "Uno", "Windows.Networking.Connectivity.WwanContract");
await new SyncGenerator().Build(@"..\..\..\Uno.UWP", "Uno", "Windows.ApplicationModel.Calls.CallsPhoneContract");
await new SyncGenerator().Build(@"..\..\..\Uno.UWP", "Uno", "Windows.Services.Store.StoreContract");

// When adding support for a new WinRT contract here, ensure to add it to the list of origins in Generator.cs
// and to the list of supported contracts in ApiInformation.shared.cs
Expand Down

0 comments on commit 400eae5

Please sign in to comment.