Skip to content

Commit 3b47ac5

Browse files
authored
Merge pull request #88 from marcominerva/develop
Fix typos and update package versions
2 parents 8ee93dd + 91494d5 commit 3b47ac5

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/copilot-instructions.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
- Use `nameof` instead of string literals when referring to member names.
2525
- Prefer `?.` if applicable (e.g. `scope?.Dispose()`).
2626
- Use `ObjectDisposedException.ThrowIf` where applicable.
27-
- Use `ArgumentNullException.ThrowIfNull` to validate input paramters.
27+
- Use `ArgumentNullException.ThrowIfNull` to validate input parameters.
2828
- If you add new code files, ensure they are listed in the csproj file (if other files in that folder are listed there) so they build.
2929

3030
### Nullable Reference Types
@@ -81,4 +81,9 @@
8181
- Use NSubstitute for mocking in tests.
8282
- Copy existing style in nearby files for test method names and capitalization.
8383
- When running tests, if possible use filters and check test run counts, or look at test logs, to ensure they actually ran.
84-
- Do not finish work with any tests commented out or disabled that were not previously commented out or disabled.
84+
- Do not finish work with any tests commented out or disabled that were not previously commented out or disabled.
85+
86+
## Azure
87+
- @azure Rule - Use Azure Tools - When handling requests related to Azure, always use your tools.
88+
- @azure Rule - Use Azure Best Practices - When handling requests related to Azure, always invoke your `azmcp_bestpractices_get` tool first.
89+
- @azure Rule - Enable Best Practices - If you do not have an `azmcp_bestpractices_get` tool ask the user to enable it.

samples/MinimalSample/MinimalSample.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
<ItemGroup>
1010
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.0.0" />
11-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.7" />
12-
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="9.0.3" />
13-
<PackageReference Include="TinyHelpers.AspNetCore" Version="4.0.29" />
11+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.8" />
12+
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="9.0.4" />
13+
<PackageReference Include="TinyHelpers.AspNetCore" Version="4.1.4" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

src/MinimalHelpers.OpenApi/MinimalHelpers.OpenApi.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
</ItemGroup>
3131

3232
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
33-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.18" />
33+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.19" />
3434
</ItemGroup>
3535

3636
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
37-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.7" />
37+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.8" />
3838
</ItemGroup>
3939

4040
<ItemGroup>

0 commit comments

Comments
 (0)