How do I use Travis-CI with C# or F#(如何将 Travis-CI 与 C# 或 F# 一起使用)
问题描述
Travis CI 持续集成服务官方支持多种语言,但是不是 C# 或 F#.
我可以在我的 .net 项目中使用它吗?
Travis CI 现在 支持C#.从该页面大量引用:
<块引用>概述
C#、F# 和 Visual Basic 项目的设置如下所示:
语言:csharp解决方案:解决方案名称.sln单核细胞增多症:- 最新的- 3.12.0- 3.10.0
<块引用>
脚本
默认情况下,Travis 将运行 xbuild solution-name.sln.Xbuild 是一个构建工具,旨在实现 Microsoft 的 MSBuild 工具.要覆盖它,您可以像这样设置脚本属性:
语言:csharp解决方案:解决方案名称.sln脚本:./build.sh
<块引用>
NuGet
默认情况下,Travis 将运行 nuget restore solution-name.sln,它会从您的解决方案文件中恢复所有 NuGet 包.要覆盖它,您可以像这样设置安装属性:
语言:csharp解决方案:解决方案名称.sln安装:- 须藤做某事- nuget 恢复解决方案名称.sln
Travis CI continuous integration service officially supports many languages, but not C# or F#.
Can I use it with my .net projects?
Travis CI now supports C#. Quoting liberally from that page:
Overview
The setup for C#, F#, and Visual Basic projects looks like this:
language: csharp
solution: solution-name.sln
mono:
- latest
- 3.12.0
- 3.10.0
Script
By default Travis will run xbuild solution-name.sln. Xbuild is a build tool designed to be an implementation for Microsoft's MSBuild tool. To override this, you can set the script attribute like this:
language: csharp
solution: solution-name.sln
script: ./build.sh
NuGet
By default, Travis will run nuget restore solution-name.sln, which restores all NuGet packages from your solution file. To override this, you can set the install attribute like this:
language: csharp
solution: solution-name.sln
install:
- sudo dosomething
- nuget restore solution-name.sln
这篇关于如何将 Travis-CI 与 C# 或 F# 一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 Travis-CI 与 C# 或 F# 一起使用
基础教程推荐
- 将 XML 转换为通用列表 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01