Skip to content

Commit ce38548

Browse files
author
Rafał Maciąg
committed
docs
1 parent 01a556c commit ce38548

File tree

9 files changed

+359
-115
lines changed

9 files changed

+359
-115
lines changed

_site/toc.pdf

0 Bytes
Binary file not shown.

src/MicroPlumberd.Services/ServicesConvention.cs

+4
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,12 @@ public static class PlumberdConventionsExtensions
5959
{
6060
public static IServicesConvention ServicesConventions(this IConventions conventions) =>
6161
conventions.GetExtension<ServicesConvention>();
62+
public static IServicesConvention ServicesConventions(this IReadOnlyConventions conventions) =>
63+
conventions.GetExtension<ServicesConvention>();
6264
public static IServicesConfig ServicesConfig(this IPlumberConfig config) =>
6365
config.GetExtension<ServicesConfig>();
66+
public static IServicesConfig ServicesConfig(this IPlumberReadOnlyConfig config) =>
67+
config.GetExtension<ServicesConfig>();
6468
}
6569

6670
class CommandMappings

src/MicroPlumberd.SourceGenerators/MicroPlumberd.SourceGenerators.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<IncludeBuildOutput>false</IncludeBuildOutput>
1212
<PackageIcon>logo-squere.png</PackageIcon>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>
14+
<LangVersion>latest</LangVersion>
1415
<RepositoryUrl>https://github.com/modelingevolution/micro-plumberd</RepositoryUrl>
1516
<PackageProjectUrl>https://modelingevolution.github.io/micro-plumberd/</PackageProjectUrl>
1617
<Description>CQRS/EventSourcing made eXtreamly simple. Code Generators.</Description>

src/MicroPlumberd.SpecFlow.SourceGenerators/Humanizer/Humanizer.csproj

-59
This file was deleted.

0 commit comments

Comments
 (0)