Skip to content

Commit

Permalink
#9 Update to .net core 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Moening committed Sep 26, 2019
1 parent f593b87 commit 5339675
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 5 additions & 1 deletion YNAB.SDK.Tests/YNAB.SDK.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
<PackageReference Include="Stubbery" Version="2.2.0" />
Expand Down
11 changes: 8 additions & 3 deletions YNAB.SDK/YNAB.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,24 @@
<PackageDescription>A YNAB client that allows you to interact with the YNAB Rest API easily within a .NET Core application</PackageDescription>
<PackageId>YNAB.SDK</PackageId>
<PackageTags>ynab;api;client;dotnetcore;sdk</PackageTags>
<Version>1.1.0</Version>
<Version>1.2.0</Version>
<Authors>Jake Moening</Authors>
<PackageProjectUrl>https://github.com/jaboc83/ynab-sdk-dotnetcore</PackageProjectUrl>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
<RootNamespace>YNAB.SDK</RootNamespace>
<Copyright>2019 Jake Moening</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0" />
<PackageReference Include="RestSharp" Version="106.6.10" />
<None Include="../icon.png">
<Pack>True</Pack>
Expand Down

0 comments on commit 5339675

Please sign in to comment.