1 Star 0 Fork 0

builderman/serilog-sinks-console

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 390 Bytes
一键复制 编辑 原始数据 按行查看 历史
Simon Cropp 提交于 6年前 . simplify build
#!/bin/bash
set -e
dotnet --info
dotnet restore
for path in src/**/*.csproj; do
dotnet build -f netstandard2.0 -c Release ${path}
done
for path in test/*.Tests/*.csproj; do
dotnet test -f netcoreapp2.2 -c Release ${path}
done
for path in sample/ConsoleDemo/*.csproj; do
dotnet build -f netcoreapp2.2 -c Release ${path}
dotnet run -f netcoreapp2.2 --project ${path}
done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/builderman/serilog-sinks-console.git
git@gitee.com:builderman/serilog-sinks-console.git
builderman
serilog-sinks-console
serilog-sinks-console
dev

搜索帮助