Skip to content

Commit

Permalink
Referencing Json.Net 9.0.1, fixing output folder settings, bumping ve…
Browse files Browse the repository at this point in the history
…rsion to 3.0.3 (#133)

* Referencing Json.Net 9.0.1+
* Bumping version to 3.0.3
* Fixing output folder
  • Loading branch information
abatishchev authored Aug 18, 2017
1 parent c7a7145 commit 66c6344
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/JWT/JWT.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">
<TargetFrameworkIdentifier>.NETFramework</TargetFrameworkIdentifier>
<DefineConstants>NET46</DefineConstants>
<DefineConstants>NET462</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
<TargetFrameworkIdentifier>.NETStandard</TargetFrameworkIdentifier>
Expand All @@ -20,20 +20,25 @@
<PackageProjectUrl>https://github.com/jwt-dotnet/jwt</PackageProjectUrl>
<Authors>John Sheehan, Michael Lehenbauer, Alexander Batishchev</Authors>
<PackageLicenseUrl>https://creativecommons.org/publicdomain/zero/1.0/</PackageLicenseUrl>
<Version>3.0.2</Version>
<Version>3.0.3</Version>
<PackageTags>jwt json</PackageTags>
<FileVersion>3.0.2.0</FileVersion>
<FileVersion>3.0.3.0</FileVersion>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<DocumentationFile>bin\Debug\netstandard1.3\JWT.xml</DocumentationFile>
<OutputPath>bin\Debug\netstandard1.3\</OutputPath>
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
<DocumentationFile>bin\Release\$(TargetFramework)\JWT.xml</DocumentationFile>
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
Expand Down

0 comments on commit 66c6344

Please sign in to comment.