From 70dcb7c21d2a9ae351dc88b4433a92aa7a3f719e Mon Sep 17 00:00:00 2001 From: MiYanni Date: Tue, 2 Oct 2018 10:01:15 -0700 Subject: [PATCH 1/2] If I understand this, https://docs.myget.org/docs/reference/symbols, if you include a symbol source and api key, it should pick up the symbol packages by naming convention, and publish them appropriately. --- build/publish.proj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/publish.proj b/build/publish.proj index 7202f0030a..b47e9a909e 100644 --- a/build/publish.proj +++ b/build/publish.proj @@ -20,9 +20,9 @@ - + - + [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri 'https://api.github.com/repos/Azure/azure-powershell-common/releases' -Headers @{ 'Authorization' = 'Token $(GitHubAccessToken)' } -Method Post -Body (ConvertTo-Json @{ 'tag_name' = '$(ReleaseVersion)'; 'target_commitish' = '$(CommitId)'; 'name' = '$(ReleaseVersion)'; 'body' = 'Azure PowerShell Common version $(ReleaseVersion)'; 'draft' = $false; 'prerelease' = $false }) From 562f35746d392e663ba6b1dac9189b04ae93a5d8 Mon Sep 17 00:00:00 2001 From: MiYanni Date: Thu, 11 Oct 2018 17:22:42 -0700 Subject: [PATCH 2/2] Added README information for acquiring symbols in VS. --- build/README.md | 4 ++++ src/README.md | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 build/README.md diff --git a/build/README.md b/build/README.md new file mode 100644 index 0000000000..300dbf748b --- /dev/null +++ b/build/README.md @@ -0,0 +1,4 @@ +# Build + +## Purpose +This folder contains the MSBuild `.proj` files for running certain build configurations in this repository. diff --git a/src/README.md b/src/README.md index 2443e6637f..30f122e2dd 100644 --- a/src/README.md +++ b/src/README.md @@ -8,4 +8,9 @@ All dependencies for all projects are managed within the `src` folder for this r - Use NuGet package manager within Visual Studio [`Right click project -> Manage NuGet Packages...`] to add/update/remove dependencies for any project ### How to add/update dependencies -- TODO: Add this information \ No newline at end of file +- TODO: Add this information + +## Acquiring Symbols in Visual Studio +We publish the symbols for this repository to our MyGet feed. The URL for our symbols MyGet feed is: https://www.myget.org/F/azure-powershell/symbols/ + +To add this feed to your Visual Studio, please follow the steps here: https://docs.myget.org/docs/reference/symbols#Consuming_symbol_packages_in_Visual_Studio \ No newline at end of file