-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
WIP: update build #3596
WIP: update build #3596
Conversation
Information($"Running tests from {projectName}"); | ||
var project = Solution.GetProject(projectName).NotNull("project != null"); | ||
|
||
foreach (var fw in project.GetTargetFrameworks()) |
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.
Does it use MSBuild evaluation or parses stuff manually? We've seen issues with MSBuild on not-quite-supported OSes
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.
It uses MSBuild for evaluation. Could you try on those not-quite-supported environments?
nukebuild/_build.csproj
Outdated
@@ -2,15 +2,15 @@ | |||
|
|||
<PropertyGroup> | |||
<OutputType>Exe</OutputType> | |||
<TargetFramework>netcoreapp2.0</TargetFramework> | |||
<TargetFramework>netcoreapp3.0</TargetFramework> |
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.
This TFM was failing for me on several machines with .NET Core SDK 3.1 installed. Could we use netcoreapp3.1
instead?
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.
I guess so, let me try.
@matkoch what's the progress on this? The OSX build seems to be failing because the wrong version of .NET core is being installed? |
No description provided.