You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<BaseOutputPath>123</BaseOutputPath>
<OutputPath>123</OutputPath>
</PropertyGroup>
</Project>
var projectInfo = context.ParseProject(project.Path, "Debug");
projectInfo.OutputPaths[0] // this returns e.g. C:/xyz/src/xyz/bin/Debug/net472'
// Neither setting is working
// If adding the condition it is working as expected
<Project Sdk="Microsoft.NET.Sdk" >
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<BaseOutputPath>123</BaseOutputPath>
<OutputPath>123</OutputPath>
</PropertyGroup>
</Project>
var projectInfo = context.ParseProject(project.Path, "Debug");
projectInfo.OutputPaths[0] // this returns e.g. C:/xyz/src/xyz/123/Debug/net472'
Expected Behavior
Return C:/xyz/src/xyz/123/Debug/net472
Imho also settings which were done without this Condition should work, and imho this would be the correct behavior
Use general setting without condition
Overwrite with setting with the condition
Current Behavior
Return C:/xyz/src/xyz/bin/Debug/net472
Additional Information
Cake.Inbubator 8.0.0
The text was updated successfully, but these errors were encountered:
// If adding the condition it is working as expected
Expected Behavior
Return
C:/xyz/src/xyz/123/Debug/net472
Imho also settings which were done without this Condition should work, and imho this would be the correct behavior
Current Behavior
Return
C:/xyz/src/xyz/bin/Debug/net472
Additional Information
The text was updated successfully, but these errors were encountered: