5b5d69c95d
This change is to add Sdk.props and Sdk.targets of Microsoft.Docker.Sdk into CLI. This unblocks the scenario where a VS solution contains a few .NET Core projects as well as a docker-compose.dcproj project and people want to build the solution from command line with .NET Core CLI. With the Sdk.props and Sdk.targets being present in CLI, building docker-compose.dcproj becomes no-op so it won't block building the other .NET Core projects.
13 lines
No EOL
490 B
XML
13 lines
No EOL
490 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.Docker.Sdk">
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectVersion>2.0</ProjectVersion>
|
|
<DockerTargetOS>Linux</DockerTargetOS>
|
|
<DockerLaunchAction>LaunchBrowser</DockerLaunchAction>
|
|
<DockerServiceUrl>http://localhost:{ServicePort}</DockerServiceUrl>
|
|
<DockerServiceName>testwebapplication</DockerServiceName>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="docker-compose.yml" />
|
|
</ItemGroup>
|
|
</Project> |