Skip to content

Commit ba5a295

Browse files
Migrate project.json to .csproj
1 parent b7bd0dd commit ba5a295

File tree

5 files changed

+38
-68
lines changed

5 files changed

+38
-68
lines changed

MakingSense.AspNetCore.Authentication.SimpleToken.sln

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26228.4
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{1A4906E1-3779-42B3-BE5D-2079B4D0C0C9}"
77
EndProject
@@ -11,13 +11,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1111
.gitattributes = .gitattributes
1212
.gitignore = .gitignore
1313
appveyor.yml = appveyor.yml
14-
global.json = global.json
1514
LICENSE = LICENSE
1615
NuGet.Config = NuGet.Config
1716
README.md = README.md
1817
EndProjectSection
1918
EndProject
20-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "MakingSense.AspNetCore.Authentication.SimpleToken", "src\MakingSense.AspNetCore.Authentication.SimpleToken\MakingSense.AspNetCore.Authentication.SimpleToken.xproj", "{209CD8C9-0545-4A2E-826D-5B83044261AF}"
19+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MakingSense.AspNetCore.Authentication.SimpleToken", "src\MakingSense.AspNetCore.Authentication.SimpleToken\MakingSense.AspNetCore.Authentication.SimpleToken.csproj", "{209CD8C9-0545-4A2E-826D-5B83044261AF}"
2120
EndProject
2221
Global
2322
GlobalSection(SolutionConfigurationPlatforms) = preSolution

global.json

Lines changed: 0 additions & 6 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Description>MakingSense.AspNetCore.Authentication.SimpleToken Class Library</Description>
5+
<VersionPrefix>1.0.5-alpha</VersionPrefix>
6+
<Authors>MakingSense</Authors>
7+
<TargetFrameworks>net451;netcoreapp1.1</TargetFrameworks>
8+
<AssemblyName>MakingSense.AspNetCore.Authentication.SimpleToken</AssemblyName>
9+
<PackageId>MakingSense.AspNetCore.Authentication.SimpleToken</PackageId>
10+
<PackageTags>ASP.NET 5;vnext;authentication;token;bearer</PackageTags>
11+
<PackageProjectUrl>https://github.com/MakingSense/aspnet-authentication-simpletoken</PackageProjectUrl>
12+
<PackageLicenseUrl>http://www.gnu.org/licenses/lgpl.html</PackageLicenseUrl>
13+
<RepositoryType>git</RepositoryType>
14+
<RepositoryUrl>git://github.com/MakingSense/aspnet-authentication-simpletoken</RepositoryUrl>
15+
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">1.1.1</RuntimeFrameworkVersion>
16+
</PropertyGroup>
17+
18+
<ItemGroup>
19+
<PackageReference Include="MakingSense.AspNetCore.Abstractions" Version="1.0.5-*" />
20+
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="1.1.1" />
21+
<PackageReference Include="Microsoft.CSharp" Version="4.3.0" />
22+
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="5.1.0" />
23+
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
24+
<PackageReference Include="System.Linq" Version="4.3.0" />
25+
<PackageReference Include="System.Threading" Version="4.3.0" />
26+
</ItemGroup>
27+
28+
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
29+
<PackageReference Include="System.Collections" Version="4.3.0" />
30+
<PackageReference Include="System.Runtime" Version="4.3.0" />
31+
<Reference Include="System" />
32+
<Reference Include="Microsoft.CSharp" />
33+
</ItemGroup>
34+
35+
</Project>

src/MakingSense.AspNetCore.Authentication.SimpleToken/MakingSense.AspNetCore.Authentication.SimpleToken.xproj

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/MakingSense.AspNetCore.Authentication.SimpleToken/project.json

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)