質問編集履歴

3

プロジェクトファイルの追加

2021/07/20 07:14

投稿

Chikage_Haruse
Chikage_Haruse

スコア14

test CHANGED
File without changes
test CHANGED
@@ -71,3 +71,15 @@
71
71
  </configuration>
72
72
 
73
73
  ```
74
+
75
+
76
+
77
+ さらに追記
78
+
79
+ いよいよバージョン関係が自分でもよくわからなくなったので、プロジェクトファイルをまるまる見ていただきたいです。
80
+
81
+ GitHubに上げてあります。→[GitHub](https://github.com/chikage8640/Youtube-Live-Chat-Translater)
82
+
83
+ ご指摘でNewtonsoft.Jsonが12.0であるという指摘をいただきましたが、自分で確認する限りすべて13.0.xでそろえてあるはずなのです。
84
+
85
+ どこで間違えたのか、今後のためにもご指南いただきたいです。

2

exe.congfigの追記

2021/07/20 07:14

投稿

Chikage_Haruse
Chikage_Haruse

スコア14

test CHANGED
File without changes
test CHANGED
@@ -33,3 +33,41 @@
33
33
 
34
34
 
35
35
  どなたかご教授いただければ幸いです。
36
+
37
+
38
+
39
+ 追記
40
+
41
+ 自己解決のほうでいくつかご指摘をいただいたので、exe.configの中身も載せます。
42
+
43
+ ```xml
44
+
45
+ <?xml version="1.0" encoding="utf-8"?>
46
+
47
+ <configuration>
48
+
49
+ <startup>
50
+
51
+ <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
52
+
53
+ </startup>
54
+
55
+ <runtime>
56
+
57
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
58
+
59
+ <dependentAssembly>
60
+
61
+ <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
62
+
63
+ <bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
64
+
65
+ </dependentAssembly>
66
+
67
+ </assemblyBinding>
68
+
69
+ </runtime>
70
+
71
+ </configuration>
72
+
73
+ ```

1

2021/07/20 06:39

投稿

Chikage_Haruse
Chikage_Haruse

スコア14

test CHANGED
File without changes
test CHANGED
@@ -24,7 +24,11 @@
24
24
 
25
25
  Releaseフォルダの中に入っていたファイルをすべて(dll,xml,exe)別のフォルダに移し替えて起動してみましたが、結果は変わらずでした。
26
26
 
27
+ なおファイル名しか見ていませんが、依存しているファイルに欠落がないことを確認しています。
28
+
27
29
  その後移し替えずにReleaseフォルダの中のexeをそのまま起動しましたが、同じようにエラーが出ました。
30
+
31
+ なおローカルフォルダに発行をしたところ、autorun.infが弾かれるエラーで発行ができませんでした。
28
32
 
29
33
 
30
34