Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ec82fc32
Commit
ec82fc32
authored
Aug 09, 2020
by
Carolyn Shannon
Committed by
Mike Lewis
Aug 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update GitLab NuGet Repository docs to correct future tense issues
parent
d242cf09
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
doc/user/packages/nuget_repository/index.md
doc/user/packages/nuget_repository/index.md
+8
-8
No files found.
doc/user/packages/nuget_repository/index.md
View file @
ec82fc32
...
@@ -19,7 +19,7 @@ The GitLab NuGet Repository works with:
...
@@ -19,7 +19,7 @@ The GitLab NuGet Repository works with:
## Setting up your development environment
## Setting up your development environment
You will need
[
NuGet CLI 5.2 or later
](
https://www.nuget.org/downloads
)
. Earlier versions have not been tested
[
NuGet CLI 5.2 or later
](
https://www.nuget.org/downloads
)
is required
. Earlier versions have not been tested
against the GitLab NuGet Repository and might not work. If you have
[
Visual Studio
](
https://visualstudio.microsoft.com/vs/
)
,
against the GitLab NuGet Repository and might not work. If you have
[
Visual Studio
](
https://visualstudio.microsoft.com/vs/
)
,
NuGet CLI is probably already installed.
NuGet CLI is probably already installed.
...
@@ -64,7 +64,7 @@ NOTE: **Note:**
...
@@ -64,7 +64,7 @@ NOTE: **Note:**
This option is available only if your GitLab administrator has
This option is available only if your GitLab administrator has
[
enabled support for the Package Registry
](
../../../administration/packages/index.md
)
.
[
enabled support for the Package Registry
](
../../../administration/packages/index.md
)
.
After the NuGet Repository is enabled, it will be
available for all new projects
When the NuGet Repository is enabled, it is
available for all new projects
by default. To enable it for existing projects, or if you want to disable it:
by default. To enable it for existing projects, or if you want to disable it:
1.
Navigate to your project's
**Settings > General > Visibility, project features, permissions**
.
1.
Navigate to your project's
**Settings > General > Visibility, project features, permissions**
.
...
@@ -75,7 +75,7 @@ You should then be able to see the **Packages & Registries** section on the left
...
@@ -75,7 +75,7 @@ You should then be able to see the **Packages & Registries** section on the left
## Adding the GitLab NuGet Repository as a source to NuGet
## Adding the GitLab NuGet Repository as a source to NuGet
You
will
need the following:
You need the following:
-
Your GitLab username.
-
Your GitLab username.
-
A personal access token or deploy token. For repository authentication:
-
A personal access token or deploy token. For repository authentication:
...
@@ -112,7 +112,7 @@ nuget source Add -Name "GitLab" -Source "https://gitlab.example/api/v4/projects/
...
@@ -112,7 +112,7 @@ nuget source Add -Name "GitLab" -Source "https://gitlab.example/api/v4/projects/
1.
Open
[
Visual Studio
](
https://visualstudio.microsoft.com/vs/
)
.
1.
Open
[
Visual Studio
](
https://visualstudio.microsoft.com/vs/
)
.
1.
Open the
**FILE > OPTIONS**
(Windows) or
**Visual Studio > Preferences**
(Mac OS).
1.
Open the
**FILE > OPTIONS**
(Windows) or
**Visual Studio > Preferences**
(Mac OS).
1.
In the
**NuGet**
section, open
**Sources**
. You will
see a list of all your NuGet sources.
1.
In the
**NuGet**
section, open
**Sources**
to
see a list of all your NuGet sources.
1.
Click
**Add**
.
1.
Click
**Add**
.
1.
Fill the fields with:
1.
Fill the fields with:
-
**Name**
: Desired name for the source
-
**Name**
: Desired name for the source
...
@@ -156,8 +156,8 @@ When uploading packages, note that:
...
@@ -156,8 +156,8 @@ When uploading packages, note that:
-
The maximum allowed size is 50 Megabytes.
-
The maximum allowed size is 50 Megabytes.
-
If you upload the same package with the same version multiple times, each consecutive upload
-
If you upload the same package with the same version multiple times, each consecutive upload
is saved as a separate file. When installing a package, GitLab
will serve
the most recent file.
is saved as a separate file. When installing a package, GitLab
serves
the most recent file.
-
When uploading packages to GitLab, they
will not be
displayed in the packages UI of your project
-
When uploading packages to GitLab, they
are not
displayed in the packages UI of your project
immediately. It can take up to 10 minutes to process a package.
immediately. It can take up to 10 minutes to process a package.
### Upload packages with NuGet CLI
### Upload packages with NuGet CLI
...
@@ -201,7 +201,7 @@ dotnet nuget push MyPackage.1.0.0.nupkg --source gitlab
...
@@ -201,7 +201,7 @@ dotnet nuget push MyPackage.1.0.0.nupkg --source gitlab
CAUTION:
**Warning:**
CAUTION:
**Warning:**
By default,
`nuget`
checks the official source at
`nuget.org`
first. If you have a package in the
By default,
`nuget`
checks the official source at
`nuget.org`
first. If you have a package in the
GitLab NuGet Repository with the same name as a package at
`nuget.org`
, you must specify the source
GitLab NuGet Repository with the same name as a package at
`nuget.org`
, you must specify the source
name
or the wrong package will be installed
.
name
to install the correct package
.
Install the latest version of a package using the following command:
Install the latest version of a package using the following command:
...
@@ -214,7 +214,7 @@ nuget install <package_id> -OutputDirectory <output_directory> \
...
@@ -214,7 +214,7 @@ nuget install <package_id> -OutputDirectory <output_directory> \
Where:
Where:
-
`<package_id>`
is the package ID.
-
`<package_id>`
is the package ID.
-
`<output_directory>`
is the output directory, where the package
will be
installed.
-
`<output_directory>`
is the output directory, where the package
is
installed.
-
`<package_version>`
(Optional) is the package version.
-
`<package_version>`
(Optional) is the package version.
-
`<source_name>`
(Optional) is the source name.
-
`<source_name>`
(Optional) is the source name.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment