Skip to content

Commit 088bc42

Browse files
debugging in build.
1 parent fdc7cef commit 088bc42

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

src/server/_config.version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 0.2.0-20250708.155535+61e227c
1+
version: 0.2.0-20250708.200258+fdc7cef

src/server/build.sh

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,45 +22,77 @@ generate_nuget_version
2222

2323
echo "Building Abstractions."
2424
cd abstractions
25+
pwd
2526
cp ../.version .
27+
echo "Root Dir:"
2628
ls -la
2729
dotnet clean
2830
dotnet restore
2931
dotnet build --no-restore --configuration=Release
3032
dotnet publish --no-restore --configuration=Release /p:Version=${TEST_NUGET_VERSION}
3133
dotnet pack --configuration Release /p:Version=${TEST_NUGET_VERSION} --no-build
34+
echo "Release Dir :"
35+
ls -la bin/Release
36+
echo "net8.0 Dir :"
37+
ls -la bin/Release/net8.0
38+
echo "publish Dir :"
39+
ls -la bin/Release/net8.0/publish
3240
cd ..
3341

3442

3543
echo "Building Data."
3644
cd data
45+
pwd
3746
cp ../.version .
47+
echo "Root Dir:"
3848
ls -la
3949
dotnet clean
4050
dotnet restore
4151
dotnet build --no-restore --configuration=Release
4252
dotnet publish --no-restore --no-build --configuration=Release /p:Version=${TEST_NUGET_VERSION}
4353
dotnet pack --configuration Release /p:Version=${TEST_NUGET_VERSION} --no-build
54+
echo "Release Dir :"
55+
ls -la bin/Release
56+
echo "net8.0 Dir :"
57+
ls -la bin/Release/net8.0
58+
echo "publish Dir :"
59+
ls -la bin/Release/net8.0/publish
4460
cd ..
4561

4662
echo "Building Letter."
4763
cd letter
64+
pwd
4865
cp ../.version .
66+
echo "Root Dir:"
4967
ls -la
5068
dotnet clean
5169
dotnet restore
5270
dotnet build --no-restore --configuration=Release
5371
dotnet publish --no-restore --no-build --configuration=Release /p:Version=${TEST_NUGET_VERSION}
5472
dotnet pack --configuration Release /p:Version=${TEST_NUGET_VERSION} --no-build
73+
echo "Release Dir :"
74+
ls -la bin/Release
75+
echo "net8.0 Dir :"
76+
ls -la bin/Release/net8.0
77+
echo "publish Dir :"
78+
ls -la bin/Release/net8.0/publish
5579
cd ..
5680

5781
echo "Building Host."
5882
cd host
83+
pwd
5984
cp ../.version .
85+
echo "Root Dir:"
6086
ls -la
6187
dotnet clean
6288
dotnet restore
6389
dotnet build --no-restore --configuration=Release
6490
dotnet publish --no-restore --no-build --configuration=Release /p:Version=${TEST_NUGET_VERSION}
6591
dotnet pack --configuration Release /p:Version=${TEST_NUGET_VERSION} --no-build
92+
echo "Release Dir :"
93+
ls -la bin/Release
94+
echo "net8.0 Dir :"
95+
ls -la bin/Release/net8.0
96+
echo "publish Dir :"
97+
ls -la bin/Release/net8.0/publish
6698
cd ..

0 commit comments

Comments
 (0)