Skip to content

Commit

Permalink
Updated to .net8 and updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcidev committed Aug 6, 2024
1 parent 1ce7ccc commit 0cb1370
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MusicLibrary
Music library is a web application written with DotVVM framework (Asp .Net Core 7.0). Application allows listening to/downloading music and watch music videos embedded from YT which can be assigned to your music collection.
Music library is a web application written with DotVVM framework (Asp .Net Core 8.0). Application allows listening to/downloading music and watch music videos embedded from YT which can be assigned to your music collection.

## Build Status
[![Build status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2FArcidev%2FMusicLibrary%2Fbadge&style=flat-square)](https://github.com/Arcidev/MusicLibrary/actions)
Expand Down
14 changes: 7 additions & 7 deletions src/BusinessLayer.Tests/BusinessLayer.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand All @@ -13,12 +13,12 @@
</Target>

<ItemGroup>
<PackageReference Include="DotVVM.Core" Version="4.1.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="7.0.8" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.extensibility.core" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="DotVVM.Core" Version="4.2.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.7" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.extensibility.core" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
8 changes: 4 additions & 4 deletions src/BusinessLayer/BusinessLayer.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="DotVVM" Version="4.1.7" />
<PackageReference Include="DotVVM.Core" Version="4.1.7" />
<PackageReference Include="Mapster" Version="7.3.0" />
<PackageReference Include="DotVVM" Version="4.2.7" />
<PackageReference Include="DotVVM.Core" Version="4.2.7" />
<PackageReference Include="Mapster" Version="7.4.0" />
<PackageReference Include="Riganti.Utils.Infrastructure.EntityFrameworkCore" Version="2.5.1" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions src/DataLayer/DataLayer.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="8.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.7" />
<PackageReference Include="Riganti.Utils.Infrastructure.Core" Version="2.5.1" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions src/MusicLibrary/MusicLibrary.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<Target Name="WorkaroundNetStandard" AfterTargets="ResolvePackageAssets">
<ItemGroup>
Expand Down Expand Up @@ -78,13 +78,13 @@
<None Include="compilerconfig.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotVVM.AspNetCore" Version="4.1.7" />
<PackageReference Include="DotVVM.AspNetCore" Version="4.2.7" />
<PackageReference Include="Jdenticon-net" Version="3.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.8">
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />

</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/WebApiModels/WebApiModels.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 0cb1370

Please sign in to comment.