加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
AppXManifest.xml 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
<Identity Name="GanacheUI"
ProcessorArchitecture="x64"
Publisher="CN=""Truffle Blockchain Group, Inc"", O=""Truffle Blockchain Group, Inc"", L=Yakima, S=Washington, C=US"
Version="1.2.3.0" />
<Properties>
<DisplayName>Ganache</DisplayName>
<PublisherDisplayName>Truffle</PublisherDisplayName>
<Description>Personal blockchain for Ethereum development</Description>
<Logo>assets\Square150x150Logo.png</Logo>
</Properties>
<Resources>
<Resource Language="en-us" />
</Resources>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.14316.0" />
</Dependencies>
<Capabilities>
<rescap:Capability Name="runFullTrust"/>
</Capabilities>
<Applications>
<Application Id="Ganache" Executable="app\Ganache.exe" EntryPoint="Windows.FullTrustApplication">
<!-- This was a lifesaver: https://www.npmjs.com/package/svg2uwptiles -->
<uap:VisualElements
DisplayName="Ganache"
Square150x150Logo="assets\Square150x150Logo.png"
Square44x44Logo="assets\Square44x44Logo.png"
Description="Personal Blockchain for Ethereum development"
BackgroundColor="#34262A">
<uap:LockScreen Notification="badgeAndTileText" BadgeLogo="assets\BadgeLogo.png" />
<uap:DefaultTile Wide310x150Logo="assets\Wide310x150Logo.png" Square310x310Logo="assets\LargeTile.png" Square71x71Logo="assets\SmallTile.png"></uap:DefaultTile>
</uap:VisualElements>
</Application>
</Applications>
</Package>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化