I'm looking to change my assembly and file version like this
However, in my new project this does not appear
I also tried to add it directly to the AssemblyInfo.cs file but it created a duplicate error.
CodePudding user response:
.NET Core projects don't support this dialog anymore. Edit your project file instead.
If you want to add your own assembly attributes, check this already answered question here: https://stackoverflow.com/a/42183749/7972419
CodePudding user response:
The AssemblyInfo.cs
is not included in the default templates anymore because SDK-style project type supports setting this kind of information within the csproj
file.
You have a couple of options for doing this:
You could set the
netcoreapp3.0 1.2.3Version
property of your assembly within your project file . For example:Another option is to set it during the build process -
dotnet build /p:Version=1.2.3
.