Skip to content

Commit

Permalink
修复发布目录获取不对的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
liesauer committed Dec 5, 2019
1 parent e3e7645 commit bd6be91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion NetCoreBeautyGlobalTool/NetCoreBeautyGlobalTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ToolCommandName>ncbeauty</ToolCommandName>
<PackageOutputPath>.nupkg</PackageOutputPath>

<Version>1.1.4</Version>
<Version>1.1.5</Version>

<Authors>LiesAuer</Authors>
<Description>Move a .NET Core app runtime components and dependencies into a sub-directory and make it beauty.</Description>
Expand Down
4 changes: 1 addition & 3 deletions NetCoreBeautyNuget/Beauty.targets
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
<RuntimeOS Condition="$(IsOSX) == 'True'">osx-x64</RuntimeOS>
<BeautyBinExt Condition="$(IsWindows) == 'True'">.exe</BeautyBinExt>
<BeautyBin>"$(MSBuildThisFileDirectory)../tools/$(RuntimeOS)/ncbeauty$(BeautyBinExt)"</BeautyBin>
<RootDir>$([System.IO.Directory]::GetParent('$(MSBuildProjectDirectory)').FullName)</RootDir>
<RelatedDir>$(PublishDir.Replace('$(RootDir)','.'))</RelatedDir>
<BeautyDir>"$(RootDir)/$(RelatedDir).HERE/.."</BeautyDir>
<BeautyDir>"$([System.IO.Path]::GetFullPath('$(PublishDir)')).HERE/.."</BeautyDir>
<BeautyLibsDir Condition="$(BeautyLibsDir) == ''">runtimes</BeautyLibsDir>
<BeautyAfterTasks>Publish;$(BeautyAfterTasks)</BeautyAfterTasks>
<GitCDN Condition="$(GitCDN) != ''">--gitcdn $(GitCDN)</GitCDN>
Expand Down
2 changes: 1 addition & 1 deletion NetCoreBeautyNuget/NetCoreBeauty.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>nulastudio.NetCoreBeauty</id>
<description>Move a .NET Core app runtime components and dependencies into a sub-directory and make it beauty.</description>
<version>1.1.4</version>
<version>1.1.5</version>
<authors>LiesAuer</authors>
<owners>nulastudio</owners>
<projectUrl>https://github.com/nulastudio/NetCoreBeauty</projectUrl>
Expand Down

0 comments on commit bd6be91

Please sign in to comment.