repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
cs7034.cs
blob
071535be25371a3ae7e6a89bf9c67c2bef6d57ca
1
// CS7034: The specified version string `0.0.0.80420' does not conform to the required format - major[.minor[.build[.revision]]]
2
// Line: 7
3
4
using
System
;
5
using
System
.
Reflection
;
6
7
[
assembly
:
AssemblyVersion
(
"0.0.0.80420"
)]
8
9
public class
Test
{
10
11
public static int
Main
()
12
{
13
return
1
;
14
}
15
}