Skip to content

Commit

Permalink
remove core from name
Browse files Browse the repository at this point in the history
  • Loading branch information
qdraw committed Feb 9, 2024
1 parent af59103 commit 2cb0d49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pipelines/azure/steps/use_dotnet_version.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 8.0.101'
displayName: 'Use .NET SDK 8.0.101'
enabled: true
inputs:
packageType: sdk
Expand Down
2 changes: 1 addition & 1 deletion starsky-tools/build-tools/dotnet-sdk-version-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ async function updateAzureYmlFile(filePathList, sdkVersion) {
fileContent = fileContent.replace(
displayNameTagRegex,
displayNameTag +
"'Use .NET Core sdk " +
"'Use .NET SDK " +
sdkVersion +
"'"
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.1"/>
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<!-- instead of : Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0-->
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="OpenTelemetry" Version="1.7.0"/>
<PackageReference Include="OpenTelemetry.Api" Version="1.7.0"/>
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.7.0"/>
Expand Down

0 comments on commit 2cb0d49

Please sign in to comment.