1 Star 0 Fork 1

denayine/serilog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.sh 463 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
set -e
dotnet --info
dotnet --list-sdks
dotnet restore
echo "🤖 Attempting to build..."
for path in src/**/*.csproj; do
dotnet build -c Release ${path}
done
echo "🤖 Running tests..."
for path in test/*.Tests/*.csproj; do
dotnet test -f netcoreapp2.1 -c Release ${path}
dotnet test -f netcoreapp3.1 -c Release ${path}
done
for path in test/*.PerformanceTests/*.PerformanceTests.csproj; do
dotnet build -c Release ${path}
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/denayine/serilog.git
git@gitee.com:denayine/serilog.git
denayine
serilog
serilog
main

搜索帮助