Skip to content

Commit

Permalink
Update for 2.0 goodness
Browse files Browse the repository at this point in the history
  • Loading branch information
pburkholder committed Dec 2, 2017
1 parent b4f85d7 commit f19838f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions dotnet-core-hello-world.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp1.0</TargetFramework>
<TargetFramework>netcoreapp2.0</TargetFramework>
<DebugType>portable</DebugType>
<AssemblyName>dotnet-core-hello-world</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>dotnet-core-hello-world</PackageId>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.0.*" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="1.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="2.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.*" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="2.0.*" />
</ItemGroup>
</Project>
3 changes: 2 additions & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
buildpack: dotnet_core_buildpack
applications:
- name: dotnet_core_hello_world
disk_quota: 1536M
# disk_quota: 1536M
random-route: true
env:
CACHE_NUGET_PACKAGES: false

0 comments on commit f19838f

Please sign in to comment.