meebey / SmartIrc4net

IRC C# Library
http://www.meebey.net/projects/smartirc4net/
Other
127 stars 52 forks source link

.NET 4.5 Support for Travis CI #47

Closed gmt2001 closed 8 years ago

gmt2001 commented 8 years ago

This branch updates the .travis.yml file to use the direct C# language support in Travis CI, which provides support for .NET 4.5 through Mono version 3.8.0 and later

gmt2001 commented 8 years ago

Note that the HintPath will have to be fixed with this as the current one will fail to resolve.

The correct HintPath will likely be $(SolutionDir)/packages/...

meebey commented 8 years ago

Does the new platform allow to still run commands? make distcheck is testing if the make based build still works...

meebey commented 8 years ago

@gmt2001 after reading https://docs.travis-ci.com/user/languages/csharp/#Script it seems like the script: block can stay and it should build both ways.

gmt2001 commented 8 years ago

I got autotools added back in and corrected the HintPath

meebey commented 8 years ago

Merged with some small changes in 58aa5fe

Thanks for your contribution!