Update relative links to sections in the contributing guide doc to fix link verification (#1955)
* Update relative links to sections in the contributing guide doc to fix link verification * Make some source code change modifications to trigger GenerateRelease CI steps * Don't use relative paths in links, instead use the full path from master to be consistent with other places
This commit is contained in:
parent
a6350f5c81
commit
9f4b389f4d
@ -48,13 +48,13 @@ Codespaces is new technology that allows you to use a container as your developm
|
||||
### GitHub Codespaces
|
||||
|
||||
1. From the Azure SDK GitHub repo, click on the "Code -> Open with Codespaces" button.
|
||||
1. Open a Terminal. The development environment will be ready for you. Continue to [Building and Testing](#building-and-Testing).
|
||||
1. Open a Terminal. The development environment will be ready for you. Continue to [Building and Testing](https://github.com/Azure/azure-sdk-for-cpp/blob/master/CONTRIBUTING.md#building-and-testing).
|
||||
|
||||
#### VS Code Codespaces
|
||||
|
||||
1. Install the [VS Code Remote Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack)
|
||||
1. When you open the Azure SDK for C++ repo in VS Code, it will prompt you to open the project in the Dev Container. If it does not prompt you, then hit CTRL+P, and select "Remote-Containers: Open Folder in Container..."
|
||||
1. Open a Terminal. The development environment will be ready for you. Continue to [Building and Testing](#building-and-Testing).
|
||||
1. Open a Terminal. The development environment will be ready for you. Continue to [Building and Testing](https://github.com/Azure/azure-sdk-for-cpp/blob/master/CONTRIBUTING.md#building-and-testing).
|
||||
|
||||
### Full Local Setup
|
||||
|
||||
|
||||
@ -8,8 +8,8 @@ using time_point = std::chrono::system_clock::time_point;
|
||||
|
||||
Context& Azure::Core::Context::GetApplicationContext()
|
||||
{
|
||||
static Context ctx;
|
||||
return ctx;
|
||||
static Context context;
|
||||
return context;
|
||||
}
|
||||
|
||||
time_point Azure::Core::Context::CancelWhen() const
|
||||
|
||||
Loading…
Reference in New Issue
Block a user