-
-
Notifications
You must be signed in to change notification settings - Fork 348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build Update #2158
Build Update #2158
Conversation
f18677d
to
f8616fb
Compare
7a0ea44
to
7388bed
Compare
7388bed
to
fbd03eb
Compare
How about changing from xbuild to msbuild to get rid of those warnings? Ah, never mind - asked and answered already under #2048 |
|
||
Task("Release") | ||
.IsDependentOn("Default"); | ||
|
||
Task("Ckan") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to make these task names case-agnostic?
Or maybe they already are, and there's a different issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They already are.
When attempting
And I get the same if I just
|
Getting the same error as @politas |
build.cake
Outdated
@@ -157,6 +165,26 @@ Task("Version") | |||
Information(GetVersion().ToString()); | |||
}); | |||
|
|||
Setup(context => | |||
{ | |||
var argConfiguration = Argument<string>("configuration"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding , "Debug"
after "configuration"
fixes this for me.
Build without explicit |
All seems to work, now. |
General update to the build. Important new feature: The csproj files have been updated to generate the GlobalAssemblyVersionInfo file if it doesn't already exist. This should allow the project to build out-of-the-box in IDEs like Visual Studio without having to go to the command line first.
Other updates:
Release
andDebug
targetsrestore
instead ofinstall
)