Skip to content

Commit c518c03

Browse files
authored
Remove 4th integer from AssemblyInformationalVersion
1 parent 430e88f commit c518c03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/dotnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ During the build it adds source code such as this to your compilation:
99
```csharp
1010
[assembly: System.Reflection.AssemblyVersion("1.0")]
1111
[assembly: System.Reflection.AssemblyFileVersion("1.0.24.15136")]
12-
[assembly: System.Reflection.AssemblyInformationalVersion("1.0.24.15136-alpha+g9a7eb6c819")]
12+
[assembly: System.Reflection.AssemblyInformationalVersion("1.0.24-alpha+g9a7eb6c819")]
1313
```
1414

1515
* The first and second integer components of the versions above come from the
@@ -27,7 +27,7 @@ This class is also injected into your project at build time:
2727
internal sealed partial class ThisAssembly {
2828
internal const string AssemblyVersion = "1.0";
2929
internal const string AssemblyFileVersion = "1.0.24.15136";
30-
internal const string AssemblyInformationalVersion = "1.0.24.15136-alpha+g9a7eb6c819";
30+
internal const string AssemblyInformationalVersion = "1.0.24-alpha+g9a7eb6c819";
3131
internal const string AssemblyName = "Microsoft.VisualStudio.Validation";
3232
internal const string PublicKey = @"0024000004800000940000...reallylongkey..2342394234982734928";
3333
internal const string PublicKeyToken = "b03f5f7f11d50a3a";

0 commit comments

Comments
 (0)