Skip to content

Commit a927d2f

Browse files
author
Daniele Catanesi
committed
Fixed markdown formatting issues
1 parent 90aa789 commit a927d2f

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

_posts/2021-06-02-Setup-Internal-PowerShell-Repository.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,29 +49,29 @@ Once all requirements are in place open Visual Studio and create a project usin
4949
Application name is not important just avoid *NuGet* as this would create a conflict with one of the *packages* we need to install as part of the dependencies, in my example I've used **NuGetRepository** but it can really be anything
5050

5151
<figure>
52-
  <a href="https://pscustomobject.github.io//assets/images/NugetArticle/Application_Configuration.png">
53-
  <img src="/assets/images/NugetArticle/Application_Configuration.png"></a>
52+
<a href="https://pscustomobject.github.io//assets/images/NugetArticle/Application_Configuration.png">
53+
<img src="/assets/images/NugetArticle/Application_Configuration.png"></a>
5454
</figure>
5555

5656
In the screen that will appear simply select the *Empty* template and then the *Create* button
5757

5858
<figure>
59-
  <a href="https://pscustomobject.github.io//assets/images/NugetArticle/Project_Configuration.png">
60-
  <img src="/assets/images/NugetArticle/Project_Configuration.png"></a>
59+
<a href="https://pscustomobject.github.io//assets/images/NugetArticle/Project_Configuration.png">
60+
<img src="/assets/images/NugetArticle/Project_Configuration.png"></a>
6161
</figure>
6262

6363
Once project has finished loading/being created *right-click* on the project name in *solution explorer* and select **Manage NuGet Packages**
6464

6565
<figure>
66-
  <a href="https://pscustomobject.github.io//assets/images/NugetArticle/Manage_NuGet_Package.png">
67-
  <img src="/assets/images/NugetArticle/Manage_NuGet_Package.png"></a>
66+
<a href="https://pscustomobject.github.io//assets/images/NugetArticle/Manage_NuGet_Package.png">
67+
<img src="/assets/images/NugetArticle/Manage_NuGet_Package.png"></a>
6868
</figure>
6969

7070
In the *NuGetRepository* window select the *Broswe* tab and search for package **NuGet.Server** and click on the **Install** button.
7171

7272
<figure>
73-
  <a href="https://pscustomobject.github.io//assets/images/NugetArticle/Install_NuGet_Component.png">
74-
  <img src="/assets/images/NugetArticle/Install_NuGet_Component.png"></a>
73+
<a href="https://pscustomobject.github.io//assets/images/NugetArticle/Install_NuGet_Component.png">
74+
<img src="/assets/images/NugetArticle/Install_NuGet_Component.png"></a>
7575
</figure>
7676

7777
Keep I am using the latest stable release available at the time of this writing but you can select a different version of the package suiting your needs.
@@ -81,17 +81,17 @@ This step will take some time, depending on your connection speed, and a window
8181
Once the installation step is complete I highly recommend to change the build type from *Debug*, default for new projects, to *Release* as this will disable all debug logging that is otherwise enabled for the solution.
8282

8383
<figure>
84-
  <a href="https://pscustomobject.github.io//assets/images/NugetArticle/Set_Build_Type.png">
85-
  <img src="/assets/images/NugetArticle/Set_Build_Type.png"></a>
84+
<a href="https://pscustomobject.github.io//assets/images/NugetArticle/Set_Build_Type.png">
85+
<img src="/assets/images/NugetArticle/Set_Build_Type.png"></a>
8686
</figure>
8787

8888
Once this is done go to *Build / Build Solution* menu, or press F6 if you're lazy like me, to *package* together all files making up the solution.
8989

9090
This will create a folder structure, under the path previously specified, containing all files required by the solution. Project path is visible in the **Properties** window under the *Project Folder* field
9191

9292
<figure>
93-
  <a href="https://pscustomobject.github.io//assets/images/NugetArticle/Project_Path.png">
94-
  <img src="/assets/images/NugetArticle/Project_Path.png"></a>
93+
<a href="https://pscustomobject.github.io//assets/images/NugetArticle/Project_Path.png">
94+
<img src="/assets/images/NugetArticle/Project_Path.png"></a>
9595
</figure>
9696

9797
**Note:** By default solution will be build under the **C:\Users\username\source\repos\AppName\AppName\** path

0 commit comments

Comments
 (0)