Build-Fixes, string.ParseDecimal
This commit is contained in:
25
build.sh
25
build.sh
@@ -1,29 +1,30 @@
|
||||
#!/bin/bash
|
||||
|
||||
CONFIGURATION=Release
|
||||
|
||||
cd "$(dirname "${0}")"
|
||||
rm -rf artifacts
|
||||
mkdir artifacts
|
||||
|
||||
dotnet restore -v q
|
||||
# dotnet tool restore -v q
|
||||
|
||||
pushd AMWD.Common
|
||||
rm -rf bin
|
||||
dotnet build -c ${CONFIGURATION} --nologo --no-incremental
|
||||
mv bin/${CONFIGURATION}/*.nupkg ../artifacts
|
||||
mv bin/${CONFIGURATION}/*.snupkg ../artifacts
|
||||
popd
|
||||
|
||||
pushd AMWD.Common.AspNetCore
|
||||
rm -rf bin
|
||||
dotnet build -c ${CONFIGURATION} --nologo --no-incremental
|
||||
mv bin/${CONFIGURATION}/*.nupkg ../artifacts
|
||||
mv bin/${CONFIGURATION}/*.snupkg ../artifacts
|
||||
popd
|
||||
|
||||
pushd AMWD.Common.EntityFrameworkCore
|
||||
rm -rf bin
|
||||
dotnet build -c ${CONFIGURATION} --nologo --no-incremental
|
||||
mv bin/${CONFIGURATION}/*.nupkg ../artifacts
|
||||
mv bin/${CONFIGURATION}/*.snupkg ../artifacts
|
||||
popd
|
||||
|
||||
rm -rf build
|
||||
mkdir build
|
||||
mv AMWD.Common/bin/${CONFIGURATION}/*.nupkg build
|
||||
mv AMWD.Common/bin/${CONFIGURATION}/*.snupkg build
|
||||
|
||||
mv AMWD.Common.AspNetCore/bin/${CONFIGURATION}/*.nupkg build
|
||||
mv AMWD.Common.AspNetCore/bin/${CONFIGURATION}/*.snupkg build
|
||||
|
||||
mv AMWD.Common.EntityFrameworkCore/bin/${CONFIGURATION}/*.nupkg build
|
||||
mv AMWD.Common.EntityFrameworkCore/bin/${CONFIGURATION}/*.snupkg build
|
||||
|
||||
Reference in New Issue
Block a user