-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAspNetSelfhostServer.csproj
More file actions
22 lines (20 loc) · 982 Bytes
/
AspNetSelfhostServer.csproj
File metadata and controls
22 lines (20 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net461</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Owin" Version="2.1.0" />
<PackageReference Include="Microsoft.Owin.Cors" Version="2.1.0" />
<PackageReference Include="Microsoft.Owin.Diagnostics" Version="2.1.0" />
<PackageReference Include="Microsoft.Owin.Host.HttpListener" Version="2.1.0" />
<PackageReference Include="Microsoft.Owin.Hosting" Version="2.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Owin" Version="1.0.0" />
<PackageReference Include="Microsoft.AspNet.SignalR" Version="2.4.0" />
<PackageReference Include="Microsoft.Azure.SignalR.AspNet" Version="1.0.0-preview1-10259" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
</Project>