Skip to content

Commit

Permalink
proj util
Browse files Browse the repository at this point in the history
  • Loading branch information
AigioL committed Apr 23, 2021
1 parent 3b0d3e0 commit 36b62b8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions resources/ProjectPathUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,20 @@ public static partial class ProjectPathUtil

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

public const string ProjectDir_Win7Troubleshoot = "ST.Tools.Win7Troubleshoot";

public const string ProjectDir_CoreLib = "Common.CoreLib";

public const string ProjectDir_ClientDesktop = "ST.Client.Desktop";

public const string DirPublishWinX86 =
@"\" + ProjectDir_AvaloniaApp + @"\bin\Release\Publish\win-x86";
@"\src\" + ProjectDir_AvaloniaApp + @"\bin\Release\Publish\win-x86";

public const string DirPublish =
@"\" + ProjectDir_AvaloniaApp + @"\bin\Release\Publish";
@"\src\" + ProjectDir_AvaloniaApp + @"\bin\Release\Publish";

public const string DirPublish_Win7Troubleshoot =
@"\src\" + ProjectDir_Win7Troubleshoot + @"\bin\Release\Publish\net35";

static ProjectPathUtil()
{
Expand Down
2 changes: 1 addition & 1 deletion src/ST.Tools.Win7Troubleshoot/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
using System.Text;
using System.Threading;

[assembly: AssemblyTitle(ThisAssembly.AssemblyTrademark + " v" + ThisAssembly.Version)]
[assembly: AssemblyTitle(ThisAssembly.AssemblyTrademark)]
namespace System
{
static class Program
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net35\publish\</PublishDir>
<PublishDir>bin\Release\Publish\net35\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
</PropertyGroup>
</Project>

0 comments on commit 36b62b8

Please sign in to comment.