Use a centralized version number during beta

See PROCESSES.md for the reasoning

Signed-off-by: Jon Skeet <jonskeet@google.com>
This commit is contained in:
Jon Skeet 2020-11-10 15:07:29 +00:00 committed by Jon Skeet
parent 4e98c5a52b
commit 3f2308edf6
7 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageVersion>1.0</PackageVersion>
<Description>AMQP extensions for CloudNative.CloudEvents</Description>
</PropertyGroup>

View File

@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageVersion>0.1</PackageVersion>
<Description>ASP.Net Core extensions for CloudNative.CloudEvents</Description>
</PropertyGroup>

View File

@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageVersion>1.0</PackageVersion>
<Description>Avro extensions for CloudNative.CloudEvents</Description>
<Copyright>Copyright Cloud Native Foundation</Copyright>
<RepositoryUrl>https://github.com/cloudevents/sdk-csharp</RepositoryUrl>

View File

@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageVersion>1.0</PackageVersion>
<Description>Kafka extensions for CloudNative.CloudEvents</Description>
</PropertyGroup>

View File

@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageVersion>1.0</PackageVersion>
<Description>MQTT extensions for CloudNative.CloudEvents</Description>
</PropertyGroup>

View File

@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageVersion>1.0</PackageVersion>
<Description>CNCF CloudEvents SDK</Description>
</PropertyGroup>

View File

@ -1,5 +1,11 @@
<Project>
<PropertyGroup>
<!--
- During beta, we use the same version number for all
- packages. See PROCESSES.md for details.
-->
<Version>2.0.0-beta.1</Version>
<!-- Make the repository root available for other properties -->
<RepoRoot>$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('.gitignore', '$(MSBuildThisFileDirectory)'))))</RepoRoot>