Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dont require office feed for UWP CI loop #2569

Merged
merged 2 commits into from
Jun 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ado/windows-vs-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
command: restore
restoreSolution: vnext/ReactWindows-UWP.sln
feedsToUse: config
nugetConfigPath: vnext/NuGet.config
nugetConfigPath: vnext/NuGet.NoOffice.config
restoreDirectory: packages/
verbosityRestore: Detailed # Options: quiet, normal, detailed

Expand All @@ -81,7 +81,7 @@ jobs:
command: restore
restoreSolution: vnext/Playground/Playground.sln
feedsToUse: config
nugetConfigPath: vnext/NuGet.config
nugetConfigPath: vnext/NuGet.NoOffice.config
restoreDirectory: packages/
verbosityRestore: Detailed # Options: quiet, normal, detailed

Expand Down
13 changes: 13 additions & 0 deletions vnext/NuGet.NoOffice.Config
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="repositoryPath" value="packages" />
</config>

<packageSources>

<add key="Nuget.org" value="https://api.nuget.org/v3/index.json" />

</packageSources>

</configuration>
2 changes: 1 addition & 1 deletion vnext/ReactWindows-UWP.sln
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
Directory.Build.props = Directory.Build.props
NuGet.Config = NuGet.Config
NuGet.Config = NuGet.NoOffice.Config
ReactUwp.nuspec = ReactUwp.nuspec
README.md = README.md
EndProjectSection
Expand Down