WP8.1 also has a new manifest file - Package.appxmanifest - make sure you also add features there - Location. You will also need to add a file type association like Silverlight.
( , ) - Package.appxmanifest → View code , , "/":
<Extension Category="windows.fileTypeAssociation">
<FileTypeAssociation Name="text">
<DisplayName>Text file</DisplayName>
<SupportedFileTypes>
<FileType ContentType="text/file">.txt</FileType>
</SupportedFileTypes>
</FileTypeAssociation>
</Extension>
/ FileTypeAssociations .