Skip to content

Commit a0438fb

Browse files
committed
Fixed package patterns.
1 parent f3f72b2 commit a0438fb

File tree

3 files changed

+30
-21
lines changed

3 files changed

+30
-21
lines changed

src/PostSharp.Engineering.BuildTools/Dependencies/Definitions/MetalamaDependencies.V2025_1.cs

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,25 @@ public MetalamaDependencyDefinition(
8585
VcsProvider.GitHub,
8686
MetalamaGitHubOrganization.Metalama )
8787
{
88-
// SuppressUpstream = true
88+
PackagePatterns =
89+
[
90+
"Metalama.Backstage*",
91+
"Metalama.Framework*",
92+
"Metalama.Extensions.*",
93+
"Metalama.Patterns.*",
94+
"Metalama.LinqPad",
95+
"Metalama.Migration",
96+
"Metalama.Testing.*",
97+
"Metalama.Tool",
98+
"Flashtrace*"
99+
]
89100
};
90101

91102
public static DependencyDefinition MetalamaPremium { get; } =
92103
new MetalamaDependencyDefinition(
93104
"Metalama.Premium",
94105
VcsProvider.GitHub,
95-
MetalamaGitHubOrganization.Metalama )
96-
{
97-
// SuppressUpstream = true
98-
};
106+
MetalamaGitHubOrganization.Metalama ) { PackagePatterns = ["Metalama.Patterns.*"] };
99107

100108
public static DependencyDefinition MetalamaVsx { get; } =
101109
new MetalamaDependencyDefinition(

src/PostSharp.Engineering.BuildTools/Dependencies/Definitions/MetalamaDependencies.V2025_2.cs

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ public MetalamaDependencyDefinition(
5555

5656
public static ProductFamily Family { get; } = new( _projectName, "2025.2", DevelopmentDependencies.Family, PostSharpDependencies.V2025_1.Family )
5757
{
58-
UpstreamProductFamily = V2025_1.Family,
59-
DownstreamProductFamily = V2026_0.Family
58+
UpstreamProductFamily = V2025_1.Family, DownstreamProductFamily = V2026_0.Family
6059
};
6160

6261
public static DependencyDefinition Consolidated { get; } =
@@ -85,17 +84,25 @@ public MetalamaDependencyDefinition(
8584
VcsProvider.GitHub,
8685
MetalamaGitHubOrganization.Metalama )
8786
{
88-
// SuppressUpstream = true
87+
PackagePatterns =
88+
[
89+
"Metalama.Backstage*",
90+
"Metalama.Framework*",
91+
"Metalama.Extensions*",
92+
"Metalama.Patterns*",
93+
"Metalama.LinqPad*",
94+
"Metalama.Migration*",
95+
"Metalama.Testing.*",
96+
"Metalama.Tool",
97+
"Flashtrace*"
98+
]
8999
};
90100

91101
public static DependencyDefinition MetalamaPremium { get; } =
92102
new MetalamaDependencyDefinition(
93103
"Metalama.Premium",
94104
VcsProvider.GitHub,
95-
MetalamaGitHubOrganization.Metalama )
96-
{
97-
// SuppressUpstream = true
98-
};
105+
MetalamaGitHubOrganization.Metalama ) { PackagePatterns = ["Metalama.Patterns.*"] };
99106

100107
public static DependencyDefinition MetalamaVsx { get; } =
101108
new MetalamaDependencyDefinition(

src/PostSharp.Engineering.BuildTools/Dependencies/Definitions/MetalamaDependencies.V2026_0.cs

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,22 +95,16 @@ public MetalamaDependencyDefinition(
9595
"Metalama.LinqPad*",
9696
"Metalama.Migration*",
9797
"Metalama.Testing.*",
98-
"Metalama.Tool"
98+
"Metalama.Tool",
99+
"Flashtrace*"
99100
]
100-
101-
// SuppressUpstream = true
102101
};
103102

104103
public static DependencyDefinition MetalamaPremium { get; } =
105104
new MetalamaDependencyDefinition(
106105
"Metalama.Premium",
107106
VcsProvider.GitHub,
108-
MetalamaGitHubOrganization.Metalama )
109-
{
110-
PackagePatterns = ["Metalama.Patterns.*"]
111-
112-
// SuppressUpstream = true
113-
};
107+
MetalamaGitHubOrganization.Metalama ) { PackagePatterns = ["Metalama.Patterns.*"] };
114108

115109
public static DependencyDefinition MetalamaVsx { get; } =
116110
new MetalamaDependencyDefinition(

0 commit comments

Comments
 (0)