microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
cleanup/test-consolelogs

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

dotnet/agentLauncher/src/Package.appxmanifest

77lines · modecode

1<?xml version="1.0" encoding="utf-8"?>
2<Package
3 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
4 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
5 xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
6 xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
7 xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
8 IgnorableNamespaces="uap uap3 desktop rescap">
9
10 <Identity
11 Name="TypeAgent.AgentLauncher"
12 Publisher="CN=TypeAgent"
13 Version="1.0.0.0" />
14
15 <Properties>
16 <DisplayName>TypeAgent Launcher</DisplayName>
17 <PublisherDisplayName>TypeAgent</PublisherDisplayName>
18 <Logo>Assets\StoreLogo.png</Logo>
19 </Properties>
20
21 <Dependencies>
22 <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.26100.0" MaxVersionTested="10.0.26100.0" />
23 <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.26100.0" MaxVersionTested="10.0.26100.0" />
24 </Dependencies>
25
26 <Resources>
27 <Resource Language="x-generate"/>
28 </Resources>
29
30 <Applications>
31 <Application Id="App"
32 Executable="$targetnametoken$.exe"
33 EntryPoint="$targetentrypoint$">
34 <uap:VisualElements
35 DisplayName="TypeAgent Launcher"
36 Description="TypeAgent launcher for processing prompts"
37 BackgroundColor="transparent"
38 Square150x150Logo="Assets\Square150x150Logo.png"
39 Square44x44Logo="Assets\Square44x44Logo.png">
40 <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" />
41 <uap:SplashScreen Image="Assets\SplashScreen.png" />
42 </uap:VisualElements>
43 <Extensions>
44 <uap:Extension Category="windows.protocol">
45 <uap:Protocol Name="typeagent-launcher">
46 <uap:DisplayName>TypeAgent Launcher Protocol</uap:DisplayName>
47 </uap:Protocol>
48 </uap:Extension>
49 <uap3:Extension Category="windows.appExtension">
50 <uap3:AppExtension Name="com.microsoft.windows.ai.actions"
51 DisplayName="TypeAgent Action Provider"
52 Id="typeagent-actions"
53 PublicFolder="Assets">
54 <uap3:Properties>
55 <Registration>registration.json</Registration>
56 </uap3:Properties>
57 </uap3:AppExtension>
58 </uap3:Extension>
59 <uap3:Extension Category="windows.appExtension">
60 <uap3:AppExtension Name="com.microsoft.windows.ai.appAgent"
61 DisplayName="TypeAgent"
62 Id="typeagent"
63 PublicFolder="Assets">
64 <uap3:Properties>
65 <Registration>agent-definition.json</Registration>
66 </uap3:Properties>
67 </uap3:AppExtension>
68 </uap3:Extension>
69 </Extensions>
70 </Application>
71 </Applications>
72
73 <Capabilities>
74 <Capability Name="internetClient" />
75 <rescap:Capability Name="runFullTrust" />
76 </Capabilities>
77</Package>
78