Skip to content

Commit

Permalink
update from core to .net 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnathan Seal committed May 31, 2021
1 parent 5c97a7b commit c4087b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions GroceriesApi.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.2" />
<PackageReference Include="MongoDB.Driver" Version="2.10.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.3.3" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
<PackageReference Include="MongoDB.Driver" Version="2.12.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.4" />
</ItemGroup>


Expand Down
2 changes: 1 addition & 1 deletion Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
using GroceriesApi.Models;
using Microsoft.Extensions.Options;
using GroceriesApi.Services;
using NuGet.Frameworks;
//using NuGet.Frameworks;

namespace GroceriesApi
{
Expand Down

0 comments on commit c4087b9

Please sign in to comment.