Skip to content

Commit

Permalink
Tried to move custom nuget feed to nuget.config
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasArdal committed Oct 10, 2023
1 parent d3c52c0 commit 0e04a6b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions ExceptionVisualizer.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0D984CED-0669-48B0-837D-C509C9AF3AA3}"
ProjectSection(SolutionItems) = preProject
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
nuget.config = nuget.config
README.md = README.md
EndProjectSection
EndProject
Expand Down
6 changes: 6 additions & 0 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="azure-public" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json" />
</packageSources>
</configuration>
4 changes: 2 additions & 2 deletions src/ExceptionVisualizer/ExceptionVisualizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<DefineConstants>$(DefineConstants);VISUALIZER</DefineConstants>

<!-- The VisualStudio.Extensibility preview packages are available from the azure-public/vside/msft_consumption feed -->
<RestoreAdditionalProjectSources>https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json;$(RestoreAdditionalProjectSources)</RestoreAdditionalProjectSources>
<!-- The VisualStudio.Extensibility preview packages are available from the azure-public/vside/msft_consumption feed --><!--
<RestoreAdditionalProjectSources>https://pkgs.dev.azure.com/azure-public/vside/_packaging/msft_consumption/nuget/v3/index.json</RestoreAdditionalProjectSources>-->
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 0e04a6b

Please sign in to comment.