diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-04-13 10:03:41 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2008-04-15 22:23:45 -0700 |
commit | a4f0104f97f7845739c5ddadd81e22e1e16bc4b0 (patch) | |
tree | e289693c05379ed26006a9a79b593072d0163de0 | |
parent | 89640bcfedca8e4052f13b41607f96098241488a (diff) | |
download | DotNetOpenAuth-a4f0104f97f7845739c5ddadd81e22e1e16bc4b0.zip DotNetOpenAuth-a4f0104f97f7845739c5ddadd81e22e1e16bc4b0.tar.gz DotNetOpenAuth-a4f0104f97f7845739c5ddadd81e22e1e16bc4b0.tar.bz2 |
Added ASP.NET MVC Preview 2 assemblies.
A new lib directory hosts assemblies that may not exist on all development computers so that builds may succeed anywhere .NET 3.5 is installed.
-rw-r--r-- | lib/System.Web.Abstractions.dll | bin | 0 -> 78840 bytes | |||
-rw-r--r-- | lib/System.Web.Mvc.dll | bin | 0 -> 92152 bytes | |||
-rw-r--r-- | lib/System.Web.Routing.dll | bin | 0 -> 62456 bytes | |||
-rw-r--r-- | samples/RelyingPartyMvc/RelyingPartyMvc.csproj | 8 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/System.Web.Abstractions.dll b/lib/System.Web.Abstractions.dll Binary files differnew file mode 100644 index 0000000..496443f --- /dev/null +++ b/lib/System.Web.Abstractions.dll diff --git a/lib/System.Web.Mvc.dll b/lib/System.Web.Mvc.dll Binary files differnew file mode 100644 index 0000000..f8dee14 --- /dev/null +++ b/lib/System.Web.Mvc.dll diff --git a/lib/System.Web.Routing.dll b/lib/System.Web.Routing.dll Binary files differnew file mode 100644 index 0000000..d93f863 --- /dev/null +++ b/lib/System.Web.Routing.dll diff --git a/samples/RelyingPartyMvc/RelyingPartyMvc.csproj b/samples/RelyingPartyMvc/RelyingPartyMvc.csproj index 882d7b3..df0182f 100644 --- a/samples/RelyingPartyMvc/RelyingPartyMvc.csproj +++ b/samples/RelyingPartyMvc/RelyingPartyMvc.csproj @@ -40,15 +40,15 @@ </Reference>
<Reference Include="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\..\Program Files\Microsoft ASP.NET MVC Preview 2\Assemblies\System.Web.Abstractions.dll</HintPath>
+ <HintPath>..\..\lib\System.Web.Abstractions.dll</HintPath>
</Reference>
<Reference Include="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\..\Program Files\Microsoft ASP.NET MVC Preview 2\Assemblies\System.Web.Mvc.dll</HintPath>
+ <HintPath>..\..\lib\System.Web.Mvc.dll</HintPath>
</Reference>
<Reference Include="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
- <HintPath>..\..\..\..\Program Files\Microsoft ASP.NET MVC Preview 2\Assemblies\System.Web.Routing.dll</HintPath>
+ <HintPath>..\..\lib\System.Web.Routing.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
@@ -124,4 +124,4 @@ </FlavorProperties>
</VisualStudio>
</ProjectExtensions>
-</Project>
\ No newline at end of file +</Project>
|