Skip to content

Commit

Permalink
fix rename
Browse files Browse the repository at this point in the history
  • Loading branch information
AigioL committed Mar 22, 2021
1 parent a5cca43 commit f6f6afd
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 60 deletions.
6 changes: 3 additions & 3 deletions resources/ProjectPathUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ public static class ProjectPathUtil
{
public static readonly string projPath;

public const string ProjectDir_AvaloniaApp = "System.Application.SteamTools.Client.Desktop.Avalonia.App";
public const string ProjectDir_AvaloniaApp = "ST.Client.Desktop.Avalonia.App";

public const string ProjectDir_CoreLib = "System.Common.CoreLib";
public const string ProjectDir_CoreLib = "Common.CoreLib";

public const string ProjectDir_ClientDesktop = "System.Application.SteamTools.Client.Desktop";
public const string ProjectDir_ClientDesktop = "ST.Client.Desktop";

public const string DirPublishWinX86 =
@"\" + ProjectDir_AvaloniaApp + @"\bin\Release\Publish\win-x86";
Expand Down
110 changes: 55 additions & 55 deletions src/ST/ReleaseType.cs
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
namespace System.Application
{
/// <summary>
/// 发行版本类型
/// <para>枚举常量命名参考:https://dotnet.microsoft.com/download/dotnet/5.0 </para>
/// </summary>
[Flags]
[Obsolete]
public enum ReleaseType
{
/// <summary>
/// Windows 64 bit
/// </summary>
Windows_x64 = 4,
//namespace System.Application
//{
// /// <summary>
// /// 发行版本类型
// /// <para>枚举常量命名参考:https://dotnet.microsoft.com/download/dotnet/5.0 </para>
// /// </summary>
// [Flags]
// [Obsolete]
// public enum ReleaseType
// {
// /// <summary>
// /// Windows 64 bit
// /// </summary>
// Windows_x64 = 4,

/// <summary>
/// Windows 32 bit
/// </summary>
Windows_x86 = 8,
// /// <summary>
// /// Windows 32 bit
// /// </summary>
// Windows_x86 = 8,

/// <summary>
/// Windows平台下当用户不知道是否运行的64位系统时推荐使用此版本(不兼容<see cref="Windows_Arm64"/>),可通过后续更新到 <see cref="Windows_x64"/> 或 <see cref="Windows_x86"/>
/// </summary>
Windows_Any = Windows_x64 | Windows_x86,
// /// <summary>
// /// Windows平台下当用户不知道是否运行的64位系统时推荐使用此版本(不兼容<see cref="Windows_Arm64"/>),可通过后续更新到 <see cref="Windows_x64"/> 或 <see cref="Windows_x86"/>
// /// </summary>
// Windows_Any = Windows_x64 | Windows_x86,

/// <summary>
/// Windows ARM 64 bit
/// <para>例如设备:Surface Pro X</para>
/// </summary>
Windows_Arm64 = 16,
// /// <summary>
// /// Windows ARM 64 bit
// /// <para>例如设备:Surface Pro X</para>
// /// </summary>
// Windows_Arm64 = 16,

/// <summary>
/// 使用 Intel 的 Mac 设备
/// </summary>
macOS_x64 = 32,
// /// <summary>
// /// 使用 Intel 的 Mac 设备
// /// </summary>
// macOS_x64 = 32,

/// <summary>
/// 使用 Apple Silicon 的 Mac 设备
/// </summary>
macOS_Arm64 = 64,
// /// <summary>
// /// 使用 Apple Silicon 的 Mac 设备
// /// </summary>
// macOS_Arm64 = 64,

/// <summary>
/// Linux 64 bit
/// </summary>
Linux_x64 = 128,
// /// <summary>
// /// Linux 64 bit
// /// </summary>
// Linux_x64 = 128,

/// <summary>
/// Apple (iPhone / iPad / iPod touch)
/// </summary>
iOS = 256,
// /// <summary>
// /// Apple (iPhone / iPad / iPod touch)
// /// </summary>
// iOS = 256,

/// <summary>
/// Android arm64-v8a
/// <para>例如高通骁龙808,810等2015年后发布的Soc</para>
/// </summary>
Android_Arm64 = 512,
// /// <summary>
// /// Android arm64-v8a
// /// <para>例如高通骁龙808,810等2015年后发布的Soc</para>
// /// </summary>
// Android_Arm64 = 512,

/// <summary>
/// Android armeabi-v7a
/// <para>安卓平台下当用户不知道是否运行的64位系统时推荐使用此版本,可通过后续更新到 <see cref="Android_Arm64"/></para>
/// </summary>
Android_Arm32 = 1024,
}
}
// /// <summary>
// /// Android armeabi-v7a
// /// <para>安卓平台下当用户不知道是否运行的64位系统时推荐使用此版本,可通过后续更新到 <see cref="Android_Arm64"/></para>
// /// </summary>
// Android_Arm32 = 1024,
// }
//}
4 changes: 2 additions & 2 deletions src/Services.SmsSender/Services.SmsSender.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\SteamTools\System.Common.CoreLib\Properties\AssemblyInfo.cs">
<Compile Include="..\Common.CoreLib\Properties\AssemblyInfo.cs">
<Link>Properties\AssemblyInfo.cs</Link>
</Compile>
</ItemGroup>
Expand All @@ -17,7 +17,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\SteamTools\System.Common.CoreLib\System.Common.CoreLib.csproj" />
<ProjectReference Include="..\Common.CoreLib\Common.CoreLib.csproj" />
</ItemGroup>

</Project>

0 comments on commit f6f6afd

Please sign in to comment.