Skip to content

Commit

Permalink
Fix global tool broken invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
liesauer committed May 22, 2023
1 parent e034f76 commit 529b2f3
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Common/Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PackageOutputPath>.nupkg</PackageOutputPath>
<Version>2.1.3.2</Version>
<Version>2.1.3.3</Version>

<Company>nulastudio</Company>
<Authors>LiesAuer</Authors>
Expand Down
4 changes: 2 additions & 2 deletions NetBeauty/src/main/bindata.go

Large diffs are not rendered by default.

Binary file modified NetBeauty/src/nbloader/nbloader.dll
Binary file not shown.
8 changes: 4 additions & 4 deletions NetBeautyGlobalTool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ namespace NetCoreBeautyGlobalTool
class Program
{
private static readonly Dictionary<string, string> platform = new Dictionary<string, string> {
["win-x86"] = "/nbeauty/win-x86/nbeauty2.exe",
["win-x64"] = "/nbeauty/win-x64/nbeauty2.exe",
["linux-x64"] = "/nbeauty/linux-x64/nbeauty2",
["osx-x64"] = "/nbeauty/osx-x64/nbeauty2",
["win-x86"] = "/nbeauty2/win-x86/nbeauty2.exe",
["win-x64"] = "/nbeauty2/win-x64/nbeauty2.exe",
["linux-x64"] = "/nbeauty2/linux-x64/nbeauty2",
["osx-x64"] = "/nbeauty2/osx-x64/nbeauty2",
};

static void Main(string[] args)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.2" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.3" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion NetBeautyTest/ChromelyTest/ChromelyTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.2" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.3" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion NetBeautyTest/NetFxTest/NetFxTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.2" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.3" />
<PackageReference Include="SixLabors.ImageSharp">
<Version>2.1.3</Version>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion NetBeautyTest/SharedRuntimeTest/WsClient/WsClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<ItemGroup>
<PackageReference Include="WatsonWebsocket" Version="2.3.2.5" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.2" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.3" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion NetBeautyTest/SharedRuntimeTest/WsServer/WsServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<ItemGroup>
<PackageReference Include="WatsonWebsocket" Version="2.3.2.5" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.2" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.3" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion NetBeautyTest/WPFTest/WPFTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.2" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.3" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion NetBeautyTest/WebAppTest/WebAppTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.2" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.3" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Your `*.csproj` should be like:
</PropertyGroup>

<ItemGroup>
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.2" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.3" />
</ItemGroup>

</Project>
Expand Down

0 comments on commit 529b2f3

Please sign in to comment.