-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathMicrosoft.Azure.CosmosEventSourcing.csproj
59 lines (53 loc) · 2.75 KB
/
Microsoft.Azure.CosmosEventSourcing.csproj
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(DefaultTargetFrameworks);$(CompatibilityTargetFrameworks);netstandard2.1</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>preview</LangVersion>
<PackageId>IEvangelist.Azure.CosmosEventSourcing</PackageId>
<Company>Microsoft Corporation</Company>
<Product>IEvangelist Azure Cosmos Event Sourcing</Product>
<Description>This client library enables client applications to connect to Azure Cosmos and use it as an event sourcing store.</Description>
<Copyright>Copyright © IEvangelist. All rights reserved. Licensed under the MIT License.</Copyright>
<Authors>Mumby0168,IEvangelist</Authors>
<AssemblyName>Microsoft.Azure.CosmosEventSourcing</AssemblyName>
<Title>IEvangelist Azure Cosmos Event Sourcing</Title>
<PackageTags>microsoft;azure;cosmos;cosmosdb;documentdb;docdb;nosql;azureunofficial;dotnetcore;netcore;netstandard;event-sourcing;eda;change-feed;projections</PackageTags>
<PackageProjectUrl>https://github.com/IEvangelist/azure-cosmos-dotnet-repository</PackageProjectUrl>
<PublishRepositoryUrl Condition=" '$(ProjectRef)' != 'True' ">true</PublishRepositoryUrl>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PlatformTarget>AnyCPU</PlatformTarget>
<ShippingScope>External</ShippingScope>
<SigningType>Product</SigningType>
<DebugType>portable</DebugType>
<IncludeSymbols>false</IncludeSymbols>
<IncludeSource>false</IncludeSource>
<RootNamespace>Microsoft.Azure.CosmosEventSourcing</RootNamespace>
<NoWarn>NU5125;NU1507</NoWarn>
<Optimize Condition="'$(Configuration)'=='Release'">true</Optimize>
<RepositoryUrl>https://github.com/IEvangelist/azure-cosmos-dotnet-repository</RepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Azure.CosmosRepository\Microsoft.Azure.CosmosRepository.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Scrutor" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.Azure.CosmosEventSourcingTests" />
<InternalsVisibleTo Include="Microsoft.Azure.CosmosEventSourcingAcceptanceTests" />
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>