output-directory

How can I open a file I've added to my Windows Store App project programatically?

﹥>﹥吖頭↗ 提交于 2020-01-04 02:32:51
问题 I want to load a PDF file in response to a Tapped event. I added the file to my project (Add > Existing Item), set "Build Action" to "Content" and "Copy to Output Directory" to "Copy if newer" I'm thinking the code I need may be something like this: async Task LoadTutorial() { await Launcher.LaunchUriAsync(new Uri("what should be here to access the output folder?")); } If I'm right, what do I need to pass as the Uri? Otherwise, how is this accomplished? UPDATE On a related note, to add an

SBT Scaladoc Configuration

给你一囗甜甜゛ 提交于 2020-01-02 01:10:14
问题 I'm trying to configure the Scaladoc in SBT, specifically the title, output directory and classpath. I managed to define the title by adding the following to build.sbt: scalacOptions in (Compile, doc) ++= Opts.doc.title("Scala-Tools") I can't figure out how to change the doc output directory. I also can't figure out how to add jars to classpath. The reason I want to edit the classpath is because it appears the standard Scala library is not getting picked up by scaladoc when I refer to its

SBT Scaladoc Configuration

∥☆過路亽.° 提交于 2019-12-05 01:21:45
I'm trying to configure the Scaladoc in SBT, specifically the title, output directory and classpath. I managed to define the title by adding the following to build.sbt: scalacOptions in (Compile, doc) ++= Opts.doc.title("Scala-Tools") I can't figure out how to change the doc output directory. I also can't figure out how to add jars to classpath. The reason I want to edit the classpath is because it appears the standard Scala library is not getting picked up by scaladoc when I refer to its classes, i.e. [[scala.Option]] leads to a warning "Could not find any member to link for "scala.Option"."