質問編集履歴
1
app.configの追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -17,6 +17,18 @@
|
|
17
17
|
Close();
|
18
18
|
}
|
19
19
|
```
|
20
|
+
app.config
|
21
|
+
```
|
22
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
23
|
+
<configuration>
|
24
|
+
<startup>
|
25
|
+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
|
26
|
+
</startup>
|
27
|
+
<appSettings>
|
28
|
+
<add key="SVName" value="value1" />
|
29
|
+
</appSettings>
|
30
|
+
</configuration>
|
31
|
+
```
|
20
32
|
|
21
33
|
### 試したこと
|
22
34
|
|