-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy pathMicrosoft.Web.WebPages.OAuth.csproj
More file actions
105 lines (104 loc) · 4.78 KB
/
Microsoft.Web.WebPages.OAuth.csproj
File metadata and controls
105 lines (104 loc) · 4.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),Runtime.sln))\tools\WebStack.settings.targets" />
<PropertyGroup>
<ProjectGuid>{4CBFC7D3-1600-4CE5-BC6B-AC7BC2D6F853}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Microsoft.Web.WebPages.OAuth</RootNamespace>
<AssemblyName>Microsoft.Web.WebPages.OAuth</AssemblyName>
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
<RunCodeAnalysis>$(CodeAnalysis)</RunCodeAnalysis>
<CodeAnalysisRuleSet>..\Strict.ruleset</CodeAnalysisRuleSet>
<DefineConstants>$(DefineConstants);ASPNETWEBPAGES</DefineConstants>
</PropertyGroup>
<ItemGroup>
<CodeAnalysisDictionary Include="..\CodeAnalysisDictionary.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CodeContracts.Unofficial" Version="1.0.0.0" />
<PackageReference Include="DotNetOpenAuth.AspNet" Version="4.0.3.12153" />
<PackageReference Include="DotNetOpenAuth.Core" Version="4.0.3.12153" />
<PackageReference Include="DotNetOpenAuth.OAuth.Consumer" Version="4.0.3.12153" />
<PackageReference Include="DotNetOpenAuth.OAuth.Core" Version="4.0.3.12153" />
<PackageReference Include="DotNetOpenAuth.OpenId.Core" Version="4.0.3.12153" />
<PackageReference Include="DotNetOpenAuth.OpenId.RelyingParty" Version="4.0.3.12153" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Web" />
<Reference Include="System.Web.ApplicationServices" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\CommonResources.Designer.cs">
<Link>Common\CommonResources.Designer.cs</Link>
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>CommonResources.resx</DependentUpon>
</Compile>
<Compile Include="..\GlobalSuppressions.cs">
<Link>Common\GlobalSuppressions.cs</Link>
</Compile>
<Compile Include="AuthenticationClientData.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="OAuthAccount.cs" />
<Compile Include="OAuthWebSecurity.cs" />
<Compile Include="PreApplicationStartCode.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\WebResources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>WebResources.resx</DependentUpon>
</Compile>
<Compile Include="ProviderUserIdSerializationHelper.cs" />
<Compile Include="Resources\OAuthResources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>OAuthResources.resx</DependentUpon>
</Compile>
<Compile Include="WebPagesOAuthDataProvider.cs" />
<Compile Include="WebPagesOAuthTokenManager.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\System.Web.Razor\System.Web.Razor.csproj">
<Project>{8F18041B-9410-4C36-A9C5-067813DF5F31}</Project>
<Name>System.Web.Razor</Name>
</ProjectReference>
<ProjectReference Include="..\System.Web.WebPages.Razor\System.Web.WebPages.Razor.csproj">
<Project>{0939B11A-FE4E-4BA1-8AD6-D97741EE314F}</Project>
<Name>System.Web.WebPages.Razor</Name>
</ProjectReference>
<ProjectReference Include="..\WebMatrix.WebData\WebMatrix.WebData.csproj">
<Project>{55A15F40-1435-4248-A7F2-2A146BB83586}</Project>
<Name>WebMatrix.WebData</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\CommonResources.resx">
<Link>Common\CommonResources.resx</Link>
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>CommonResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="Properties\WebResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>WebResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="Resources\OAuthResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>OAuthResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>