This repository has been archived by the owner on Jun 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added autofac option (off by default)
- Loading branch information
1 parent
b7d9834
commit 898510f
Showing
5 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Project> | ||
<ItemGroup Condition="'$(IncludeRocketSurgeryAspNetCore)' == 'true'"> | ||
<PackageReference Include="Rocket.Surgery.AspNetCore" /> | ||
<PackageReference Include="Rocket.Surgery.Extensions.FluentValidation.AspNetCore" Condition="'$(EnableFluentValidation)' == 'true'" /> | ||
<PackageReference Include="Rocket.Surgery.Extensions.Serilog.AspNetCore" Condition="'$(EnableSerilog)' == 'true'" /> | ||
<PackageReference Include="Rocket.Surgery.AspNetCore.FluentValidation" Condition="'$(EnableFluentValidation)' == 'true'" /> | ||
<PackageReference Include="Rocket.Surgery.AspNetCore.Serilog" Condition="'$(EnableSerilog)' == 'true'" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<Project> | ||
<ItemGroup Condition="'$(IncludeRocketSurgeryHosting)' == 'true'"> | ||
<PackageReference Include="Rocket.Surgery.Hosting" /> | ||
<PackageReference Include="Rocket.Surgery.Hosting.Autofac" Condition="'$(EnableAutofac)' == 'true'" /> | ||
<PackageReference Include="Rocket.Surgery.Hosting.Serilog" Condition="'$(EnableSerilog)' == 'true'" /> | ||
</ItemGroup> | ||
</Project> |