Set up multi-project solution with DbFirst API, Application, Domain, and Infrastructure layers. Implemented database-first EF Core for the Catalog entity, including domain, DTOs, repository, service, and controller. Configured AutoMapper, DI, Swagger, and project settings. Added .gitattributes and initial configuration files.
10 lines
241 B
XML
10 lines
241 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<fallbackPackageFolders>
|
|
<clear />
|
|
</fallbackPackageFolders>
|
|
<config>
|
|
<add key="globalPackagesFolder" value="%USERPROFILE%\.nuget\packages" />
|
|
</config>
|
|
</configuration>
|