Skip to content

Commit b414984

Browse files
godreiviktorbenei
authored andcommitted
use msbuild for xamarin build commands (#49)
* use msbuild for xamarin build commands * some notes * go deps update * xamarin command revision
1 parent 1ce2eac commit b414984

File tree

116 files changed

+11554
-2213
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+11554
-2213
lines changed

Godeps/Godeps.json

Lines changed: 39 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/xamarin.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,9 @@ func scanXamarinProject(cmd *cobra.Command, args []string) error {
219219
`No acceptable Configuration found (it was empty) in the provided Solution and Project, or none can be used for iOS "Archive for Publishing".`,
220220
)
221221
}
222-
xamarinCmd.ConfigurationName = selectedXamarinConfigurationName
222+
if err := xamarinCmd.SetConfigurationPlatformCombination(selectedXamarinConfigurationName); err != nil {
223+
return printXamarinScanFinishedWithError("Failed to set Configuration Platform combination for the command, error: %s", err)
224+
}
223225

224226
fmt.Println()
225227
fmt.Println()
@@ -237,7 +239,7 @@ func scanXamarinProject(cmd *cobra.Command, args []string) error {
237239
log.Infoln(colorstring.Red(`and make sure that you can "Archive for Publishing" this project from Xamarin!`))
238240
fmt.Println()
239241
log.Infoln("Open the project: ", xamarinCmd.SolutionFilePath)
240-
log.Infoln(`And do "Archive for Publishing", after selecting the Configuration: `, xamarinCmd.ConfigurationName)
242+
log.Infof(`And do "Archive for Publishing", after selecting the Configuration+Platform: %s|%s`, xamarinCmd.Configuration, xamarinCmd.Platform)
241243
fmt.Println()
242244
}
243245
}

vendor/github.com/Sirupsen/logrus/.travis.yml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Sirupsen/logrus/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Sirupsen/logrus/README.md

Lines changed: 18 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Sirupsen/logrus/appveyor.yml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Sirupsen/logrus/entry.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Sirupsen/logrus/exported.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Sirupsen/logrus/formatter.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Sirupsen/logrus/json_formatter.go

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)