Skip to content

Commit

Permalink
Update EchoApp to .NET Core 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarino-preemptive committed Apr 3, 2019
1 parent 5d1e893 commit e07af22
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions asp.netcore/EchoApp.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
<Project>
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk.Web" />

<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<TargetFramework>netcoreapp2.0</TargetFramework>
<StartupObject>EchoApp.Program</StartupObject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.WebSockets" Version="1.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.WebSockets" Version="2.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="2.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="2.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.4" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.2" />
</ItemGroup>

<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk.Web" />
Expand Down

0 comments on commit e07af22

Please sign in to comment.