Stores downloaded NuGet packages (.nupkg).
~/.local/share/NuGet/Cache ~/.nuget/packages
Windows 8 Store App and Windows UWP App location: C:\Users<user>\AppData\Local\Packages
Specifying Framework Assembly References (GAC)
In some cases, a package may depend on an assembly that’s in the .NET Framework. Strictly speaking, it’s not always necessary that the consumer of your package reference the framework assembly. But in some cases, it is important, such as when the developer needs to code against types in that assembly in order to use your package. The element, a child element of the metadata element, allows you to specify a set of frameworkAssembly elements pointing to a Framework assembly in the GAC. Note the emphasis on Framework assembly. These assemblies are not included in your package as they are assumed to be on every machine as part of the .NET Framework.
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.ServiceModel" targetFramework="net40" />
<frameworkAssembly assemblyName="System.SomethingElse" />
</frameworkAssemblies>
Demystifying HttpClient APIs in the Universal Windows Platform
API OS Versions Supported Languages
How Do I Declare A Block in Objective-C? http://goshdarnblocksyntax.com/
Xcode Key Binging & Gestures http://nshipster.com/xcode-key-bindings-and-gestures/
Objective-C style guides
Google's Obj-C style guide: https://google.github.io/styleguide/objcguide.xml
Goal | Keyboard Shortcut |
---|---|
Jump to the Address Bar | Alt + d or F6 |
Search from anywhere on the page | Ctrl + k or Ctrl + e |
Open the Menu | Alt + f or Alt + e orF10 |
Open a link in new background tab | Ctrl + Click a link |
Open a link, and jump to it | Ctrl + Shift + Click a link |
Download the target of a link | Alt + Click a link |
MSDN: Live SDK Scopes and permissions
Scope | Description |
---|---|
wl.offline_access | The ability of an app to read and update a user's info at any time. Without this scope, an app can access the user's info only while the user is signed in to Live Connect and is using your app. |
wl.signin | Single sign-in behavior. With single sign-in, users who are already signed in to Live Connect are also signed in to your website. |
wl.basic | Read access to a user's basic pr |
# switch to azure service manager | |
azure config mode asm | |
# list all your azure account | |
azure account list | |
# download you publishsettings file from azure portal | |
azure account download | |
# import publishsettings file |
Copy-Item
https://technet.microsoft.com/en-us/library/ee156818.aspx
Copy-Item c:\source\file.txt c:\destination