Skip to content

Commit

Permalink
updated docs for updating nuget deps (#1296)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkylstad authored Nov 28, 2023
1 parent 098b248 commit bc3abe2
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
28 changes: 28 additions & 0 deletions content/app/maintainance/dependencies/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,32 @@ These references must be updated to get the latest version
With this extension you can view what the latest version of all dependencies when you open App.csproj (the extension also supports npm).
{{% /panel%}}

{{<content-version-selector classes="border-box">}}

{{<content-version-container version-label="v7.0.0 and newer">}}

- Locate the references to the libraries used in your app. The references are located in `App/App.csproj`.

Example.:

```xml
<ItemGroup>
<PackageReference Include="Altinn.App.Api" Version="7.15.1" />
<PackageReference Include="Altinn.App.Core" Version="7.15.1" />
</ItemGroup>
```

- Check if a new version of the libraries are published:
- [Altinn.App.Api](https://www.nuget.org/packages/Altinn.App.Api)
- [Altinn.App.Core](https://www.nuget.org/packages/Altinn.App.Core)
- Update the reference to the latest version and save the file.
- Check if there is any [breaking changes](/community/changelog/app-nuget) with the new version,
make necessary changes if there are any issues.
- Build and deploy a new version of your app.
{{</content-version-container>}}

{{<content-version-container version-label="v6.1.0 and older">}}

- Locate the references to the libraries used in your app. The references are located in `App/App.csproj`.

Example.:
Expand All @@ -49,6 +75,8 @@ Example.:
make necessary changes if there are any issues.
- Build and deploy a new version of your app.

{{</content-version-container>}}
{{</content-version-selector>}}

## App frontend

Expand Down
31 changes: 31 additions & 0 deletions content/app/maintainance/dependencies/_index.nb.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,34 @@ bibliotekene, og disse referansene må oppdateres for å hente inn siste versjon
Da kan du automatisk se hva som er nyeste versjon av alle pakker når du åpner App.csproj. Støtter også npm.
{{% /panel%}}

{{<content-version-selector classes="border-box">}}

{{<content-version-container version-label="v7.0.0 og nyere">}}

- Finn fram referansene til bibliotekene i appen. Referansene til biblioteker ligger i filen `App/App.csproj` i appens repo.

F.eks.:

```xml
<ItemGroup>
<PackageReference Include="Altinn.App.Api" Version="7.15.1" />
<PackageReference Include="Altinn.App.Core" Version="7.15.1" />
</ItemGroup>
```

- Sjekk om det har kommet en oppdatert versjon av bibliotekene:
- [Altinn.App.Api](https://www.nuget.org/packages/Altinn.App.Api)
- [Altinn.App.Core](https://www.nuget.org/packages/Altinn.App.Core)
- Oppdater de aktuelle referansene til den siste versjonen og lagre filen.
- Sjekk om det er noen [breaking changes](/nb/community/changelog/app-nuget) ifm endringer i bibliotekene,
og gjør ev. endringer som beskrives for å løse ev. problemer. Dette gjelder når det er _major_-versjonen (det første
tallet i versjonen) som er oppdatert.
- Bygg og deploy appen på nytt.

{{</content-version-container>}}

{{<content-version-container version-label="v6.1.0 og eldre">}}

- Finn fram referansene til bibliotekene i appen. Referansene til biblioteker ligger i filen `App/App.csproj` i appens repo.

F.eks.:
Expand All @@ -48,6 +76,9 @@ F.eks.:
og gjør ev. endringer som beskrives for å løse ev. problemer.
- Bygg og deploy appen på nytt.

{{</content-version-container>}}
{{</content-version-selector>}}


## App frontend

Expand Down

0 comments on commit bc3abe2

Please sign in to comment.