repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make csproj target work again
[mcs.git]
/
errors
/
cs0657.cs
blob
e3020d1431b1a0fca75222d281d11c21688daa0a
1
// cs0657.cs: `assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `type'
2
// Line : 7
3
4
using
System
.
Reflection
;
5
6
namespace
N
{
7
[
assembly
:
AssemblyKeyName
(
""
)]
8
class
A
{}
9
}
10