-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHttpCommanding.Middleware.csproj
More file actions
37 lines (32 loc) · 1.46 KB
/
HttpCommanding.Middleware.csproj
File metadata and controls
37 lines (32 loc) · 1.46 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputType>Library</OutputType>
<Nullable>enable</Nullable>
<PackageId>http-commanding-middleware</PackageId>
<RepositoryUrl>https://github.com/vudodov/http-commanding</RepositoryUrl>
<Authors>Valerii Udodov <vudodov@gmail.com></Authors>
<Version>1.0.1</Version>
<IsPackable>true</IsPackable>
<PackageVersion>1.1.4</PackageVersion>
<Title>HTTP Commanding Middleware</Title>
<PackageLicenseUrl>MIT</PackageLicenseUrl>
<PackageTags>cqrs, commanding, http</PackageTags>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RepositoryType>GIT</RepositoryType>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="Properties\launchSettings.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HttpCommanding.Infrastructure\HttpCommanding.Infrastructure.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.6" />
<PackageReference Include="NJsonSchema" Version="10.1.24" />
<PackageReference Include="System.IO.Pipelines" Version="4.7.2" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>
</Project>