Skip to content

Commit 295348b

Browse files
Documentation error - should be "query" not "command"
1 parent 844d651 commit 295348b

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/EventSourcingOnAzureFunctions.Common/CQRS/QueryHandler/Query.Readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ This namespace contains a set of events and projections useful in implementing t
55
backed by event sourcing.
66

77
Each query instance has its own event stream to which events are written and over which projections may be run in
8-
order to get the state of that command as at any given point in time.
8+
order to get the state of that query as at any given point in time.

src/EventSourcingOnAzureFunctions.Common/EventSourcingOnAzureFunctions.Common.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
45
<PackageId>EventSourcingOnAzureFunctions.Common</PackageId>
56
<PackageVersion>1.1</PackageVersion>
6-
<TargetFramework>netcoreapp3.1</TargetFramework>
77
<LangVersion>7.1</LangVersion>
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
99
<Authors>Duncan Jones</Authors>
@@ -36,10 +36,7 @@
3636
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="5.0.0" />
3737
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
3838
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
39-
<PackageReference Include="NuGet.Build.Tasks.Pack" Version="5.9.0-preview.2">
40-
<PrivateAssets>all</PrivateAssets>
41-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
42-
</PackageReference>
39+
<PackageReference Include="NuGet.Build.Tasks.Pack" Version="5.9.0-preview.2" />
4340
</ItemGroup>
4441

4542
<ItemGroup>

0 commit comments

Comments
 (0)