Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions QuickbaseNet/QuickbaseNet.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net48</TargetFrameworks>
<IsPublishable>True</IsPublishable>
<InternalsVisibleTo>QuickbaseNet.UnitTests</InternalsVisibleTo>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net48</TargetFrameworks>
<IsPublishable>True</IsPublishable>
<InternalsVisibleTo>QuickbaseNet.UnitTests</InternalsVisibleTo>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<!-- Conditionally include Microsoft.CSharp for frameworks that require it -->
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'netstandard2.1' OR '$(TargetFramework)' == 'net48'">
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>

<PropertyGroup>
<PackageId>QuickbaseNet</PackageId>
Expand All @@ -24,4 +29,4 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

</Project>
</Project>