Skip to content

Commit cae04fc

Browse files
committed
Fix package dependency issue
1 parent 1ed43e3 commit cae04fc

4 files changed

Lines changed: 25 additions & 2 deletions

File tree

.vscode/settings.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.activeBackground": "#6b9a8e",
4+
"activityBar.background": "#6b9a8e",
5+
"activityBar.foreground": "#15202b",
6+
"activityBar.inactiveForeground": "#15202b99",
7+
"activityBarBadge.background": "#684e72",
8+
"activityBarBadge.foreground": "#e7e7e7",
9+
"commandCenter.border": "#e7e7e799",
10+
"sash.hoverBorder": "#6b9a8e",
11+
"statusBar.background": "#557d73",
12+
"statusBar.foreground": "#e7e7e7",
13+
"statusBarItem.hoverBackground": "#6b9a8e",
14+
"statusBarItem.remoteBackground": "#557d73",
15+
"statusBarItem.remoteForeground": "#e7e7e7",
16+
"titleBar.activeBackground": "#557d73",
17+
"titleBar.activeForeground": "#e7e7e7",
18+
"titleBar.inactiveBackground": "#557d7399",
19+
"titleBar.inactiveForeground": "#e7e7e799"
20+
},
21+
"peacock.color": "#557d73"
22+
}

MinimalClean/Directory.Packages.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
2929
<PackageVersion Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.0" />
3030
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
31+
<PackageVersion Include="MimeKit" Version="4.15.1" />
3132
<PackageVersion Include="NimblePros.Metronome" Version="0.4.1" />
3233
<PackageVersion Include="NsDepCop" Version="2.6.0" />
3334
<PackageVersion Include="NSubstitute" Version="5.3.0" />

MinimalClean/src/MinimalClean.Architecture.Web/MinimalClean.Architecture.Web.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
</PackageReference>
3131

3232
<PackageReference Include="MailKit" />
33+
<PackageReference Include="MimeKit" />
3334
<PackageReference Include="NimblePros.Metronome" />
3435
<PackageReference Include="Scalar.AspNetCore" />
3536
<PackageReference Include="Serilog.AspNetCore" />

MinimalClean/src/MinimalClean.Architecture.Web/ProductFeatures/GetById/GetByIdEndpoint.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
using FastEndpoints;
1+
using FastEndpoints;
22
using FluentValidation;
33
using Microsoft.AspNetCore.Http.HttpResults;
44
using MinimalClean.Architecture.Web.Domain.ProductAggregate;
55
using MinimalClean.Architecture.Web.Extensions;
6-
using MinimalClean.Architecture.Web.ProductFeatures;
76

87
namespace MinimalClean.Architecture.Web.ProductFeatures.GetById;
98

0 commit comments

Comments
 (0)