質問編集履歴
1
プログラムファイルの名前と構成を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
|
24
24
|
|
25
|
-
```C#
|
25
|
+
```C# Program.cs
|
26
26
|
|
27
27
|
using System;
|
28
28
|
|
@@ -53,6 +53,68 @@
|
|
53
53
|
}
|
54
54
|
|
55
55
|
}
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
```
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
```AssemblyInfo.cs
|
64
|
+
|
65
|
+
using System.Reflection;
|
66
|
+
|
67
|
+
using System.Runtime.CompilerServices;
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
// Information about this assembly is defined by the following attributes.
|
72
|
+
|
73
|
+
// Change them to the values specific to your project.
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
[assembly: AssemblyTitle("hello")]
|
78
|
+
|
79
|
+
[assembly: AssemblyDescription("")]
|
80
|
+
|
81
|
+
[assembly: AssemblyConfiguration("")]
|
82
|
+
|
83
|
+
[assembly: AssemblyCompany("")]
|
84
|
+
|
85
|
+
[assembly: AssemblyProduct("")]
|
86
|
+
|
87
|
+
[assembly: AssemblyCopyright("${AuthorCopyright}")]
|
88
|
+
|
89
|
+
[assembly: AssemblyTrademark("")]
|
90
|
+
|
91
|
+
[assembly: AssemblyCulture("")]
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
96
|
+
|
97
|
+
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
98
|
+
|
99
|
+
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
[assembly: AssemblyVersion("1.0.*")]
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
// The following attributes are used to specify the signing key for the assembly,
|
110
|
+
|
111
|
+
// if desired. See the Mono documentation for more information about signing.
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
//[assembly: AssemblyDelaySign(false)]
|
116
|
+
|
117
|
+
//[assembly: AssemblyKeyFile("")]
|
56
118
|
|
57
119
|
|
58
120
|
|