@@ -41,7 +41,7 @@ public Common() : base(typeof(CustomTarget))
4141 AddTargets ( new CustomTarget
4242 {
4343 Platform = Platform . win64 ,
44- DevEnv = DevEnv . vs2026 | DevEnv . vs2022 ,
44+ DevEnv = DevEnv . vs2026 ,
4545 Optimization = Optimization . Release ,
4646 Mode = Mode . Debug | Mode . Profile | Mode . Retail
4747 } ) ;
@@ -60,8 +60,8 @@ public virtual void ConfigureAll(Configuration conf, CustomTarget target)
6060 {
6161 conf . Output = Configuration . OutputType . Utility ;
6262
63- string devEnvSuffix = target . DevEnv == DevEnv . vs2022 ? "_vs2022" : "" ;
64- conf . ProjectFileName = $ "[project.Name]{ devEnvSuffix } ";
63+
64+ conf . ProjectFileName = "[project.Name]" ;
6565 conf . ProjectPath = @"[project.RootPath]" ;
6666
6767 conf . IncludePaths . Add ( SourceRootPath ) ;
@@ -400,8 +400,7 @@ public SpectrumSolution()
400400 [ Configure ( ) ]
401401 public void ConfigureAll ( Configuration conf , CustomTarget target )
402402 {
403- string solutionNameSuffix = target . DevEnv == DevEnv . vs2022 ? "_vs2022" : "" ;
404- conf . SolutionFileName = $ "Spectrum{ solutionNameSuffix } ";
403+ conf . SolutionFileName = "Spectrum" ;
405404 conf . SolutionPath = @"[solution.SharpmakeCsPath]\projects\" ;
406405 string platformName = string . Empty ;
407406/*
0 commit comments