Skip to content

Commit

Permalink
Backport changes in config schema generator from Aspire (SteeltoeOSS#…
Browse files Browse the repository at this point in the history
  • Loading branch information
bart-vmware authored Oct 13, 2024
1 parent a7d3094 commit 63ab29c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@

<Target Name="CalculateConfigurationSchemaGeneratorPath">
<MSBuild Projects="$(ConfigurationSchemaGeneratorProjectPath)"
Targets="GetTargetPath">
Targets="GetTargetPath"
RemoveProperties="TargetFramework">
<Output TaskParameter="TargetOutputs" PropertyName="ConfigurationSchemaGeneratorPath" />
</MSBuild>
</Target>
Expand All @@ -92,8 +93,8 @@
Outputs="$(GeneratedConfigurationSchemaOutputPath)">

<PropertyGroup>
<GeneratorCommandLine>dotnet exec $(ConfigurationSchemaGeneratorPath)</GeneratorCommandLine>
<GeneratorCommandLine>$(GeneratorCommandLine) @$(ConfigurationSchemaGeneratorRspPath)</GeneratorCommandLine>
<GeneratorCommandLine>dotnet exec "$(ConfigurationSchemaGeneratorPath)"</GeneratorCommandLine>
<GeneratorCommandLine>$(GeneratorCommandLine) @"$(ConfigurationSchemaGeneratorRspPath)"</GeneratorCommandLine>
</PropertyGroup>

<Message Importance="High" Text="Running ConfigurationSchemaGenerator for project: $(MSBuildProjectName)" />
Expand Down
4 changes: 2 additions & 2 deletions versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<FluentAssertionsJsonVersion>6.1.*</FluentAssertionsJsonVersion>
<FluentAssertionsVersion>6.12.*</FluentAssertionsVersion>
<MicrosoftAzureCosmosVersion>3.41.*</MicrosoftAzureCosmosVersion>
<MicrosoftCodeAnalysisVersion>4.10.0</MicrosoftCodeAnalysisVersion>
<MicrosoftCodeAnalysisVersion>4.11.0</MicrosoftCodeAnalysisVersion>
<MicrosoftSqlClientVersion>5.2.*</MicrosoftSqlClientVersion>
<MockHttpVersion>7.0.*</MockHttpVersion>
<MongoDbDriverVersion>2.27.*</MongoDbDriverVersion>
Expand All @@ -27,7 +27,7 @@
<SonarAnalyzerVersion>9.25.*</SonarAnalyzerVersion>
<SourceLinkGitHubVersion>8.0.*</SourceLinkGitHubVersion>
<StyleCopVersion>1.2.0-beta.556</StyleCopVersion>
<SystemCommandLineVersion>2.0.0-beta4.24209.3</SystemCommandLineVersion>
<SystemCommandLineVersion>2.0.0-beta4.24324.3</SystemCommandLineVersion>
<SystemSqlClientVersion>4.8.*</SystemSqlClientVersion>
<TestSdkVersion>17.10.*</TestSdkVersion>
<XunitAbstractionsVersion>2.0.*</XunitAbstractionsVersion>
Expand Down

0 comments on commit 63ab29c

Please sign in to comment.