Unable to read manifest Properties\app.manifest

11,557

Solution 1

I fixed this by myself by deleting app.mainfest in visual studio which is showing up in properties folder.

Solution 2

Late in the party but, Actually this file is mentioned in cs.proj file and your project is looking for this file.

What I did is , I have removed app.manifest reference in my cs.proj file as it is not needed to me , added by someone.

Open your cs.proj file in notepad and remove below mentioned line

enter image description here

This did the trick for me.

Share:
11,557
JAVAC
Author by

JAVAC

Updated on June 06, 2022

Comments

  • JAVAC
    JAVAC almost 2 years

    While building a C#.net application in VS studio 2013 i am getting the following error

    Unable to read manifest Properties\app.manifest.Could not find file C:\Project\Properties\app.manifest

    In project Settings i selected option "build Project without a manifest" but still getting the same error.