Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2 azure-pipelines-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ stages:
- job: macOS
enablePublishTestResults: true
pool:
vmImage: macOS-12
vmImage: macOS-13
variables:
# Rely on task Arcade injects, not auto-injected build step.
- skipComponentGovernanceDetection: true
Expand Down
2 changes: 1 addition & 1 deletion 2 azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ extends:
- job: macOS
pool:
name: Azure Pipelines
image: macOS-12
image: macOS-13
os: macOS
variables:
# Rely on task Arcade injects, not auto-injected build step.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ FROM [__EFMigrationsHistory]
ORDER BY [MigrationId];

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000000_Empty', N'9.0.1');
VALUES (N'00000000000000_Empty', N'7.0.0-test');

--Before

Expand Down Expand Up @@ -798,18 +798,18 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
END

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000001_Migration1', N'9.0.1');
VALUES (N'00000000000001_Migration1', N'7.0.0-test');

--After

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000002_Migration2', N'9.0.1');
VALUES (N'00000000000002_Migration2', N'7.0.0-test');

DECLARE @result int;
EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
SELECT @result
""",
Fixture.TestSqlLoggerFactory.Sql,
Fixture.TestSqlLoggerFactory.Sql.Replace(ProductInfo.GetVersion(), "7.0.0-test"),
ignoreLineEndingDifferences: true);
}

Expand Down Expand Up @@ -867,7 +867,7 @@ FROM [__EFMigrationsHistory]
ORDER BY [MigrationId];

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000000_Empty', N'9.0.1');
VALUES (N'00000000000000_Empty', N'7.0.0-test');

--Before

Expand Down Expand Up @@ -910,18 +910,18 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
END

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000001_Migration1', N'9.0.1');
VALUES (N'00000000000001_Migration1', N'7.0.0-test');

--After

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000002_Migration2', N'9.0.1');
VALUES (N'00000000000002_Migration2', N'7.0.0-test');

DECLARE @result int;
EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
SELECT @result
""",
Fixture.TestSqlLoggerFactory.Sql,
Fixture.TestSqlLoggerFactory.Sql.Replace(ProductInfo.GetVersion(), "7.0.0-test"),
ignoreLineEndingDifferences: true);
}

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.