Skip to content

Commit

Permalink
Fixing PR
Browse files Browse the repository at this point in the history
  • Loading branch information
missymessa committed Nov 13, 2023
1 parent 241fad6 commit b2719d5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ public void NonStableAndPublic(bool publishInstallersAndChecksums)
TargetFeedContentType.Symbols,
PublishingConstants.LegacyDotNetBlobFeedURL,
FeedType.AzureStorageFeed,
InstallersTargetStaticFeedKey,
latestLinkShortUrlPrefix: string.Empty,
assetSelection: AssetSelection.All,
isolated: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ protected SetupTargetFeedConfigBase(bool isInternalBuild,
bool isStableBuild,
string repositoryName,
string commitSha,
string azureStorageTargetFeedPAT,
bool publishInstallersAndChecksums,
string installersTargetStaticFeed,
string installersAzureAccountKey,
Expand All @@ -44,7 +43,6 @@ protected SetupTargetFeedConfigBase(bool isInternalBuild,
IsStableBuild = isStableBuild;
RepositoryName = repositoryName;
CommitSha = commitSha;
AzureStorageTargetFeedPAT = azureStorageTargetFeedPAT;
PublishInstallersAndChecksums = publishInstallersAndChecksums;
InstallersTargetStaticFeed = installersTargetStaticFeed;
InstallersAzureAccountKey = installersAzureAccountKey;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ private List<TargetFeedConfig> NonStableFeeds()
// This is pretty uncommon though, as non-stable internal builds are quite rare.
string symbolsFeed;
FeedType symbolsFeedType;
string symbolsFeedSecret;
string symbolsFeedSecret = string.Empty;

if (IsInternalBuild)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static class Helpers
/// A 'word' is the next logical piece of a variable/property/parameter name
/// </remarks>
/// <returns>The 'word'</returns>
private static ReadOnlySpan<char> GetNextWord(ReadOnlySpan<char> value, ref int pos)
private static ReadOnlySpan<char> GetNextWord(ReadOnlySpan<char> value, scoped ref int pos)

Check failure on line 18 in src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs

View check run for this annotation

Azure Pipelines / arcade-ci (Build Linux Build_Debug)

src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs#L18

src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs(18,88): error CS1001: (NETCORE_ENGINEERING_TELEMETRY=Build) Identifier expected

Check failure on line 18 in src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs

View check run for this annotation

Azure Pipelines / arcade-ci (Build Linux Build_Debug)

src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs#L18

src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs(18,88): error CS1003: (NETCORE_ENGINEERING_TELEMETRY=Build) Syntax error, ',' expected

Check failure on line 18 in src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs

View check run for this annotation

Azure Pipelines / arcade-ci (Build Linux Build_Release)

src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs#L18

src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs(18,88): error CS1001: (NETCORE_ENGINEERING_TELEMETRY=Build) Identifier expected

Check failure on line 18 in src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs

View check run for this annotation

Azure Pipelines / arcade-ci (Build Linux Build_Release)

src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs#L18

src/Microsoft.DotNet.SwaggerGenerator/Microsoft.DotNet.SwaggerGenerator.CodeGenerator/Helpers.cs(18,88): error CS1003: (NETCORE_ENGINEERING_TELEMETRY=Build) Syntax error, ',' expected
{
int? wordStart = null;
for (int idx = pos; idx < value.Length; idx++)
Expand Down

0 comments on commit b2719d5

Please sign in to comment.