1. 首页
  2. 数据库
  3. 其它
  4. action dotnet version detect:检测应安装的dotnet core版本 源码

action dotnet version detect:检测应安装的dotnet core版本 源码

上传者: 2021-04-07 00:10:12上传 ZIP文件 27.32KB 热度 29次
Dotnet核心版本检测器 根据src / global.json确定要安装的dotnet core的版本 如何使用它? 这是一个Github动作,因此必须将其添加到github工作流程中。 一个简单的示例,即在所有对存储库的推送上都执行此操作,是在.github/workflows下添加一个dotnetcore.yml文件,其内容如下: on : [push] jobs : dotnet-build : runs-on : ubuntu-latest name : steps : # Checkout the source code so we have some files to look at. - uses : actions/checkout@v1 # Run the version detection ac
用户评论