1
0

Refactoring

This commit is contained in:
2021-10-22 21:05:37 +02:00
commit ca9de13c9e
43 changed files with 5145 additions and 0 deletions

29
build.sh Normal file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
CONFIGURATION=Release
pushd AMWD.Common
rm -rf bin
dotnet build -c ${CONFIGURATION} --nologo --no-incremental
popd
pushd AMWD.Common.AspNetCore
rm -rf bin
dotnet build -c ${CONFIGURATION} --nologo --no-incremental
popd
pushd AMWD.Common.EntityFrameworkCore
rm -rf bin
dotnet build -c ${CONFIGURATION} --nologo --no-incremental
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