-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added solutioninfo.cs file - Cleaned up build script - Automated release process - Set shallow clone to false for appveyor inorder to gitversion to work.
- Loading branch information
Showing
26 changed files
with
226 additions
and
183 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
language: csharp | ||
sudo: false | ||
|
||
git: | ||
depth: 1000000 | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
branches: | ||
only: | ||
- master | ||
- develop | ||
- /^testing.*/ | ||
- /^travis.*/ | ||
|
||
script: | ||
- ./build.sh | ||
- ./build.sh --target TravisCI --configuration Debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
using System.Reflection; | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Cake. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
using System.Reflection; | ||
using System.Runtime.InteropServices; | ||
|
||
[assembly: AssemblyProduct("Cake.Paket")] | ||
[assembly: AssemblyVersion("1.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0")] | ||
[assembly: AssemblyCopyright("Copyright (c) 2016 Larz White")] | ||
[assembly: AssemblyVersion("1.1.0.0")] | ||
[assembly: AssemblyFileVersion("1.1.0.0")] | ||
[assembly: AssemblyCopyright("Copyright (c) 2017 Larz White")] | ||
[assembly: ComVisible(false)] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.