Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SCAN4NET-33 Change version to 9.0.0-rc #2169

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AssemblyInfo.Shared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
using System.Resources;
using System.Runtime.InteropServices;

[assembly: AssemblyVersion("9.0.0")]

Check failure on line 25 in AssemblyInfo.Shared.cs

View check run for this annotation

Azure Pipelines / SonarScanner for MSBuild (Build: Build and stage to repox)

AssemblyInfo.Shared.cs#L25

AssemblyInfo.Shared.cs(25,28): Error CS7034: The specified version string '9.0.0-rc' does not conform to the required format - major[.minor[.build[.revision]]]

Check failure on line 25 in AssemblyInfo.Shared.cs

View check run for this annotation

Azure Pipelines / SonarScanner for MSBuild (Build: Build and stage to repox)

AssemblyInfo.Shared.cs#L25

AssemblyInfo.Shared.cs(25,28): Error CS7034: The specified version string '9.0.0-rc' does not conform to the required format - major[.minor[.build[.revision]]]

Check failure on line 25 in AssemblyInfo.Shared.cs

View check run for this annotation

Azure Pipelines / SonarScanner for MSBuild (Build: Build and stage to repox)

AssemblyInfo.Shared.cs#L25

AssemblyInfo.Shared.cs(25,28): Error CS7034: The specified version string '9.0.0-rc' does not conform to the required format - major[.minor[.build[.revision]]]

Check failure on line 25 in AssemblyInfo.Shared.cs

View check run for this annotation

Azure Pipelines / SonarScanner for MSBuild

AssemblyInfo.Shared.cs#L25

AssemblyInfo.Shared.cs(25,28): Error CS7034: The specified version string '9.0.0-rc' does not conform to the required format - major[.minor[.build[.revision]]]

Check failure on line 25 in AssemblyInfo.Shared.cs

View check run for this annotation

Azure Pipelines / SonarScanner for MSBuild

AssemblyInfo.Shared.cs#L25

AssemblyInfo.Shared.cs(25,28): Error CS7034: The specified version string '9.0.0-rc' does not conform to the required format - major[.minor[.build[.revision]]]

Check failure on line 25 in AssemblyInfo.Shared.cs

View check run for this annotation

Azure Pipelines / SonarScanner for MSBuild

AssemblyInfo.Shared.cs#L25

AssemblyInfo.Shared.cs(25,28): Error CS7034: The specified version string '9.0.0-rc' does not conform to the required format - major[.minor[.build[.revision]]]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line does not allow "rc", the allowed format is major.minor.patch.revision.

[assembly: AssemblyFileVersion("9.0.0.0")]
[assembly: AssemblyInformationalVersion("Version:9.0.0.0 Branch:not-set Sha1:not-set")]
[assembly: AssemblyInformationalVersion("Version:9.0.0.0-rc Branch:not-set Sha1:not-set")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("SonarSource and Microsoft")]
[assembly: AssemblyCopyright("Copyright © SonarSource and Microsoft 2015-2023")]
Expand Down
2 changes: 1 addition & 1 deletion nuspec/netcoreglobaltool/dotnet-sonarscanner.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>dotnet-sonarscanner</id>
<version>9.0.0</version>
<version>9.0.0-rc</version>
<title>SonarScanner for .NET</title>
<authors>SonarSource,Microsoft</authors>
<projectUrl>https://redirect.sonarsource.com/doc/msbuild-sq-runner.html</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion scripts/version/Version.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MainVersion>9.0.0</MainVersion>
<MainVersion>9.0.0-rc</MainVersion>
<BuildNumber>0</BuildNumber>
<Sha1>not-set</Sha1>
<BranchName>not-set</BranchName>
Expand Down
Loading