Fix adapters project reference

This commit is contained in:
2021-09-27 18:02:21 +02:00
parent 59a82c5463
commit 06a610ea73

View File

@@ -25,15 +25,17 @@ dotnet new nunit -n Domain.Tests
dotnet add Domain.Tests package NSubstitute dotnet add Domain.Tests package NSubstitute
dotnet sln add Domain.Tests dotnet sln add Domain.Tests
dotnet add Domain.Tests reference Domain dotnet add Domain.Tests reference Domain
# wiring project
dotnet new classlib -n Wiring
dotnet sln add Wiring
dotnet add Wiring reference Domain
dotnet add Wiring package Autofac
# adapters project # adapters project
dotnet new classlib -n Adapters dotnet new classlib -n Adapters
dotnet sln add Adapters dotnet sln add Adapters
dotnet add Adapters reference Domain dotnet add Adapters reference Domain
# wiring project
dotnet new classlib -n Wiring
dotnet sln add Wiring
dotnet add Wiring reference Domain
dotnet add Wiring reference Adapters
dotnet add Wiring package Autofac
# use webapi and/or console # use webapi and/or console
# webapi project # webapi project
#dotnet new webapi -n WebApi #dotnet new webapi -n WebApi