Skip to content

Commit 43e55a7

Browse files
committed
OAuthWebSample - migrated to PackageReference
1 parent 188bfae commit 43e55a7

File tree

2 files changed

+15
-60
lines changed

2 files changed

+15
-60
lines changed

OAuthWebSample/OAuthWebSample/OAuthWebSample.csproj

Lines changed: 15 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -40,6 +40,20 @@
4040
<ErrorReport>prompt</ErrorReport>
4141
<WarningLevel>4</WarningLevel>
4242
</PropertyGroup>
43+
<ItemGroup>
44+
<PackageReference Include="Antlr" Version="3.4.1.9004" />
45+
<PackageReference Include="bootstrap" Version="3.0.0" />
46+
<PackageReference Include="jQuery" Version="1.10.2" />
47+
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.0.0" />
48+
<PackageReference Include="Microsoft.AspNet.Razor" Version="3.0.0" />
49+
<PackageReference Include="Microsoft.AspNet.Web.Optimization" Version="1.1.1" />
50+
<PackageReference Include="Microsoft.AspNet.WebPages" Version="3.0.0" />
51+
<PackageReference Include="Microsoft.Web.Infrastructure" Version="1.0.0.0" />
52+
<PackageReference Include="Modernizr" Version="2.6.2" />
53+
<PackageReference Include="Newtonsoft.Json" Version="5.0.6" />
54+
<PackageReference Include="Respond" Version="1.2.0" />
55+
<PackageReference Include="WebGrease" Version="1.5.2" />
56+
</ItemGroup>
4357
<ItemGroup>
4458
<Reference Include="Microsoft.CSharp" />
4559
<Reference Include="System" />
@@ -62,53 +76,10 @@
6276
<Reference Include="System.Configuration" />
6377
<Reference Include="System.Web.Services" />
6478
<Reference Include="System.EnterpriseServices" />
65-
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
66-
<Private>True</Private>
67-
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
68-
</Reference>
6979
<Reference Include="System.Net.Http">
7080
</Reference>
7181
<Reference Include="System.Net.Http.WebRequest">
7282
</Reference>
73-
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
74-
<Private>True</Private>
75-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.0.0\lib\net45\System.Web.Helpers.dll</HintPath>
76-
</Reference>
77-
<Reference Include="System.Web.Mvc, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
78-
<Private>True</Private>
79-
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.0.0\lib\net45\System.Web.Mvc.dll</HintPath>
80-
</Reference>
81-
<Reference Include="System.Web.Optimization">
82-
<HintPath>..\packages\Microsoft.AspNet.Web.Optimization.1.1.1\lib\net40\System.Web.Optimization.dll</HintPath>
83-
</Reference>
84-
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
85-
<Private>True</Private>
86-
<HintPath>..\packages\Microsoft.AspNet.Razor.3.0.0\lib\net45\System.Web.Razor.dll</HintPath>
87-
</Reference>
88-
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
89-
<Private>True</Private>
90-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.0.0\lib\net45\System.Web.WebPages.dll</HintPath>
91-
</Reference>
92-
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
93-
<Private>True</Private>
94-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.0.0\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
95-
</Reference>
96-
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
97-
<Private>True</Private>
98-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.0.0\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
99-
</Reference>
100-
<Reference Include="Newtonsoft.Json">
101-
<Private>True</Private>
102-
<HintPath>..\packages\Newtonsoft.Json.5.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
103-
</Reference>
104-
<Reference Include="WebGrease">
105-
<Private>True</Private>
106-
<HintPath>..\packages\WebGrease.1.5.2\lib\WebGrease.dll</HintPath>
107-
</Reference>
108-
<Reference Include="Antlr3.Runtime">
109-
<Private>True</Private>
110-
<HintPath>..\packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll</HintPath>
111-
</Reference>
11283
</ItemGroup>
11384
<ItemGroup>
11485
<Folder Include="App_Data\" />
@@ -164,7 +135,6 @@
164135
<Content Include="fonts\glyphicons-halflings-regular.woff" />
165136
<Content Include="fonts\glyphicons-halflings-regular.ttf" />
166137
<Content Include="fonts\glyphicons-halflings-regular.eot" />
167-
<Content Include="packages.config" />
168138
</ItemGroup>
169139
<PropertyGroup>
170140
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>

OAuthWebSample/OAuthWebSample/packages.config

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

0 commit comments

Comments
 (0)