Skip to content

Commit ab18824

Browse files
Release v2.0.0
1 parent 2b1fa2f commit ab18824

File tree

2 files changed

+24
-21
lines changed

2 files changed

+24
-21
lines changed

README.md

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,14 @@
1-
# Correlation Vector-CSharp [![](https://img.shields.io/nuget/v/Microsoft.CorrelationVector.svg)](https://www.nuget.org/packages/Microsoft.CorrelationVector/)
1+
# ShortDev.Microsoft.CorrelationVector
2+
[![](https://img.shields.io/nuget/v/ShortDev.Microsoft.CorrelationVector.svg)](https://www.nuget.org/packages/ShortDev.Microsoft.CorrelationVector/)
23

3-
CorrelationVector-CSharp provides the CSharp implementation of the CorrelationVector protocol for tracing and correlation of events through a distributed system.
4+
Microsoft.CorrelationVector provides the CSharp implementation of the CorrelationVector protocol for tracing and correlation of events through a distributed system.
45

5-
# Correlation Vector
66
## Background
77

88
**Correlation Vector** (a.k.a. **cV**) is a format and protocol standard for tracing and correlation of events through a distributed system based on a light weight vector clock.
99
The standard is widely used internally at Microsoft for first party applications and services and supported across multiple logging libraries and platforms (Services, Clients - Native, Managed, Js, iOS, Android etc). The standard powers a variety of different data processing needs ranging from distributed tracing & debugging to system and business intelligence, in various business organizations.
1010

1111
For more on the correlation vector specification and the scenarios it supports, please refer to the [specification](https://github.com/Microsoft/CorrelationVector) repo.
1212

13-
# Contributing
14-
15-
This project welcomes contributions and suggestions. Most contributions require you to agree to a
16-
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
17-
the rights to use your contribution. For details, visit https://cla.microsoft.com.
18-
19-
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
20-
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
21-
provided by the bot. You will only need to do this once across all repos using our CLA.
22-
23-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
24-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
25-
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
26-
27-
# General feedback and discussions?
28-
Please start a discussion on the [Home repo issue tracker](https://github.com/Microsoft/CorrelationVector-CSharp/issues)
13+
## License
14+
This project is licensed under the [MIT License](LICENSE).
Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
4+
<AssemblyName>ShortDev.Microsoft.CorrelationVector</AssemblyName>
5+
</PropertyGroup>
6+
7+
<PropertyGroup Label="Nuget">
8+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
9+
<PackageReadmeFile>README.md</PackageReadmeFile>
410
<RepositoryUrl>https://github.com/nearby-sharing/Microsoft.CorrelationVector</RepositoryUrl>
511
<PackageTags>CorrelationVector Codex Microsoft Monitoring</PackageTags>
612
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
7-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
8-
<Version>1.0.0</Version>
13+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
14+
<Version>2.0.0</Version>
915
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
1016
<Description>This package provides a reference C# implementation of the CorrelationVector protocol for tracing and correlation of events through a distributed system.</Description>
1117
</PropertyGroup>
18+
19+
<ItemGroup Label="Nuget">
20+
<Content Include="../../README.md">
21+
<PackagePath>/</PackagePath>
22+
<Pack>true</Pack>
23+
</Content>
24+
<Content Include="../../LICENSE">
25+
<PackagePath>/</PackagePath>
26+
<Pack>true</Pack>
27+
</Content>
28+
</ItemGroup>
1229
</Project>

0 commit comments

Comments
 (0)