Fix calendar server startup.

This commit is contained in:
Burak Kaan Köse
2025-05-03 20:21:06 +02:00
parent 137b3dc2ea
commit 69bfe5b750

View File

@@ -4,6 +4,8 @@
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap mp"> IgnorableNamespaces="uap mp">
<Identity <Identity
@@ -27,13 +29,14 @@
<Resource Language="x-generate"/> <Resource Language="x-generate"/>
</Resources> </Resources>
<Extensions> <!-- Publisher cache folder -->
<Extension Category="windows.publisherCacheFolders"> <Extensions>
<PublisherCacheFolders> <Extension Category="windows.publisherCacheFolders">
<Folder Name="WinoShared" /> <PublisherCacheFolders>
</PublisherCacheFolders> <Folder Name="WinoShared" />
</Extension> </PublisherCacheFolders>
</Extensions> </Extension>
</Extensions>
<Applications> <Applications>
<Application Id="App" <Application Id="App"
@@ -48,10 +51,25 @@
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square71x71Logo="Assets\SmallTile.png" Square310x310Logo="Assets\LargeTile.png"/> <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square71x71Logo="Assets\SmallTile.png" Square310x310Logo="Assets\LargeTile.png"/>
<uap:SplashScreen Image="Assets\SplashScreen.png" /> <uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements> </uap:VisualElements>
<Extensions>
<!-- App Service-->
<uap:Extension Category="windows.appService">
<uap:AppService Name="WinoInteropService"/>
</uap:Extension>
<!-- Full trust process -->
<desktop:Extension Category="windows.fullTrustProcess" Executable="Wino.Server\Wino.Server.exe">
<desktop:FullTrustProcess>
<desktop:ParameterGroup GroupId="WinoServer" Parameters="Calendar" />
</desktop:FullTrustProcess>
</desktop:Extension>
</Extensions>
</Application> </Application>
</Applications> </Applications>
<Capabilities> <Capabilities>
<Capability Name="internetClient" /> <Capability Name="internetClient" />
<rescap:Capability Name="runFullTrust" />
</Capabilities> </Capabilities>
</Package> </Package>