Movatterモバイル変換


[0]ホーム

URL:


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

Sign up
Appearance settings

Configure FluentMigrator-specific Copilot instructions#2180

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
jzabroski merged 2 commits intomainfromcopilot/setup-copilot-instructions
Nov 22, 2025

Conversation

Copy link
Contributor

CopilotAI commentedNov 18, 2025
edited
Loading

Replaced generic ASP.NET Core API guidelines in.github/copilot-instructions.md with FluentMigrator-specific migration framework patterns.

Removed:

  • ASP.NET Core content (authentication, API versioning, middleware)
  • Generic data access patterns irrelevant to a migration library

Added:

  • Project context: 11 supported database providers (SQL Server, PostgreSQL, MySQL, SQLite, Oracle, Firebird, Snowflake, SAP HANA, Jet, Redshift, DB2)
  • Migration patterns:Up()/Down() structure,AutoReversingMigration, timestamp-based versioning
  • Database-agnostic code:IfDatabase() usage withProcessorIdConstants
  • Testing patterns: NUnit fixtures with Shouldly assertions, integration test organization
  • Architecture: Processor/generator implementation, project structure, extension method conventions
  • Build/test:dotnet build/test workflows, GitVersion integration

Example migration pattern:

[Migration(20090906205342)]publicclassAddUsersTable:Migration{publicoverridevoidUp()=>Create.Table("Users").WithIdColumn().WithColumn("Name").AsString().NotNullable();publicoverridevoidDown()=>Delete.Table("Users");}

Retained:

  • C# 13 language guidelines
  • .editorconfig alignment (naming, formatting)
  • Nullable reference type patterns
  • XML documentation standards

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • gh.io
    • Triggering command:curl -L REDACTED (dns block)
  • l78vsblobprodsu6weus64.blob.core.windows.net
    • Triggering command:dotnet restore FluentMigrator.sln (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Original prompt

This section details on the original issue you should resolve

<issue_title>✨ Set up Copilot instructions</issue_title>
<issue_description>Configure instructions for this repository as documented inBest practices for Copilot coding agent in your repository.

</issue_description>

Comments on the Issue (you are@copilot in this section)


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn moreCopilot coding agent tips in the docs.

Co-authored-by: jzabroski <447485+jzabroski@users.noreply.github.com>
CopilotAI changed the title[WIP] Configure instructions for Copilot in repositoryConfigure FluentMigrator-specific Copilot instructionsNov 18, 2025
CopilotAI requested a review fromjzabroskiNovember 18, 2025 20:20
@jzabroskijzabroski marked this pull request as ready for reviewNovember 22, 2025 03:50
@jzabroskijzabroski merged commit72d36e7 intomainNov 22, 2025
0 of 5 checks passed
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

1 more reviewer

@jzabroskijzabroskijzabroski approved these changes

Reviewers whose approvals may not affect merge requirements

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

✨ Set up Copilot instructions

2 participants

@jzabroski

[8]ページ先頭

©2009-2025 Movatter.jp