Skip to content

Commit 6eb6477

Browse files
committedNov 6, 2018
module 13
1 parent e08da78 commit 6eb6477

File tree

150 files changed

+38885
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+38885
-0
lines changed
 

‎aspnetcore/labs/14-deployment.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Deployment
2+
3+
Publish your application to another local directory and see if you can run the application from that directory.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.4" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.1.4" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.1.4" />
11+
</ItemGroup>
12+
13+
<ItemGroup>
14+
<ProjectReference Include="..\CoreMovies.Entities\CoreMovies.Entities.csproj" />
15+
</ItemGroup>
16+
17+
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.