Skip to content

Commit

Permalink
Bumped target framework to .NET 6, app version to 0.0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Whewell committed Jun 25, 2023
1 parent 58bb8f7 commit 467e649
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ them into a BaseStation format network feed.

## How to install

1. Download the .NET Core 3.1 runtime for your platform:
1. Download the .NET Core 6 runtime for your platform:

https://dotnet.microsoft.com/download/dotnet-core/3.1
https://dotnet.microsoft.com/en-us/download/dotnet/6.0

Choose the **.NET CORE RUNTIME** option. You don't need the SDK version unless you intend building the program.
Choose the **.NET RUNTIME** option. You don't need the SDK version unless you intend building the program.
Likewise the desktop version isn't necessary, although it will also work.

2. Either download the pre-compiled binaries from the releases page or compile your own build:

Expand Down Expand Up @@ -76,8 +77,8 @@ To run the application under Linux and OSX:

## Compilation Pre-requisites

You will need the latest version of Visual Studio 2019 Community edition. When you choose the components to install you need
to tick the option for **.NET desktop development**. In the **Individual Components** tab make sure that the
```.NET Core 3.1 SDK``` is ticked.
You will need the latest version of Visual Studio 2022 Community edition.

When you choose the components to install you need to tick the option for **.NET desktop development**.
In the **Individual Components** tab make sure that the `.NET 6.0 Runtime (Long Term Support)` is ticked.

Once .NET Core 3.1 is no longer the bleeding edge you might see the option called ```.NET Core 3.1 Runtime``` instead.
10 changes: 5 additions & 5 deletions opensky-to-basestation/opensky-to-basestation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>OpenSkyToBaseStation</RootNamespace>
<Authors>Andrew Whewell</Authors>
<Company />
<Description>Fetches state vectors from the Open Sky network and converts them into a network feed of BaseStation format messages</Description>
<Copyright>Copyright (C) 2020 Andrew Whewell</Copyright>
<Copyright>Copyright (C) 2020 onwards Andrew Whewell</Copyright>
<PackageProjectUrl>https://github.com/vradarserver/opensky-to-basestation</PackageProjectUrl>
<RepositoryUrl>https://github.com/vradarserver/opensky-to-basestation</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>0.0.2.0</AssemblyVersion>
<FileVersion>0.0.2.0</FileVersion>
<Version>0.0.2</Version>
<AssemblyVersion>0.0.3.0</AssemblyVersion>
<FileVersion>0.0.3.0</FileVersion>
<Version>0.0.3</Version>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageTags />
</PropertyGroup>
Expand Down

0 comments on commit 467e649

Please sign in to comment.