2015年11月3日 / kirito / 0 Comments
If you want to use an Ethernet address(like 192.168.0.1) to send http request, you may meet the error:
A network capability is required to access this network resource.
So the solution here:
Package.appxmanifest -> Capabilities tab -> Check Private Networks (Client & Server) capability.
2015年9月29日 / kirito / 0 Comments
Library Folders:
KnownFolders.AppCaptures
KnownFolders.CameraRoll
KnownFolders.DocumentsLibrary
KnownFolders.HomeGroup
KnownFolders.MediaServerDevices
KnownFolders.MusicLibrary
KnownFolders.Objects3D
KnownFolders.Playlists
KnownFolders.RecordedCalls
KnownFolders.RemovableDevices
KnownFolders.SavedPictures
KnownFolders.VideosLibrary
Local Data Folder:
ApplicationData.Current.LocalFolder
Installation Folder:
Windows.ApplicationModel.Package.Current.InstalledLocation
2015年9月21日 / kirito / 0 Comments
Because your csproj configuration may not correct configured.
Open the csproj file(project file) with text, make sure
|
<UseDotNetNativeToolchain>false</UseDotNetNativeToolchain> |
is TRUE, that’s it.