2011-11-21 4 views
-3

솔루션을 빌드 할 때 오류 패널에 오류가 표시됩니다. 하지만 오류를 이해하지 못하고 실제 문제는 내가 오류 라인을 데려 가지 않는 오류를 클릭 할 때입니다.Visual Studio에서 오류를 찾으십시오.

오류 테이블에서 파일, 줄, 열 및 프로젝트 필드는 비어 있습니다. 그럼 어떻게하면 문제가있는 곳을 찾을 수 있습니까?

나는 이미 단어 "틱"에 대한 연구를하고 아무것도

enter image description here

+1

내 생각 엔 당신이 슬라이더를 사용하고 당신이 잘못 속성 중 하나를 설정하는 것이 될 것이다. – mydogisbox

+4

처음 몇 개의 Google 히트는 무엇을 말합니까? [Here] (http://runtingsproper.blogspot.com/2010/03/solved-error-1-ticks-must-be-between.html), [여기] (http://www.k2underground.com/forums) /t/9079.aspx), [여기] (http://stackoverflow.com/questions/2496148/compile-error-ticks-must-be-between-datetime-minvalue-ticks-and-datetime-maxval). 솔루션에 대한 정보 (프로젝트의 종류 등)가 좋을 것입니다. – CodeCaster

+1

가능한 [컴파일 오류 : 틱 수는 DateTime.MinValue.Ticks와 DateTime.MaxValue.Ticks 사이 여야합니다. 매개 변수 이름 : 틱스] (http://stackoverflow.com/questions/2496148/compile-error-ticks-must-be-between-datetime-minvalue-ticks-and-datetime-maxval) – Nasreddine

답변

1

흠, 꽤 이상한 발견하지 않았다. 이 blog post를 참조하십시오

How I Solved It After getting pretty annoyed because I was on the clock I made a backup of the site and decided to delete files until the dodgy file showed its face.

I used the following heuristic to do this:

1.Switch to the Output tab and see what the last folder was which was compiled before it borked. 2.Delete that folder. 3.Recompile 4.Keep repeating steps 1 to 3 until the site compiles 5.When it compiles start bringing back individual files in the last batch you deleted until you find the offending file For me it turned out to be a single .jpg which when viewed in explorer with View Details had an empty "Date Modified".

I opened it up in Photoshop and saved it out again and this fixed the problem.

관련 문제