@@ -56,16 +56,12 @@ public MetalamaDependencyDefinition(
5656
5757 public static ProductFamily Family { get ; } = new ( _projectName , "2025.1" , DevelopmentDependencies . Family , PostSharpDependencies . V2025_1_GitHub . Family )
5858 {
59- DockerBaseImage = DockerImages . WindowsServerCore ,
60-
61- // Upstream is explicitly disabled for because of repo merge.
62- // TODO: Implement SuppressUpstream for DependencyDefinition.
63- // UpstreamProductFamily = V2025_0.Family,
59+ DockerBaseImage = DockerImages . WindowsServerCore , UpstreamProductFamily = V2025_0 . Family
6460
6561 // DownstreamProductFamily = V2025_2.Family
6662 } ;
6763
68- public static DependencyDefinition Consolidated { get ; } =
64+ public static DependencyDefinition Consolidated { get ; } =
6965 new MetalamaDependencyDefinition (
7066 ProductFamily . ConsolidatedProjectName ,
7167 VcsProvider . AzureDevOps ,
@@ -75,17 +71,17 @@ public MetalamaDependencyDefinition(
7571
7672 // The release build is intentionally used for the debug configuration because we want dependencies to consume the release
7773 // build, for performance reasons. The debug build will be used only locally, and for this we don't need a configuration here.
78- public static DependencyDefinition MetalamaCompiler { get ; } =
74+ public static DependencyDefinition MetalamaCompiler { get ; } =
7975 new MetalamaDependencyDefinition (
8076 "Metalama.Compiler" ,
8177 VcsProvider . GitHub ,
8278 MetalamaGitHubOrganization . Metalama )
8379 {
84- EngineeringDirectory = "eng-Metalama" ,
80+ EngineeringDirectory = "eng-Metalama" ,
8581 PrivateArtifactsDirectory = Path . Combine ( "artifacts" , "packages" , "$(MSSBuildConfiguration)" , "Shipping" )
8682 } ;
8783
88- public static DependencyDefinition Metalama { get ; } =
84+ public static DependencyDefinition Metalama { get ; } =
8985 new MetalamaDependencyDefinition (
9086 "Metalama" ,
9187 VcsProvider . GitHub ,
@@ -103,44 +99,38 @@ public MetalamaDependencyDefinition(
10399 // SuppressUpstream = true
104100 } ;
105101
106- public static DependencyDefinition MetalamaVsx { get ; } =
107- new MetalamaDependencyDefinition (
108- "Metalama.Vsx" ,
102+ public static DependencyDefinition MetalamaVsx { get ; } =
103+ new MetalamaDependencyDefinition (
104+ "Metalama.Vsx" ,
109105 VcsProvider . AzureDevOps ,
110106 null ) ;
111107
112108 public static DependencyDefinition MetalamaSamples { get ; } =
113- new MetalamaDependencyDefinition (
114- "Metalama.Samples" ,
109+ new MetalamaDependencyDefinition (
110+ "Metalama.Samples" ,
115111 VcsProvider . GitHub ,
116- MetalamaGitHubOrganization . Metalama )
117- {
118- CodeStyle = "Metalama.Samples"
119- } ;
112+ MetalamaGitHubOrganization . Metalama ) { CodeStyle = "Metalama.Samples" } ;
120113
121114 public static DependencyDefinition TimelessDotNetEngineer { get ; } =
122- new MetalamaDependencyDefinition (
123- "TimelessDotNetEngineer" ,
115+ new MetalamaDependencyDefinition (
116+ "TimelessDotNetEngineer" ,
124117 VcsProvider . GitHub ,
125- MetalamaGitHubOrganization . PostSharp )
126- {
127- CodeStyle = "Metalama.Samples"
128- } ;
118+ MetalamaGitHubOrganization . PostSharp ) { CodeStyle = "Metalama.Samples" } ;
129119
130- public static DependencyDefinition MetalamaCommunity { get ; } =
131- new MetalamaDependencyDefinition (
132- "Metalama.Community" ,
120+ public static DependencyDefinition MetalamaCommunity { get ; } =
121+ new MetalamaDependencyDefinition (
122+ "Metalama.Community" ,
133123 VcsProvider . GitHub ,
134124 MetalamaGitHubOrganization . PostSharp ) ;
135125
136- public static DependencyDefinition MetalamaDocumentation { get ; } =
126+ public static DependencyDefinition MetalamaDocumentation { get ; } =
137127 new MetalamaDependencyDefinition (
138128 "Metalama.Documentation" ,
139129 VcsProvider . GitHub ,
140130 MetalamaGitHubOrganization . Metalama ,
141131 false ) ;
142132
143- public static DependencyDefinition NopCommerce { get ; } =
133+ public static DependencyDefinition NopCommerce { get ; } =
144134 new MetalamaDependencyDefinition (
145135 "Metalama.Tests.NopCommerce" ,
146136 VcsProvider . GitHub ,
@@ -150,16 +140,16 @@ public MetalamaDependencyDefinition(
150140 vcsRootProjectId : $ "Metalama_Metalama{ Family . VersionWithoutDots } ",
151141 customBranch : $ "dev/{ Family . Version } " ) ;
152142
153- public static DependencyDefinition CargoSupport { get ; } =
143+ public static DependencyDefinition CargoSupport { get ; } =
154144 new MetalamaDependencyDefinition (
155145 "Metalama.Tests.CargoSupport" ,
156146 VcsProvider . AzureDevOps ,
157147 null ,
158148 false ,
159149 parentCiProjectId : $ "Metalama_Metalama{ Family . VersionWithoutDots } _MetalamaTests",
160150 vcsRootProjectId : $ "Metalama_Metalama{ Family . VersionWithoutDots } " ) ;
161-
162- public static DependencyDefinition DotNetSdkTests { get ; } =
151+
152+ public static DependencyDefinition DotNetSdkTests { get ; } =
163153 new MetalamaDependencyDefinition (
164154 "Metalama.Tests.DotNetSdk" ,
165155 VcsProvider . GitHub ,
@@ -168,7 +158,7 @@ public MetalamaDependencyDefinition(
168158 parentCiProjectId : $ "Metalama_Metalama{ Family . VersionWithoutDots } _MetalamaTests",
169159 vcsRootProjectId : $ "Metalama_Metalama{ Family . VersionWithoutDots } " ) ;
170160
171- public static DependencyDefinition MetalamaPerformance { get ; } =
161+ public static DependencyDefinition MetalamaPerformance { get ; } =
172162 new MetalamaDependencyDefinition (
173163 "Metalama.Performance" ,
174164 VcsProvider . GitHub ,
0 commit comments