All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aspnetcore.2.1.README.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
# {{packageName}} - ASP.NET Core {{aspnetCoreVersion}} Server

{{#appDescriptionWithNewLines}}
{{{.}}}
{{/appDescriptionWithNewLines}}

## Upgrade NuGet Packages

NuGet packages get frequently updated.

To upgrade this solution to the latest version of all NuGet packages, use the dotnet-outdated tool.


Install dotnet-outdated tool:

```
dotnet tool install --global dotnet-outdated-tool
```

Upgrade only to new minor versions of packages

```
dotnet outdated --upgrade --version-lock Major
```

Upgrade to all new versions of packages (more likely to include breaking API changes)

```
dotnet outdated --upgrade
```


## Run

Linux/OS X:

```
sh build.sh
```

Windows:

```
build.bat
```
{{^isLibrary}}
## Run in Docker

```
cd {{sourceFolder}}/{{packageName}}
docker build -t {{dockerTag}} .
docker run -p 5000:8080 {{dockerTag}}
```
{{/isLibrary}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy