This repository was archived by the owner on Feb 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathEventStore.ClientAPI.NetCore.csproj
More file actions
executable file
·38 lines (35 loc) · 1.89 KB
/
EventStore.ClientAPI.NetCore.csproj
File metadata and controls
executable file
·38 lines (35 loc) · 1.89 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>EventStore.ClientAPI</AssemblyTitle>
<Description>EventStore NetStandard ClientApi</Description>
<Company>Event Store LLP</Company>
<Copyright>Copyright © Event Store LLP. All rights reserved.</Copyright>
<Product>EventStore.ClientAPI</Product>
<Version>4.0.2-alpha</Version>
</PropertyGroup>
<PropertyGroup>
<Description>The client API for the Event Store. Get the open source or commercial versions of the Event Store server from http://geteventstore.com</Description>
<Authors>Event Store LLP</Authors>
<DebugType>portable</DebugType>
<AssemblyName>EventStore.ClientAPI.NetCore</AssemblyName>
<PackageId>EventStore.ClientAPI.NetCore</PackageId>
<PackageTags>eventstore;client;netstandard2.0</PackageTags>
<PackageIconUrl>http://geteventstore.com/assets/ouro-200.png</PackageIconUrl>
<PackageLicenseUrl>https://github.com/EventStore/netcore-client/blob/master/LICENSE.md</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/EventStore/ClientAPI.NetCore</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\EventStore.ClientAPI.NetCore.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\EventStore.ClientAPI.NetCore.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="protobuf-net" Version="2.3.2" />
</ItemGroup>
</Project>