forked from openiddict/openiddict-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenIddict.Sandbox.AspNet.Server.csproj
More file actions
41 lines (36 loc) · 1.71 KB
/
OpenIddict.Sandbox.AspNet.Server.csproj
File metadata and controls
41 lines (36 loc) · 1.71 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
<Project Sdk="MSBuild.SDK.SystemWeb">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<AppConfig>Web.config</AppConfig>
<GeneratedBindingRedirectsAction>Overwrite</GeneratedBindingRedirectsAction>
<MvcBuildViews>false</MvcBuildViews>
<ImplicitUsings>disable</ImplicitUsings>
<NoWarn>CA3147</NoWarn>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Web.Extensions" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\OpenIddict.Owin\OpenIddict.Owin.csproj" />
<ProjectReference Include="..\..\src\OpenIddict.EntityFramework\OpenIddict.EntityFramework.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Antlr" />
<PackageReference Include="Autofac.Extensions.DependencyInjection" />
<PackageReference Include="Autofac.Mvc5" />
<PackageReference Include="Autofac.Owin" />
<PackageReference Include="Autofac.WebApi2.Owin" />
<PackageReference Include="Microsoft.AspNet.Identity.EntityFramework" />
<PackageReference Include="Microsoft.AspNet.Identity.Owin" />
<PackageReference Include="Microsoft.AspNet.Mvc" />
<PackageReference Include="Microsoft.AspNet.Web.Optimization" />
<PackageReference Include="Microsoft.AspNet.WebApi.Owin" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Microsoft.Owin.Host.SystemWeb" />
<PackageReference Include="Microsoft.Owin.Security.Cookies" />
<PackageReference Include="Microsoft.Owin.Security.OAuth" />
<PackageReference Include="Microsoft.Web.Infrastructure" PrivateAssets="all" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="WebGrease" />
</ItemGroup>
</Project>