Skip to content

Commit

Permalink
Fix pdb not moving issue
Browse files Browse the repository at this point in the history
Fix #57
  • Loading branch information
liesauer committed Sep 23, 2023
1 parent 529b2f3 commit ab38bfc
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 13 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.3</Version>
<Version>2.1.3.4</Version>

<Company>nulastudio</Company>
<Authors>LiesAuer</Authors>
Expand Down
6 changes: 4 additions & 2 deletions NetBeauty/src/main/beauty.go
Original file line number Diff line number Diff line change
Expand Up @@ -633,9 +633,11 @@ func moveDeps(deps []manager.Deps, entry string, sharedRuntimeMode bool) (int, i
fmt.Println(err.Error())
}

fileNameNoExt := fileName[:len(fileName)-len(filepath.Ext(fileName))]

for _, extFile := range []string{".pdb", ".xml"} {
oldFile := filepath.Join(oldPath, fileName+extFile)
newFile := filepath.Join(newPath, fileName+extFile)
oldFile := filepath.Join(oldPath, fileNameNoExt+extFile)
newFile := filepath.Join(newPath, fileNameNoExt+extFile)
if util.PathExists(oldFile) {
os.Rename(oldFile, newFile)
}
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.
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.3" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.4" />
</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.3" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.4" />
</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.3" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.4" />
<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.3" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.4" />
</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.3" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.4" />
</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.3" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.4" />
<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.3" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.4" />
</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.3" />
<PackageReference Include="nulastudio.NetBeauty" Version="2.1.3.4" />
</ItemGroup>

</Project>
Expand Down

0 comments on commit ab38bfc

Please sign in to comment.