diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-02 08:12:10 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-02 08:12:10 -0700 |
commit | 7493689e61ff83bc4652e74429b9d7dfdf99daa9 (patch) | |
tree | af3182dfbbe55a1478bda626738c243ee593a963 /samples/OAuthResourceServer/OAuthResourceServer.csproj | |
parent | 0c8a4a3a33e840e7c449388f078155efaf1854c7 (diff) | |
download | DotNetOpenAuth-7493689e61ff83bc4652e74429b9d7dfdf99daa9.zip DotNetOpenAuth-7493689e61ff83bc4652e74429b9d7dfdf99daa9.tar.gz DotNetOpenAuth-7493689e61ff83bc4652e74429b9d7dfdf99daa9.tar.bz2 |
Migrate all samples to target .NET 4.0 and use IIS Express (where available).
InfoCardRelyingParty sample left out because it seems to cause input validation trouble.
Fixes #108
Diffstat (limited to 'samples/OAuthResourceServer/OAuthResourceServer.csproj')
-rw-r--r-- | samples/OAuthResourceServer/OAuthResourceServer.csproj | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/samples/OAuthResourceServer/OAuthResourceServer.csproj b/samples/OAuthResourceServer/OAuthResourceServer.csproj index f472340..f0fb075 100644 --- a/samples/OAuthResourceServer/OAuthResourceServer.csproj +++ b/samples/OAuthResourceServer/OAuthResourceServer.csproj @@ -10,6 +10,7 @@ <IISExpressAnonymousAuthentication /> <IISExpressWindowsAuthentication /> <IISExpressUseClassicPipelineMode /> + <TargetFrameworkProfile /> </PropertyGroup> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> @@ -23,8 +24,8 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>OAuthResourceServer</RootNamespace> <AssemblyName>OAuthResourceServer</AssemblyName> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - <UseIISExpress>false</UseIISExpress> + <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> + <UseIISExpress>true</UseIISExpress> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -49,15 +50,16 @@ </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> - <Reference Include="System.Core" /> <Reference Include="System.Data.DataSetExtensions" /> <Reference Include="System.Data.Linq" /> <Reference Include="System.IdentityModel" /> <Reference Include="System.ServiceModel" /> <Reference Include="System.ServiceModel.Web" /> <Reference Include="System.Web.Abstractions" /> + <Reference Include="System.Web.ApplicationServices" /> + <Reference Include="System.Web.DynamicData" /> + <Reference Include="System.Web.Entity" /> <Reference Include="System.Web.Extensions" /> - <Reference Include="System.Xml.Linq" /> <Reference Include="System.Drawing" /> <Reference Include="System.Web" /> <Reference Include="System.Xml" /> @@ -65,6 +67,7 @@ <Reference Include="System.Web.Services" /> <Reference Include="System.EnterpriseServices" /> <Reference Include="System.Web.Mobile" /> + <Reference Include="System.Xml.Linq" /> </ItemGroup> <ItemGroup> <Content Include="DataApi.svc" /> @@ -132,12 +135,11 @@ <VisualStudio> <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> <WebProjectProperties> - <UseIIS>False</UseIIS> + <UseIIS>True</UseIIS> <AutoAssignPort>False</AutoAssignPort> <DevelopmentServerPort>65170</DevelopmentServerPort> <DevelopmentServerVPath>/</DevelopmentServerVPath> - <IISUrl> - </IISUrl> + <IISUrl>http://localhost:65170/</IISUrl> <NTLMAuthentication>False</NTLMAuthentication> <UseCustomServer>False</UseCustomServer> <CustomServerUrl> |