-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandApi.csproj
More file actions
45 lines (39 loc) · 2.07 KB
/
CommandApi.csproj
File metadata and controls
45 lines (39 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<CodeAnalysisRuleSet>$(SolutionDir)analysis.ruleset</CodeAnalysisRuleSet>
<LangVersion>Latest</LangVersion>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>1.1.0</Version>
<Title>CQRS Command API</Title>
<RepositoryType>git</RepositoryType>
<Authors>Alex McNair</Authors>
<Description>This package contains everything you need to create and execute CQRS style commands in your application, and expose them via a single REST endpoint.</Description>
<Company>AMCN41R</Company>
<Copyright>Copyright © 2020</Copyright>
<PackageProjectUrl>https://github.com/AMCN41R/csharp-command-framework</PackageProjectUrl>
<RepositoryUrl>https://github.com/AMCN41R/csharp-command-framework</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>Please see documentation on github.</PackageReleaseNotes>
<PackageTags>CQRS command commands events event-driven</PackageTags>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\$(Configuration)\Commands.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="FluentValidation" Version="8.6.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.5" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>