Hi!I am trying to export some metadata.For this I want to use following code:xml.SaveAsFile(path_xslt, "", false, ref path);
path_xslt includes the path to the xslt-File. I want this File to be included in the Add-In.I found the following in the concepts for Add-Ins:You can create additional folders and files under the Install folder. This is useful in cases where you want to ship data as part of your add-in. If you're adding data through your Visual Studio project, set the Copy to Output Directory property to the Copy always setting as shown in the following screen shot:
So I set the Copy to Output Directory property to "Copy always" and the Build Action to "AddInContent".I am not really sure whether this is right.
Which is the correct way to embed my file? And on which path can I access that file?