Skip to content

Commit 9ca09f0

Browse files
author
Jake Ginnivan
committed
Installed packages required for testing WebApi and Mvc Conventions
1 parent 9eeb50e commit 9ca09f0

File tree

46 files changed

+69129
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+69129
-0
lines changed

TestAssembly/TestAssembly.csproj

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,31 @@
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
3232
<ItemGroup>
33+
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
34+
<Private>True</Private>
35+
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
36+
</Reference>
37+
<Reference Include="Newtonsoft.Json">
38+
<HintPath>..\packages\Newtonsoft.Json.4.5.11\lib\net40\Newtonsoft.Json.dll</HintPath>
39+
</Reference>
3340
<Reference Include="System" />
3441
<Reference Include="System.Core" />
42+
<Reference Include="System.Net.Http, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
43+
<HintPath>..\packages\Microsoft.Net.Http.2.0.20710.0\lib\net40\System.Net.Http.dll</HintPath>
44+
</Reference>
45+
<Reference Include="System.Net.Http.Formatting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
46+
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.4.0.30506.0\lib\net40\System.Net.Http.Formatting.dll</HintPath>
47+
</Reference>
48+
<Reference Include="System.Net.Http.WebRequest, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
49+
<HintPath>..\packages\Microsoft.Net.Http.2.0.20710.0\lib\net40\System.Net.Http.WebRequest.dll</HintPath>
50+
</Reference>
51+
<Reference Include="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
52+
<HintPath>..\packages\Microsoft.AspNet.WebApi.Core.4.0.30506.0\lib\net40\System.Web.Http.dll</HintPath>
53+
</Reference>
54+
<Reference Include="System.Web.Http.WebHost, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
55+
<HintPath>..\packages\Microsoft.AspNet.WebApi.WebHost.4.0.30506.0\lib\net40\System.Web.Http.WebHost.dll</HintPath>
56+
</Reference>
57+
<Reference Include="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
3558
<Reference Include="System.Xml.Linq" />
3659
<Reference Include="System.Data.DataSetExtensions" />
3760
<Reference Include="Microsoft.CSharp" />
@@ -55,6 +78,9 @@
5578
<Compile Include="Properties\AssemblyInfo.cs" />
5679
<Compile Include="SomeDto.cs" />
5780
</ItemGroup>
81+
<ItemGroup>
82+
<None Include="packages.config" />
83+
</ItemGroup>
5884
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5985
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
6086
Other similar extension points exist, see Microsoft.Common.targets.

TestAssembly/packages.config

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Microsoft.AspNet.WebApi" version="4.0.30506.0" targetFramework="net40" />
4+
<package id="Microsoft.AspNet.WebApi.Client" version="4.0.30506.0" targetFramework="net40" />
5+
<package id="Microsoft.AspNet.WebApi.Core" version="4.0.30506.0" targetFramework="net40" />
6+
<package id="Microsoft.AspNet.WebApi.WebHost" version="4.0.30506.0" targetFramework="net40" />
7+
<package id="Microsoft.Net.Http" version="2.0.20710.0" targetFramework="net40" />
8+
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
9+
<package id="Newtonsoft.Json" version="4.5.11" targetFramework="net40" />
10+
</packages>
2.94 KB
Binary file not shown.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>Microsoft.AspNet.WebApi</id>
5+
<version>4.0.30506.0</version>
6+
<title>Microsoft ASP.NET Web API</title>
7+
<authors>Microsoft</authors>
8+
<owners>Microsoft</owners>
9+
<licenseUrl>http://www.microsoft.com/web/webpi/eula/mvc_4_eula_enu.htm</licenseUrl>
10+
<projectUrl>http://www.asp.net/web-api</projectUrl>
11+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12+
<description>This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework.</description>
13+
<releaseNotes />
14+
<copyright />
15+
<language>en-US</language>
16+
<tags>Microsoft AspNet WebApi AspNetWebApi</tags>
17+
<dependencies>
18+
<dependency id="Microsoft.AspNet.WebApi.WebHost" version="4.0.20710.0" />
19+
</dependencies>
20+
</metadata>
21+
</package>
87.4 KB
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>Microsoft.AspNet.WebApi.Client</id>
5+
<version>4.0.30506.0</version>
6+
<title>Microsoft ASP.NET Web API Client Libraries</title>
7+
<authors>Microsoft</authors>
8+
<owners>Microsoft</owners>
9+
<licenseUrl>http://www.microsoft.com/web/webpi/eula/mvc_4_eula_enu.htm</licenseUrl>
10+
<projectUrl>http://www.asp.net/web-api</projectUrl>
11+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12+
<description>This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data.</description>
13+
<language>en-US</language>
14+
<tags>Microsoft AspNet WebApi AspNetWebApi HttpClient</tags>
15+
<dependencies>
16+
<dependency id="Microsoft.Net.Http" version="2.0.20710.0" />
17+
<dependency id="Newtonsoft.Json" version="4.5.6" />
18+
</dependencies>
19+
</metadata>
20+
</package>
165 KB
Binary file not shown.

0 commit comments

Comments
 (0)