336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
왜 기본 옵션에 없는지
출처 : http://mattperdeck.com/post/Copying-linked-content-files-at-each-build-using-MSBuild.aspx
정리
.csproj 파일 열어서 xml <Project> 요기에 </Project>
<Target Name="CopyLinkedContentFiles" BeforeTargets="Build">
<Copy SourceFiles="%(Content.Identity)"
DestinationFiles="%(Content.Link)"
SkipUnchangedFiles='true'
OverwriteReadOnlyFiles='true'
Condition="'%(Content.Link)' != ''" />
</Target>
추가
'글 > 코딩' 카테고리의 다른 글
centos 6.x node 4.x 설치 (0) | 2016.11.02 |
---|---|
boost fusion을 이용한 멤버기반 class 복사하기 (0) | 2016.08.24 |
ptthread 관련 링크 (0) | 2015.01.28 |
nginx 설치 정리 (0) | 2013.04.17 |
C# Amazon S3Region 의미 (0) | 2013.04.16 |