Skip to content

Commit

Permalink
Finish task and publish 0.7.2.0 version
Browse files Browse the repository at this point in the history
Finish task and publish 0.7.2.0 version
  • Loading branch information
Gaoyifei1011 committed Nov 30, 2022
1 parent 5066a1d commit 5e99d40
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
6 changes: 3 additions & 3 deletions GetStoreApp/GetStoreApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<Platforms>x86;x64</Platforms>
<RuntimeIdentifiers>win10-x86;win10-x64</RuntimeIdentifiers>
<PublishProfile>Properties\PublishProfiles\win10-$(Platform).pubxml</PublishProfile>
<Version>0.7.0.0</Version>
<FileVersion>0.7.0.0</FileVersion>
<Version>0.7.2.0</Version>
<FileVersion>0.7.2.0</FileVersion>
<Copyright>高怡飞</Copyright>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<IncludeSymbols>False</IncludeSymbols>
Expand All @@ -22,7 +22,7 @@
<GenerateTestArtifacts>True</GenerateTestArtifacts>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<ApplicationManifest>app.manifest</ApplicationManifest>
<PackageIcon>GetStoreApp.png</PackageIcon>
<PackageIcon>GetStoreApp.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
Expand Down
1 change: 1 addition & 0 deletions GetStoreApp/Properties/PublishProfiles/win10-x64.pubxml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>partial</TrimMode>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun>
<PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun>
</PropertyGroup>
Expand Down
1 change: 1 addition & 0 deletions GetStoreApp/Properties/PublishProfiles/win10-x86.pubxml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>partial</TrimMode>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun>
<PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using System.IO;
using System.Runtime.InteropServices;
using Windows.Storage;
using Windows.System;

namespace GetStoreApp.ViewModels.Controls.Settings.Experiment
{
Expand Down Expand Up @@ -41,7 +42,7 @@ public sealed class OpenConfigFileViewModel
if (Directory.Exists(FileFolderPath))
{
await Windows.System.Launcher.LaunchFolderAsync(await StorageFolder.GetFolderFromPathAsync(FileFolderPath));
await Launcher.LaunchFolderAsync(await StorageFolder.GetFolderFromPathAsync(FileFolderPath));
}
else
{
Expand Down
4 changes: 2 additions & 2 deletions GetStoreAppConsole/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.7.0.0")]
[assembly: AssemblyFileVersion("0.7.0.0")]
[assembly: AssemblyVersion("0.7.2.0")]
[assembly: AssemblyFileVersion("0.7.2.0")]
8 changes: 4 additions & 4 deletions GetStoreAppPackage/GetStoreAppPackage.wapproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@
<UserSecretsId>ff1007a3-37e5-4856-a3d5-765555830f81</UserSecretsId>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<AppxBundle>Never</AppxBundle>
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<AppxBundle>Never</AppxBundle>
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<AppxBundle>Never</AppxBundle>
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<AppxBundle>Never</AppxBundle>
<AppxBundle>Always</AppxBundle>
</PropertyGroup>
<PropertyGroup Condition="'$(WinUISDKReferences)'=='' and '$(TargetPlatformIdentifier)'=='UAP'">
<WinUISDKReferences>false</WinUISDKReferences>
Expand Down
2 changes: 1 addition & 1 deletion GetStoreAppPackage/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Identity
Name="Gaoyifei1011.GetStoreApp"
Publisher="CN=高怡飞"
Version="0.7.0.3" />
Version="0.7.2.0" />

<Properties>
<DisplayName>ms-resource:PackageDisplayName</DisplayName>
Expand Down

0 comments on commit 5e99d40

Please sign in to comment.