We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21c09bd commit f8437c1Copy full SHA for f8437c1
src/PostSharp.Engineering.BuildTools/Build/Model/Product.cs
@@ -1392,13 +1392,10 @@ private bool TryComputeVersion(
1392
1393
private static bool TryGenerateNuGetConfig( BuildContext context, DependenciesOverrideFile dependenciesOverrideFile, BuildSettings buildSettings )
1394
{
1395
- if ( dependenciesOverrideFile.Dependencies.Values.Any( d => d.VersionFile == null ) )
+ // Fetch to resolve the VersionFile properties.
1396
+ if ( !dependenciesOverrideFile.Fetch( context ) )
1397
- // Fetch to resolve the VersionFile properties.
1398
- if ( !dependenciesOverrideFile.Fetch( context ) )
1399
- {
1400
- return false;
1401
- }
+ return false;
1402
}
1403
1404
var product = context.Product;
0 commit comments