投稿

7月, 2013の投稿を表示しています

gvim を 香り屋 version にしてから、作成中のHTMLを開くと 改行されずに ^M でつながった一文になった。

対処 set ff=unix で保存して、開きなおしてもなぜか dosになる? .vimrc に set fileformat=unxを記述。 問題のHTMLを開き改行コードを置換する: :%s/^M/\r/g ^Mは 「Ctrl + V」「Ctrl + M」

Fody: Could not find a weaver named 'PropertyChanged'.

症状 Fody: Could not find a weaver named 'PropertyChanged'. If you have nuget package restore turned on you probably need to do a build to download the weavers. Alternatively you may have added a weaver to your 'FodyWeavers.xml' and forgot to add the appropriate nuget package. Perhaps you need to run 'Install-Package PropertyChanged.Fody'. This url may provide more information http://nuget.org/packages/PropertyChanged.Fody/ 対処 notepad $(your_solution_dir)\nuget.config <configuration>   <config>     <add key="repositorypath" value="..\..\your_package_dir\packages" />   </config> </configuration>