Skip to content

Commit

Permalink
fix: fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
Pd233 committed Mar 7, 2024
1 parent 8e5de7a commit 05cb570
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 32 deletions.
28 changes: 1 addition & 27 deletions src/LipUI/LipUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,9 @@
<Nullable>enable</Nullable>
<UseWinUI>true</UseWinUI>
<EnableMsixTooling>true</EnableMsixTooling>
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
<PackageCertificateThumbprint>EECEBA1A034834A8FCA2C7E7B8878D2477C1AC0B</PackageCertificateThumbprint>
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
<GenerateTestArtifacts>True</GenerateTestArtifacts>
<AppxBundle>Auto</AppxBundle>
<AppxBundlePlatforms>x64|arm64</AppxBundlePlatforms>
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
<WindowsPackageType>None</WindowsPackageType>

</PropertyGroup>
<ItemGroup>
<None Remove="BuiltInPlugins\LipPanel\LipPanelPage.xaml" />
<None Remove="Pages\Settings\SettingsAndAboutView.xaml" />
</ItemGroup>

<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Runtime.Loader.UseRidGraph" Value="true" />
Expand All @@ -37,7 +23,7 @@

<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="CommunityToolkit.WinUI.UI.Controls.Markdown" Version="7.1.2" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.231115000" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240227000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.2428" />
<PackageReference Include="Octokit" Version="9.1.0" />
<PackageReference Include="PInvoke.User32" Version="0.7.124" />
Expand All @@ -47,18 +33,6 @@
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<ProjectCapability Include="Msix" />
</ItemGroup>

<ItemGroup>
<Page Update="Pages\Settings\SettingsAndAboutView.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>

<ItemGroup>
<Page Update="BuiltInPlugins\LipPanel\LipPanelPage.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>

<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu>
Expand Down
10 changes: 5 additions & 5 deletions tooth.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "github.com/lippkg/LipUI",
"version": "0.5.0",
"version": "0.5.1",
"info": {
"name": "LipUI",
"description": "A GUI client for lip",
Expand All @@ -14,7 +14,7 @@
{
"goos": "windows",
"goarch": "amd64",
"asset_url": "https://github.com/lippkg/LipUI/releases/download/v0.5.0/LipUI-win-x64.zip",
"asset_url": "https://github.com/lippkg/LipUI/releases/download/v0.5.1/LipUI-win-x64.zip",
"files": {
"place": [
{
Expand All @@ -25,14 +25,14 @@
},
"commands": {
"post-install": [
"CMD.exe /c ./LipUI.exe"
"cmd /c ./LipUI.exe"
]
}
},
{
"goos": "windows",
"goarch": "arm64",
"asset_url": "https://github.com/lippkg/LipUI/releases/download/v0.5.0/LipUI-win-arm64.zip",
"asset_url": "https://github.com/lippkg/LipUI/releases/download/v0.5.1/LipUI-win-arm64.zip",
"files": {
"place": [
{
Expand All @@ -43,7 +43,7 @@
},
"commands": {
"post-install": [
"CMD.exe /c ./LipUI.exe"
"cmd /c ./LipUI.exe"
]
}
}
Expand Down

0 comments on commit 05cb570

Please sign in to comment.