Skip to content

Commit

Permalink
Merge pull request #8 from idubnori/netcore22
Browse files Browse the repository at this point in the history
Upgraded to net core 2.2
  • Loading branch information
idubnori authored Jun 23, 2019
2 parents e461da0 + 1985933 commit 1d076f1
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ shairport-sync --pipe=/tmp/shairport-sync-metadata
Browse ```http://<Pi HostName>:5000/```<br>

## How to Build
Install [NET Core 2.1 SDK](https://www.microsoft.com/net/download/).
Install [NET Core 2.2 SDK](https://www.microsoft.com/net/download/).
#### VisualStudio / Rider
Open `TrackInfoReader.sln`. And Build it.
#### Console
Expand All @@ -80,7 +80,7 @@ dotnet publish -c Release -r linux-arm
```

## License
ShairportSync.TrackInfoReader is Copyright © 2018 idubnori under the [MIT License](./LICENSE).
ShairportSync.TrackInfoReader is Copyright © 2019 idubnori under the [MIT License](./LICENSE).

#### Dependencies
- `build.cake` is based on [EventFlow](https://github.com/eventflow/EventFlow)
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### New in 0.3 (not released yet)
* Clean up CI script
* Upgraded to .NET Core 2.2 and reference packages to the latest version

### New in 0.2.31 (released 2018-09-13)
* Updated reference packages to the latest
Expand Down
4 changes: 2 additions & 2 deletions examples/ConsoleViewer/ConsoleViewer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp2.2</TargetFramework>
<Authors>idubnori</Authors>
<Company />
<Product />
Expand All @@ -17,7 +17,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug-Linux|AnyCPU'" />
<ItemGroup>
<PackageReference Include="System.Reactive" Version="4.1.1" />
<PackageReference Include="System.Reactive" Version="4.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\TrackInfoReader\TrackInfoReader.csproj" />
Expand Down
10 changes: 5 additions & 5 deletions examples/WebViewer/WebViewer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SccLocalPath>SAK</SccLocalPath>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp2.2</TargetFramework>
<Authors>idubnori</Authors>
<Company />
<Product />
Expand All @@ -16,10 +16,10 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug-Linux|AnyCPU'" />
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5" />
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.0.4" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
<PackageReference Include="System.Reactive" Version="4.1.1" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.5" />
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
<PackageReference Include="System.Reactive" Version="4.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\TrackInfoReader\TrackInfoReader.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion src/TrackInfoReader/TrackInfoReader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ i.e. works on Raspberry Pi 2 / 3, Mac, Linux, etc.
<DocumentationFile>bin\Release\netstandard2.0\ShairportSync.TrackInfoReader.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Reactive" Version="4.1.1" />
<PackageReference Include="System.Reactive" Version="4.1.5" />
</ItemGroup>
</Project>
14 changes: 7 additions & 7 deletions tests/TrackInfoReader.Tests/TrackInfoReader.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
<Configurations>Debug;Release;Debug-Linux</Configurations>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp2.2</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug-Linux|AnyCPU'">
<DefineConstants>TRACE;DEBUG_LINUX;NETCOREAPP2_0;</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
<PackageReference Include="Microsoft.Reactive.Testing" Version="4.1.1" />
<PackageReference Include="System.Reactive" Version="4.1.1" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0">
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.1" />
<PackageReference Include="Microsoft.Reactive.Testing" Version="4.1.5" />
<PackageReference Include="System.Reactive" Version="4.1.5" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 1d076f1

Please sign in to comment.