質問編集履歴
1
コードの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -18,4 +18,20 @@
|
|
18
18
|
ビルドすると生成されるobjフォルダの削除
|
19
19
|
|
20
20
|
###補足情報(言語/FW/ツール等のバージョンなど)
|
21
|
-
Visual Studio 2017 Community
|
21
|
+
Visual Studio 2017 Community
|
22
|
+
|
23
|
+
###追記:エラー再現コード
|
24
|
+
名前は一部変更しています。
|
25
|
+
```XAML
|
26
|
+
<Window x:Class="Test.Gui.MainWindow"
|
27
|
+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
28
|
+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
29
|
+
xmlns:local="clr-namespace:Test.Gui">
|
30
|
+
|
31
|
+
<local:AttachableImage />
|
32
|
+
<!-- ここで↑エラーが出ます -->
|
33
|
+
</Window>
|
34
|
+
```
|
35
|
+
|
36
|
+
###追加情報
|
37
|
+
Debugビルドの出力場所を既定のフォルダから別の場所に変更しています(C++のdllのデバッグを行うため)。
|