nuget Properties Version .csproj Version Tag
Hi I wanna change my Version tag in rider via properties.
Is there any possiblity to change Project Version in rider.
When I change the in the properties the nuget Version in Rider its change the PackageVersion and in Assembly the AssemblyVersion
in Visiual Studio if we change the Project Version it set an Tag Version which override the PackageVersion and Package Version
NOW:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageVersion>0.0.0.1</PackageVersion>
<AssemblyVersion>0.0.0.1</AssemblyVersion>
</PropertyGroup>
</Project>
Want:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>0.0.0.1</Version>
</PropertyGroup>
</Project>
Please sign in to leave a comment.
Hi,
There is no UI for setting the version tag in csproj. Please feel free to vote for the issue: https://youtrack.jetbrains.com/issue/RIDER-40524.
Kind regards,
Sofia.