Skip to content

Commit 106287b

Browse files
Merge pull request #488: nuget.config: drop internal feed
We don't need this feed, and it is causing build problems during release.
2 parents f0e862e + 5241133 commit 106287b

6 files changed

Lines changed: 1 addition & 13 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
dotnet new classlib -n Scalar.GitInstaller
6969
cd Scalar.GitInstaller
7070
cp ../../scalar/nuget.config .
71-
dotnet add Scalar.GitInstaller.csproj package "GitFor${BUILD_PLATFORM}.GVFS.Installer" --package-directory . --version "$GIT_VERSION"
71+
dotnet add Scalar.GitInstaller.csproj package "GitFor${BUILD_PLATFORM}.GVFS.Installer" --package-directory . --version "$GIT_VERSION" --source "https://pkgs.dev.azure.com/gvfs/ci/_packaging/Dependencies/nuget/v3/index.json"
7272
7373
- name: Install Git (Linux)
7474
if: runner.os == 'Linux'

Dependencies.props

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
<PackageReference Update="Newtonsoft.Json" Version="12.0.2" />
99
<PackageReference Update="NuGet.CommandLine" Version="5.4.0" />
1010
<PackageReference Update="NuGet.Commands" Version="5.4.0" />
11-
<PackageReference Update="GitForWindows.GVFS.Installer" Version="$(GitPackageVersion)" />
12-
<PackageReference Update="GitForMac.GVFS.Installer" Version="$(GitPackageVersion)" />
13-
<PackageReference Update="GitForLinux.GVFS.Installer" Version="$(GitPackageVersion)" />
1411

1512
<!-- Build-only dependencies -->
1613
<PackageReference Update="MicroBuild.Core" Version="0.2.0" PrivateAssets="all" />

Scalar.Common/Scalar.Common.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
<PackageReference Include="NuGet.Commands" />
1313
<PackageReference Include="Microsoft.PowerShell.SDK" />
1414
<PackageReference Include="Microsoft.Windows.Compatibility" />
15-
<PackageReference Include="GitForWindows.GVFS.Installer" PrivateAssets="all" />
16-
<PackageReference Include="GitForMac.GVFS.Installer" PrivateAssets="all" />
17-
<PackageReference Include="GitForLinux.GVFS.Installer" PrivateAssets="all" />
1815
</ItemGroup>
1916

2017
<ItemGroup>

Scalar.Installer.Mac/Scalar.Installer.Mac.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616
<ProjectReference Include="..\Scalar\Scalar.csproj" />
1717
</ItemGroup>
1818

19-
<ItemGroup>
20-
<PackageReference Include="GitForMac.GVFS.Installer" />
21-
</ItemGroup>
22-
2319
<!-- Only create the installer when running on macOS -->
2420
<Target Name="BuildInstaller" AfterTargets="Publish" Condition="'$(OSPlatform)' == 'osx'" >
2521
<!-- Ensure all projects have been published with the correct runtime identifier and configuration -->

Scalar.Installer.Windows/Scalar.Installer.Windows.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="GitForWindows.GVFS.Installer" />
2423
<PackageReference Include="Tools.InnoSetup" />
2524
</ItemGroup>
2625

nuget.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<configuration>
33
<packageSources>
44
<clear />
5-
<add key="Dependencies" value="https://pkgs.dev.azure.com/gvfs/ci/_packaging/Dependencies/nuget/v3/index.json" />
65
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
76
</packageSources>
87
</configuration>

0 commit comments

Comments
 (0)