1

I came accross a problem when integrating CKFinder for standalone use in ASP.Net MVC 3

I follow those steps:

  1. Reference the CKFinder.dll in the project
  2. Copy all the CKFinder files into my project(http://ckfinder.com/download, asp.net section)
  3. Copy Standalone.aspx in the root of the project.

However, when I compile, many errors related to the attributs, they are doubled in AssemblyInfos.cs files

Example one of the error message: attribut guid is in double...

Do you have any ideas how to fix the problems ?

tereško
  • 58,060
  • 25
  • 98
  • 150
dtjmsy
  • 2,664
  • 9
  • 42
  • 62

1 Answers1

1

Had the same problem - I resolved it by excluding the '_source' directory from the CKFinder root directory. Compiled with no problems.

I also added the 'System.Design' namespace as well...

Marijn
  • 10,367
  • 5
  • 59
  • 80
ed13
  • 349
  • 5
  • 19
  • @ed when i excluding _source its creating some other issue. _source folder is not necessary for mvc project ? – SivaRajini Jun 11 '14 at 10:12